<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Absent Logic &#187; Programming</title>
	<atom:link href="http://ilsken.net/blog/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilsken.net/blog</link>
	<description>"Fighters don't quit &#038; quitters don't fight"</description>
	<lastBuildDate>Sat, 21 Aug 2010 23:14:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WPUniquePost &#8211; WordPress Translator Unique Content Plugin</title>
		<link>http://ilsken.net/blog/programming/wpuniquepost-wordpress-translator-unique-content-plugin/</link>
		<comments>http://ilsken.net/blog/programming/wpuniquepost-wordpress-translator-unique-content-plugin/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 20:05:05 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[spinner]]></category>
		<category><![CDATA[translate]]></category>
		<category><![CDATA[translation plugin]]></category>
		<category><![CDATA[unique content]]></category>
		<category><![CDATA[wordpress content random]]></category>
		<category><![CDATA[wordpress spinner]]></category>
		<category><![CDATA[wordpress unique content]]></category>
		<category><![CDATA[wordpress unique post]]></category>
		<category><![CDATA[wpuniquepost]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=115</guid>
		<description><![CDATA[Download Description Translates posts automatically when posted between a set of languages using Google Translate. Uses GTranslate class by Jose da Silva. The purpose of the translation plugin is ofcourse to generate more unique content. Installation For instructions, see this page on WP.org Usage The plugin should be pretty self-explanatory. After installation, settings can be [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/wpuniquepost-wordpress-translator-unique-content-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fakeWindows</title>
		<link>http://ilsken.net/blog/programming/fakewindows/</link>
		<comments>http://ilsken.net/blog/programming/fakewindows/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 20:13:33 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[fakewindows]]></category>
		<category><![CDATA[windows overlay]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=122</guid>
		<description><![CDATA[Copies entire screenbuffer to a memorybuffer, then draws the buffer to a window form which has ontop property. Hence user has a &#8216;fake&#8217; Windows showing, an image that captures all their input without giving any responce. A screenshot would be silly. Source code (DrawingBoard.cs) using System; using System.Drawing; using System.Windows.Forms; using System.Runtime.InteropServices; using System.Threading; using [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/fakewindows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mp3finder</title>
		<link>http://ilsken.net/blog/programming/mp3finder/</link>
		<comments>http://ilsken.net/blog/programming/mp3finder/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 15:12:14 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[grooveshark downloader]]></category>
		<category><![CDATA[grooveshark saver]]></category>
		<category><![CDATA[mp3 file finder]]></category>
		<category><![CDATA[mp3finder]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=120</guid>
		<description><![CDATA[Download About Searches through all files in a directory and finds which are MP3-files then moves them to selected folder. This becomes useful when pointed to the cache-folder of your web browser, for finding MP3&#8242;s you have been listening to online using various flash players (llike Grooveshark for example) This is done by reading the [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/mp3finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple XOR encryption and nibble switch</title>
		<link>http://ilsken.net/blog/debugging/simple-xor-encryption-and-nibble-switch/</link>
		<comments>http://ilsken.net/blog/debugging/simple-xor-encryption-and-nibble-switch/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:09:52 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cryptology]]></category>
		<category><![CDATA[decryption]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[nibble switch]]></category>
		<category><![CDATA[xor]]></category>
		<category><![CDATA[xor encryption]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=117</guid>
		<description><![CDATA[Just to make it a bit confusing. When encrypting, first xor and then swap the nibbles. When decrypting, first swap the nibbles and then xor. How it works Say we have string &#8220;AXE&#8221; (hex 41 58 45) We start with A. A = 0&#215;41 = 65 = 0100 0001 In this example code our key [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/debugging/simple-xor-encryption-and-nibble-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chanSaver</title>
		<link>http://ilsken.net/blog/programming/chansaver/</link>
		<comments>http://ilsken.net/blog/programming/chansaver/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 05:15:12 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[12chan]]></category>
		<category><![CDATA[2chan]]></category>
		<category><![CDATA[420chan]]></category>
		<category><![CDATA[4chan]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[chan]]></category>
		<category><![CDATA[chan saver]]></category>
		<category><![CDATA[chansaver]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[image saver]]></category>
		<category><![CDATA[imageboards]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=124</guid>
		<description><![CDATA[Download Save images from your favorite chan imageboards. Tested and working on 4chan and 2chan. Just enter thread URL and it will create a directory with the name of that thread, then start leeching all of the images. Source code (Neverfail.cs) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/chansaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linked List in C#</title>
		<link>http://ilsken.net/blog/programming/linked-list-in-c/</link>
		<comments>http://ilsken.net/blog/programming/linked-list-in-c/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 05:04:06 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=112</guid>
		<description><![CDATA[This is my class for C# linked lists. Simple as that. using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; &#160; namespace nsLinkedList &#123; &#160; &#160; public class LinkedList &#160; &#160; &#123; &#160; &#160; &#160; &#160; public string line; &#160; &#160; &#160; &#160; &#160; public LinkedList prev = null; &#160; &#160; &#160; &#160; public LinkedList next [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/linked-list-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MASM Dialog Trainer-base</title>
		<link>http://ilsken.net/blog/gamehacking/masm-dialog-trainer-base/</link>
		<comments>http://ilsken.net/blog/gamehacking/masm-dialog-trainer-base/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 16:38:02 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Gamehacking]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ilsken.net/blog/?p=82</guid>
		<description><![CDATA[Trainer-base written 100% by me in MASM32. I use this for all my trainers now.. Very simple base, About/Exit/Options buttons (2 options), tells you to start game before trying to patch if buttons pressed when game not started. Also has icon &#38; a small bitmap (logoish) from my CSS-trainer. Instructions: 1. UnRAR to anywhere 2. [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/gamehacking/masm-dialog-trainer-base/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>C++ Anti-Cracking &#8220;hide&#8221; your WinAPI-calls</title>
		<link>http://ilsken.net/blog/cracking/c-anti-cracking-hide-your-winapi-calls/</link>
		<comments>http://ilsken.net/blog/cracking/c-anti-cracking-hide-your-winapi-calls/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 18:01:37 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Cracking]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ilsken.net/?p=69</guid>
		<description><![CDATA[If you&#8217;re a software-programmer and/or reverse-engineer you should know that using Windows API-calls is a easy way to write code, and also in many cases a good point for reverse-engineers to trace to/from while removing potential protections.. Let’s take a basic example, let’s use a standard WinAPI-call.. #include int WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nShowCmd) { [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/cracking/c-anti-cracking-hide-your-winapi-calls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C++ Externally modifying pointer-values</title>
		<link>http://ilsken.net/blog/gamehacking/c-externally-modifying-pointer-values/</link>
		<comments>http://ilsken.net/blog/gamehacking/c-externally-modifying-pointer-values/#comments</comments>
		<pubDate>Wed, 05 Sep 2007 23:00:26 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Gamehacking]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ilsken.net/?p=61</guid>
		<description><![CDATA[In games such as in this example (WarRock) some values you can change if you can find out the pointer, in CE (Cheat Engine) you can find them by using the pointer-searcher, then you get eg. 0x0B4DC0D3 + 0x1C and many people don&#8217;t know how to do with the + 0x1C and just try to [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/gamehacking/c-externally-modifying-pointer-values/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C++ Clipboard Set &amp; Paste (aka Spammer)</title>
		<link>http://ilsken.net/blog/programming/c-clipboard-set-paste-aka-spammer/</link>
		<comments>http://ilsken.net/blog/programming/c-clipboard-set-paste-aka-spammer/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 20:30:41 +0000</pubDate>
		<dc:creator>Mr. Novocain</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ilsken.net/?p=59</guid>
		<description><![CDATA[This program sets the clipboard to a certain message then when user presses F5 it starts to paste (Ctrl+V) the message to the current window and presses Return (sends message in MSN) until user presses F8. Tested with spamming people on MSN and it stresses the targets MSN-process out.. =) Works even better with custom, animated [...]]]></description>
		<wfw:commentRss>http://ilsken.net/blog/programming/c-clipboard-set-paste-aka-spammer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

