Control Ball is a simple game with a ball and taping to keep in in the air. You can access source code as a unity tutorial material at my Github account:
github
Make Them Fall, Unity3D Sample Game
StandardMake Them Fall is a challenging game that requires multitasking capability. Control 2 falling players and let them fall as far as possible without touching any obstacle.
I redesigned Make Them Fall Game using Unity3D and you can access source code as a unity tutorial material at my Github account:
Brain Rush, Unity3D Sample Game
StandardBrain Rush is a super simple to play and gets very addictive. Just hold or release the screen to shift to either a square or circle and match the incoming shapes. The higher your score, the faster they come!
I redesigned Brain Rush Game using Unity3D and you can access source code as a unity tutorial material at my Github account:
Flappy Bird, Unity3D Sample Game
StandardFlappy Bird is one of the most popular game on the Internet. It is a simple one-button game in which you have to navigate our a bird past the obstacles.
I redesigned Flappy Bird Game using Unity3D and you can access source code as a unity tutorial material at my Github account:
HackerRank Challenges solved using Java on GitHub
StandardThe true test of problem solving: when one realizes that time and memory aren’t infinite.
My answers available using Java on GitHub:
https://github.com/mirhoseini/hacker_rank
Spoil Danger!!!
How to manage your Android Application Settings
StandardHere is my best practice for managing your Android application settings using AppSettings class. by using this class you can save your different variables in shared preferences and also load them to ram when ever needed and use them in memory.
String methods sample:
AppSettings.setValue(this, KEY_NAME, name); AppSettings.getString(this, KEY_NAME, ""); AppSettings.clearValue(this, KEY_NAME);