Git Cheatsheet
Some Git commands
How to host Project Website on GitHub Pages
You can host static websites freely on GitHub Pages. They are awesome!
How to add Google Map Embed API for websites
Embed and set up a Google maps window into your website or blog post which comes with unlimited free usage
How to fix JavaScript 'e.pageX' returning 'nan' on Android
If your JavaScript touch code works perfectly on ios but does nothing on Android, "e.pageX" might be the problem. "e.pageX" simple does not work on Android and returns "not a number", though it works fine both on desktop browsers and ios Safari. Use "e.targetTouches[0].pageX" for Android to fix this problem.