Category: implementation
The Iterator is an interface for external iterators or objects that can be iterated themselves internally. In PHP, it is defined as follows. Iterator extends Traversable { /* Methods …
Index Sort is not a general sorting algorithm because it has a limitation that is the ranges of the element have to be determined beforehand. The idea is simple. …
Caching the pages will improve the overall site speed. For example, if you have lots of pages that do not update frequently, you can cache these pages into static …
August 8, 2012
beginner, emulator, images drawing, implementation, interpreter / compiler, non-technical, programming languages, tools / utilities, tricks, turtle logo
The Hello World! Programs are considered the easiest for most programming languages. The program will output string “Hello, World!” to the display device and return. On programming books, these …
August 7, 2012
algorithms, beginner, brainfuck, brute force, c #, github, I/O File, implementation, interpreter / compiler, programming languages, python, technical, tools / utilities
Brainfuck is a minimized programming language. It has only 8 keywords. It was designed first in 1993 by Urban Muller. gives more details on wiki. Brainfuck is often referred …