Monthly Archives: May 2017

Need a skin for the Galaxy S range?

By | May 30, 2017

If you are using Android Studio and want to emulate on a Galaxy S6 or any other phone in the S range, you can download the skin from http://developer.samsung.com/galaxy/emulator-skin/s To install it, check out this video here: https://www.youtube.com/watch?v=sSc9D4rrOxw Go to 3:24 of the video to see how to install it in Android Studio.  

Removing Github Commits

By | May 3, 2017

To rewrite history (not usually a good thing to do) you can do the following: git reset –hard <commit hash> git rebase -i HEAD~2 (the 2 goes back 2 commits) git push origin +master refresh github and you should see your commits disappear.

Hello World HTML

By | May 3, 2017

In case you forget how to create the most basic html page ever, here is a reminder:   <html> <header> <title>This is title</title> </header> <body> Hello world </body> </html>