I know of no other sprite editor that allows for such simple and easy manipulation of bitmaps and drawing order. Very simple and intuitive once you get the hang of it. Also some chill tunes.
Tag Archives: Terry Davis
TempleOS – Code Introduction
TEMPLE OS INTRO: TempleOS is a x86_64, multi-cored, non-preemptive multi-tasking, ring-0-only, single-address_mapped (identity-mapped), operating system for recreational programming. It contains a treasure chest full of ‘spells of truth’. Imo a 12 year old child could become a better programmer than 20 year professional C programmers by simply tinkering and around in TempleOS for 6 months […]
Terry Davis – There Was A Bike Thief
Terry Davis demonstrates why the C++ syntax for writing to stdout is retarded. Here is how some of the most popular programming languages print to screen: C++: cout << “message” << endl; or printf(“message”);Java: System.out.println(“message”);Python: print(“message”)C#: Console.WriteLine(“message”);Go: fmt.println(“message”);Bash: echo “message”HolyC: “message”; Notice how HolyC cuts out all the bloated nonsense. Why isn’t all of programming […]