Category Archives: C# .NET

HaloHBF v0.1

I get so many hits to my site every day from people looking for it, so here it is. Download HaloHBF v0.1

SHADE v0.1

Scriptable Human Automation Development Environment v0.1 I was never planning on releasing this, as it is not even close to being ready for release. But someone had mentioned it in an email so I felt I should at least let the world see it, even in its unfit state. I spent about 1-2 weeks writing [...]

HeliumDownloader v0.1 Alpha

Alpha… It probably should be pre-alpha. In fact, the only thing it’s got going for it is that it works. It’s a download manager, for downloading from free upload sites like megaupload, egoshare, and oxedion (the only 3 it currently supports). I will probably add support for a few more sites after I work more [...]

Free Image Slicer v1.0

It slices images into rows and columns. It also includes my ExListViewItem, which automatically allows drag and drop of file to a listbox, along with handling deleting files from the listbox and re-arranging the files. Download Free Image Slicer v1.0 Here Here is the Slice Image Method: public Image[] SliceImage(Image mainImage, int rows, int cols) [...]

Using the Krypton Toolkit with Visual C# 2005 Express Edition

The Krypton Toolkit makes just about any form look nicer, and it’s free, so it is a great addition to a program. Installing the Krypton Toolkit is probably very easy if you use the full version of Visual Studio, but with a few steps it can work seamlessly on the Express Edition too. 1. Download [...]

TZipFront v1.0

Simple frontend to TorrentZip. TZipFront includes a copy of TorrentZip embedded in the exe file, so no need to download extra files. Usage: 1. Drag and drop zip files onto the white box in the program. 2. Press Go! 3. Press the Delete logs button to delete all the .log files. Download TZipFront v1.0

GOTDActivator v1.0.1

A bug fix, a feature, and a name change. Usage: 1. Run Activator.exe 2. Start either Activate.exe or Setup.exe, depending on which one is used by the particular release. 3. Continue installation steps as usual. ——————————————————————— Version History: 2007-05-23 – v1.0.1 BUG: Correctly flushes dns when started/stopped FEATURE: Allows comments (#) and blank lines in [...]

Activator v1.0 for GOTD

http://www.giveawayoftheday.com/ is a site that provides a different commercial software application for free everyday. The company also runs http://game.giveawayoftheday.com/, which offers a free commercial game everyday. The problem provided by these sites is that the installer is wrapped inside a program which activates itself online. That is, if you save the file you download legitimately [...]

Code Snippets

C# Code Snippets. I am releasing them into the Public Domain, so go nuts with em // Same functionality as the JavaScript command public static string escape(string unEsc) { string rez = ""; for (int i = 0; i < unEsc.Length; i++) { if (Char.IsLetterOrDigit(unEsc[i])) rez += unEsc[i]; else rez += "%" + ((int)unEsc[i]).ToString("x2"); } [...]

CloudyNews v1

NewsCloud.com is running poll to pick 2007′s Hot Topics. Obviously, Colbert Report is waaay up there on the list, and as loyal followers of truth and justice, we should do our duty to make sure others know this. Be sure to check the stats for the newscloud.com hot topics 2007 poll while you vote. Download [...]