Home » Archive

Articles in the Open Source Category

C++, Open Source, Programming, Stuff »

[3 Feb 2010 | Author: 0xC0FF33 | No Comment | ]
3T Update: Version 1.0

Yay! Now, the the first step is done and a computer opponent is added to the game. Next and last step will be the network code.
Stay tuned…
Download & Project page
Windows package: http://threet.googlecode.com/files/3t_winXP_1.0.zip
Source package: http://threet.googlecode.com/files/3t_sources_1.0.zip
Project page: http://code.google.com/p/threet/
Have fun with the game…

C++, Open Source, Programming, Stuff »

[29 Jan 2010 | Author: 0xC0FF33 | No Comment | ]
3T: Text based Tic Tac Toe

I don’t know why, but the idea of programming a text based version of Tic Tac Toe was bothering me for days and after coding hours in PHP for another project, I needed some “refreshment” and started to code this game.
Because it’s a game with a simple structure, the first implementation was not so much work to do, but lacks of a computer opponent, so you only can play it on one PC with two human players, but implementing an “AI” will be the next step for me.

Screenshot
[ad#Image Header Top]
Why text …

C Programming, Open Source, Windows »

[3 Jan 2009 | Author: 0xC0FF33 | No Comment | ]

As long as there is no device like the /dev/zero from unix on windows and no other alternative build in (or at least I don’t any), I decided (also out of some boredom) to write a tiny C program providing such functionality.
With the DevZero program you can create files of a given size of bytes, filled with null characters (0×00).

It is not really a device like a /dev/zero in unix and has a quite limited functionality, but feel free to expand or modify it, if you have some great ideas.
For …