Snailinaturtleneck - snailinaturtleneck.com - カードローン審査が甘い会社をお探しならココ【借りやすい会社ナビ】
General Information:
Latest News:
Ludum Dare 26 Aug 2013 | 06:21 pm
This weekend, I participated in Ludum Dare, a game programming competition where you make a game in 48 hours. Here’s the final result: And the source, including all images and music: https://github.c...
Hello, Lumpy World! 28 Jul 2013 | 06:33 am
Overview: how to generate 3D terrain for iOS. This assumes basic knowledge of iOS programming (how to create a project and add files to it.) I’ve been working on an iOS app that uses cocos3d and Robe...
The Basics of Signal Handling 28 Jun 2013 | 09:17 pm
Signals are one of the most basic ways programs can receive messages from the outside world. I’ve found limited tutorial-type documentation on them, so this post covers how to set them up and some deb...
Labeling Git Branches 22 Jun 2013 | 12:20 am
I came across git branch descriptions today and it is so freakin useful that I wanted to share. My branches usually look like this: $ git branch add-feature feature-add * implement-foo implement-foo2 ...
Music Gremlins is Approved! 18 Jun 2013 | 09:00 am
My iPad app is approved and going live on July 1st! Music Gremlins is an ear-training game where you beat gremlins by matching the notes that they play. Different types of gremlins demand different st...
It’s turtles all the way down 16 Jun 2013 | 01:14 am
“Turtles all the way down” is a concept that Java handles very nicely: public class Turtle { Turtle prevTurtle; public Turtle(Turtle prevTurtle) { if (prevTurtle == null) { throw new RuntimeExceptio...
Adding an Assertion Macro in Objective-C 23 May 2013 | 06:21 pm
TL;DR: #define CHECK(val) NSAssert((val), @#val) // Then use: CHECK(/* something (hopefully) true */); Long version: iOS made the the somewhat bizarre choice that dereferencing a null pointer is not...
Adding an Assertion Macro in Objective-C 23 May 2013 | 06:21 pm
TL;DR: #define CHECK(val) NSAssert((val), @#val) // Then use: CHECK(/* something (hopefully) true */); Long version: iOS made the the somewhat bizarre choice that dereferencing a null pointer is not...
MongoDB: The Definitive Guide 2nd Edition is Out! 20 May 2013 | 08:39 pm
The second edition of MongoDB: The Definitive Guide is now available from O’Reilly! It covers both developing with and administering MongoDB. The book is language-agnostic: almost all of the examples ...
MongoDB: The Definitive Guide 2nd Edition is Out! 20 May 2013 | 08:39 pm
The second edition of MongoDB: The Definitive Guide is now available from O’Reilly! It covers both developing with and administering MongoDB. The book is language-agnostic: almost all of the examples ...