I started developing plane for iOS recently. It's a hacked up port of the original game I made when I was young. It was an excellent way to learn the iOS SDK and Objective-C. Anyway, down to business... The initial collision detection I implemented was a very crude one that simply checks if the bounding … Continue reading Collision detection on iOS
Tag: Write Ups
Making a small, quiet print server
I had a spare laptop laying around gathering dust since the hard drive died. I did reuse it at one point for a media center and server but it was too high maintenance and I already had a PS3 to stream media. So, I decided it was going to be a print server now. Unfortunately, … Continue reading Making a small, quiet print server
Sorting out CSS float collapses
As an amateur web developer, one of the first problems I encountered was that floated elements with non-floated parent elements will cause the parent to collapse. This can cause headaches later on. There are many solutions to this problem - a small list can be found in this thread on StackOverflow. The solution I used … Continue reading Sorting out CSS float collapses