Android Development 101 – Part 1:Hello World

This article will focus on developing a simple hello world program for android using Java. Google has recently released a “cute and fuzzy” programming environment for beginners to get into but I haven’t had the chance to try it, so we will be focusing on the Eclipse IDE here, which you should have set up in the last post.  When creating a text based project there are two very important items.  It will involve creating an android project, going through the necessary steps to complete both the (1) XML files and the (2) Java file and get this project ready for production and eventually deployment.  The requirements of this project are simple, know the basis of XML (for new comers if you don’t that’s OK too, you will learn) and know Java (very basic knowledge but you will learn as we go and we will modify a few parts of the java file today).

Continue reading “Android Development 101 – Part 1:Hello World”

Android Development 101 – A Tutorial Series

Android is the prime OS for developing applications in today for many reasons. The main reasons being that it is Open Source and Intuitive. In addition it uses Java for development, which is quite an easy language to get used to and develop in. This being said, a lot of you have great ideas for Android applications or applications in general but don’t know where to start. This series will take you behind the scenes and introduce you to the software that will be your best friend while developing for android. On this journey we will start with a “Hello World” and move on from there to create a database driven application with a touch and scroll interface. The final result will look something like this:

Continue reading “Android Development 101 – A Tutorial Series”

Make Your Own Nes Game

SMB Cart

i’m really liking this one. A game modder who’s not even very good at programming (he keeps mentioning this) decided to make his own game out of the Super Mario Brothers (SMB) NES cartridge. He wrote the assembly (god help us all) to basically make clouds scroll across the screen and just clouds. The process shows how the graphics are contained on one chip and the code is on another. Also shown, is how to rip the chip out, re-program it with your code, and then how to shove it back in and make it work. You can see the final result by clicking here. We’d also love to see someone take a shot at this and to see what they could come up with.

Continue reading “Make Your Own Nes Game”