Skip to content

Instantly share code, notes, and snippets.

@Davidzn2
Davidzn2 / git-commit-emojis.md
Created August 19, 2019 19:53 — forked from jhermann/git-commit-emojis.md
Useful emoji for git commit messages

Useful emoji for git commit messages

If you add emoji to your commit messages for a GitHub repo, they become less boring, and you can convey the kind of change you're adding. See the full set of GitHub supported emoji here (also useful for easy copy&paste via a simple click).

Example commit message

The following is a possible scheme to use:

@Davidzn2
Davidzn2 / web-servers.md
Created July 5, 2016 01:13 — forked from jerolan/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000