Site Search
Homepage of Otaku No Zoku
Complete Archives of Otaku No Zoku
About Otaku No Zoku
Subscribe to Otaku No Zoku
Bookmark Otaku No Zoku

Creating Coloured Borders With CSS3 :

How do you create coloured borders with CSS3? With the new border-color tags of course! The border-color tag permits a web designer to be very specific about the colours used in the border of an HTML element. As the W3C inches their way towards delivering on the promise of CSS3, many more browsers are beginning… Click to read the rest of the article

: Game Programming and Game Development :

Objective-C Access To Instance Variables :

Instance variables belonging to an Objective-C 2.0 class are declared protected by default, unlike regular C++ or even C# whereby all declared member variables are private by default. This always confuses C++/C# programmers who are new to Objective-C so if you are familiar with either of those two languages, be aware of this point. Protection… Continue reading the rest of “Objective-C Access To Instance Variables.”

How To Find And Replace Text In SQL :

Replacing text in a mySQL database table is trivial thanks to the built-in SQL command REPLACE() that lets you manipulate text data within a table that matches a particular string, and replace it with another string. I have been playing extensively with the theme on this website recently and one of the cute little hacks… Yearning to read the remainder of “How To Find And Replace Text In SQL?” Click here!

PHP array_shift() With Non-Numeric Keys :

The built-in array() data type has many ways that it can be manipulated. One of those ways is through the array_shift() function that treats an array as a queue, taking array elements from the front of the queue and moving up all of the other items in the array. When you define an array that… Click here to read the remainder of “PHP array_shift() With Non-Numeric Keys.”

Ultrasound iPhone Device :

A little over a month ago I interviewed with a small start-up company in Los Angeles doing some very cool work on a serious game for military and medical usage. Essentially it is an ultrasound simulation game that teaches medical personnel how to read an ultrasound image. This particular company had a unique twist on… Click this link to read the rest of the post

PHP array_shift() Function Definition :

PHP has a built-in array() data type which can be easily treated as though it were a list or a queue data type. The way to do this is through the use of the array_shift() function which takes the element at the beginning of the array and returns it, and in the process, shortens the… Thirsting to get the remainder of “PHP array_shift() Function Definition?” Click this!

Two Things That Irk Me! :

I check my website logs frequently, I also have a script that shows me all of the search terms people use to find my website, and a list of reverse DNS lookup for each of the queries so I can see which companies are making use of my resources. Very useful data mining which can… Need to get the rest of “Two Things That Irk Me!?” Click here!

PHP array_push() Function :

Even though PHP has an intrinsic array data type you as the programmer have the ability to manipulate arrays in several different ways. PHP can manipulate the array() data type as though it were a stack data structure through two simple functions, array_push() and array_pop() which just reinforces how versatile PHP can be. This article… Click to continue reading the remainder of “PHP array_push() Function.”

Objective-C Property Accessors :

This short article covers Objective-C 2.0 property accessors that do not have an associated instance variable. Objective-C 2.0 offers the ability to automatically declare and implement class properties via the @property and @synthesize compiler directives. For the most part, these two compiler directives, part of the Declared Properties feature, go hand in hand with each… Click here to read the rest of this article

Objective-C Class Properties :

Objective-C 2.0 offers some neat new features that make life easier for programmers. If you’re familiar with Java programming you are used to declaring getter and setter functions to access the instance variables of a class, and similarly in C#, you have the ability to declare property functions, get and set, which do the same… Looking to read the remainder of “Objective-C Class Properties?” Click the link!