Skip to content

Instantly share code, notes, and snippets.

@echus
echus / keep_to_simplenote.py
Created June 6, 2024 00:54
Google Keep to Simplenote import script
#!/usr/bin/env python
"""Google Keep export to Simplenote import script.
Converts Google Keep Takeout archive into a Simplenote-compatible .json file
for direct import into Simplenote.
"""
import json
import os
import glob
@bradtraversy
bradtraversy / terminal-commands.md
Last active December 10, 2025 15:29
Common Terminal Commands

Common Terminal Commands

Key Commands & Navigation

Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:

  • Up Arrow: Will show your last command
  • Down Arrow: Will show your next command
  • Tab: Will auto-complete your command
  • Ctrl + L: Will clear the screen
@bradtraversy
bradtraversy / tailwind-webpack-setup.md
Last active November 29, 2025 08:24
Setup Webpack with Tailwind CSS

Webpack & Tailwind CSS Setup

Create your package.json

npm init -y

Create your src folder

Create a folder called src and add an empty index.js file. The code that webpack compiles goes in here including any Javascript modules and the main Tailwind file.

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active December 11, 2025 22:20
Conventional Commits Cheatsheet