Emoji Guide for Commit Messages
💡 Ever wondered what an emoji stands for in a commit message?
👉🏼 Gitmoji is an initiative by @crloscuesta to standardize emojis across commits. An awesome guide to using emojis in git commits. ✨
A collection of 123 tips that come in real handy when you need them. Originally posted as tweets on my Twitter account, and now gathered here so you can browse them easily.
💡 Ever wondered what an emoji stands for in a commit message?
👉🏼 Gitmoji is an initiative by @crloscuesta to standardize emojis across commits. An awesome guide to using emojis in git commits. ✨
💡 Waiting for DNS to propagate? Unsure whether your users will see the same website you do?
👉🏼 DNS Checker looks up your DNS records from servers in different corners of the world. As seen by your users.
💡 Are you fiddling with Nginx server blocks and location rules?
👉🏼 Use this tool to quickly debug which blocks Nginx will match to a certain request.
💡 Want to make sure your Apache rewrite & redirect rules will work correctly?
👉🏼 Htaccess Tester lets you debug your .htaccess file. You can see how each rule is applied (or not) to the request URL.
https://htaccess.madewithlove.com/
Read tip
💡 Node.js 14.8 was released last week! 🚀
It brings top-level await to the masses. You can now use this feature without a feature flag.
❗️ You do need to use ES Modules. Add "type": "module" in package.json or rename .js -> .mjs.
💡 Need to quickly share a project hosted on your machine?
👉🏼 I love using Ngrok for that. With just one command, you get a publicly accessible link you can share with others and get feedback on your project.
💡 Link to permalinks not URLs:
<a href="/slug-goes-here"> ✅
<a href="https://your-domain/slug-goes-here"> 🚫
If you don't do this and put the site on a new domain, all of your sources will link to pages and files that no longer exist.
💡 IaaS vs PaaS, what's the difference? An analogy using clothes:
👉🏼 You can rent an empty space and buy decoration, install security, etc. (=IaaS). Or you can rent shelves in an existing store (=PaaS), so you can focus on designing clothes.
💡 Want to host multiple apps on a single #VPS?
👉🏼 You can configure #Nginx as a reverse proxy to route traffic to different apps on your server. Create a `server` block for each app and add a `proxy_pass` directive.
Gist: https://gist.github.com/Maximization/44d8de53e582a4bdd093d51ad9d21eaf
💡 Want to find out how to use a CLI tool but scrolling through `man` doesn't get make you any wiser?
👉🏼 TLDR Pages by @leostera is a user-friendly version of the `man pages` and includes practical examples.