Tag: Tech
Worlds smallest weather station fits on your keychain
Company MindLab Solution is a relatively new start-up and the company is creating the worlds smallest weather station. This device can attach to a keychain and plugs into a smartphones […]
Configuring Android Studio for Native (C/C++) Development with Java Support
After setting up the Android development environment then it is time to start development of your game, UFO Tap Attack. Within a few minutes working with this tutorial you will […]
Configuring the Game Development Environment for UFO Tap Attack
The first steps to becoming an Android game programmer is configuring your development environment on your PC. There are more steps than visiting the Android website and downloading an installation […]
How to create an Android signed APK in Eclipse
So, you are ready to share your Android application or game to the world. Congratulations! However, before you are able to you must sign your Android application package (APK), in order to upload your […]
‘Running Android Lint’ has encountered a problem. – java.lang.NullPointerException
Do you know how to get Lint to run, in Eclipse, for a Native project? Currently, as a work around, I am turning off the lint checks through Window-Preferences-Android-Lint Error […]
Optimize by Variable Organization (Packing Data)
Most of us when we are writing code either do not think of how we organize our variable declarations or will organize the variable declarations into readable and logical groups. […]
Parsing Blender 3D Files *.blend – (1 of 3)
Blender 3D is a modeling software used to develop animated films, video games, etc. The software application is open source and free to download and to use. This makes the […]
Parsing Blender 3D Files *.blend – (2 of 3) Blender Objects
This article is the second part of Parsing Blender 3D Files. If you have not read the first article of this series please do so to get a full understanding […]
Parsing Blender 3D Files *.blend – (3 of 3) Linking Blender Objects and Components
This article is the third part of Parsing Blender 3D Files. If you have not read the first and second articles of this series, please do so to get a […]
C++ Enumerations
An enumeration is a data type with a set of named variable values that is defined by the programmer. The strength behind enumerations is the ability to name a set […]