<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Raindog - Professional Game Hacker</title>
	<atom:link href="https://ra1ndog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://ra1ndog.wordpress.com</link>
	<description>l2hax nobs</description>
	<lastBuildDate>Wed, 16 Nov 2011 01:46:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ra1ndog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s-ssl.wordpress.com/i/buttonw-com.png</url>
		<title>Raindog - Professional Game Hacker</title>
		<link>https://ra1ndog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://ra1ndog.wordpress.com/osd.xml" title="Raindog - Professional Game Hacker" />
	<atom:link rel='hub' href='https://ra1ndog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Build systems or Make Replacements.</title>
		<link>https://ra1ndog.wordpress.com/2011/11/16/build-systems-or-make-replacements/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/16/build-systems-or-make-replacements/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 01:46:39 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cmake]]></category>
		<category><![CDATA[fbuild]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[jam]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[mingw]]></category>
		<category><![CDATA[msbuild]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[scons]]></category>
		<category><![CDATA[waf]]></category>
		<category><![CDATA[wonderbuild]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=120</guid>
		<description><![CDATA[When I moved away from Visual Studio and to Eclipse, I needed to replace the build system. My original motivation for an alternate build system actually arose when I was still an avid Visual C++ user. I had somehow settled on a non-default project settings for my builds as I always linked with the static [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=120&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I moved away from Visual Studio and to Eclipse, I needed to replace the build system. My original motivation for an alternate build system actually arose when I was still an avid Visual C++ user. I had somehow settled on a non-default project settings for my builds as I always linked with the static runtime for reasons I do not fully remember now. Anyways, every time I made a new VS project, I needed to go through and manual change things through their GUI which was cumbersome and slow. So I started to look into alternate build systems that could generate the proj files for me. In fact, what I did at first was write my own tool that did it for me, <strong>then</strong> I started looking for an alternate more appropriate tool.</p>
<p>&nbsp;</p>
<p>My requirements were:</p>
<ul>
<li>Must generate project files for visual studio (or now Eclipse)</li>
<li>Must be fast</li>
<li>Must be easy to use</li>
</ul>
<p>There are actually tons of build systems out there:</p>
<ul>
<li>CMake</li>
<ul>
<li>http://www.cmake.org</li>
<li>I hate the syntax of CMake</li>
<li>Supported on large number of platforms</li>
<li>One of the few open source C++ projects that was easy to build on windows.</li>
</ul>
<li>QMake</li>
<ul>
<li>http://doc.qt.nokia.com/stable/qmake-manual.html</li>
<li>Generally reserved for Qt related tasks</li>
</ul>
<li>Autotools</li>
<ul>
<li>I haven&#8217;t read anything that suggests this to be a build system that doesn&#8217;t introduce as many shortcomings as it proposes to solve.</li>
</ul>
<li>bakefile</li>
<ul>
<li>Basically a makefile generator.</li>
</ul>
<li>Rant</li>
<ul>
<li>http://rant.rubyforge.org/</li>
<li>Written in ruby.</li>
<li>Doesn&#8217;t generate IDE project files.</li>
</ul>
<li>MSBuild</li>
<ul>
<li>Ships with visual studio</li>
<li>Originally designed for .NET builds</li>
</ul>
<li>SCons</li>
<ul>
<li><cite>http:www.<strong>scons</strong>.org</cite></li>
<li>Generates IDE project files</li>
<li>Written in python</li>
</ul>
<li>Waf</li>
<ul>
<li>http://code.google.com/p/waf</li>
<li>Fast</li>
<li>Written in Python</li>
<li>Generates IDE project files</li>
</ul>
<li>Wonderbuild</li>
<ul>
<li>http://psycle.svn.sourceforge.net/viewvc/psycle/branches/bohan/wonderbuild/</li>
<li>Fast</li>
<li>No documentation</li>
<li>Seems quite dead.</li>
<li>Quite good build tool benchmark: http://retropaganda.info/~bohan/work/sf/psycle/branches/bohan/wonderbuild/benchmarks/time.xml</li>
</ul>
<li>FBuild</li>
<ul>
<li>Written in python</li>
<li>Seems dead</li>
<li>Automatically finds sources to build thus simplifying the build script.</li>
</ul>
<li>Jam</li>
<ul>
<li>http://www.perforce.com/jam/jam.html</li>
<li>http://www.boost.org/boost-build2/doc/html/bbv2/jam.html</li>
<li>Used by boost</li>
<li>The language syntax seemed overly complex</li>
</ul>
</ul>
<p>All of them have pros and cons. Tools like  Tup or Jam all are fast and closer to what one might expect in a makefile, yet the syntax for them is extremely terse and unfriendly, which while allowing experts the ability to create a build script with very few keystrokes, does not allow beginners an easy entry to the system. These build systems designed a DSL to be extremely compact whereas IMO they should have designed a DSL that was easy to learn and use. CMake on the other hand made their DSL extremely verbose and IMO limited, which again makes it harder to learn than what it should be.</p>
<p>Currently CMake and SCons seem to be the widest adopted of the non make-based tools. After discovering that SCons visual studio support was hackish at the time and that Waf was linux only at the time (Both have much better Visual Studio support now) I went with CMake. Honestly, I don&#8217;t like CMake that much. Their custom language is the worst language I have ever seen in my life and while the developer seem to have been open to a Lua extension at one point, it seems that they are very excited about their crappy CMake language. The good thing about CMake is that after using it for a little bit, you can make some simple build scripts with it and then do a bunch of copy pasting of that script for new projects.</p>
<p>As things would have it, I&#8217;ve spent part of today re-researching build systems. It turns out that Waf now has support for Visual Studio and Eclipse project files, which means it is now cross platform and SCons seems to have good Visual Studio support. I think I will convert some of my build scripts over to SCons and Waf and test them out now. SCons is supposed to have ironed out some of the build speed issues and Waf seems to have a lot more features than it used to.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=120&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/16/build-systems-or-make-replacements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>GCC 4.6.1 for Windows</title>
		<link>https://ra1ndog.wordpress.com/2011/11/14/gcc-4-6-1-for-windows/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/14/gcc-4-6-1-for-windows/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:38:55 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[gcc 4.6.1]]></category>
		<category><![CDATA[stl]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=104</guid>
		<description><![CDATA[You can download it from here: http://nuwen.net/files/mingw/mingw-7.2.exe This distro is built by a guy who works on the Visual C++ team at Microsoft.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=104&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can download it from here:</p>
<p>http://nuwen.net/files/mingw/mingw-7.2.exe</p>
<p>This distro is built by a guy who works on the Visual C++ team at Microsoft.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=104&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/14/gcc-4-6-1-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Robust PDF parsing</title>
		<link>https://ra1ndog.wordpress.com/2011/11/14/robust-pdf-parsing/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/14/robust-pdf-parsing/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:24:11 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[didier stevens]]></category>
		<category><![CDATA[malformed]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[parsing]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf parsing]]></category>
		<category><![CDATA[pdf-parser.py]]></category>
		<category><![CDATA[pdf-tools]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=102</guid>
		<description><![CDATA[I&#8217;ve ported Didier Steven&#8217;s pdf-parser.py script to C++. The problem I have is that the parser doesn&#8217;t handle malformed but still loadable by Adobe Reader X pdf files. I found a collection here: http://code.google.com/p/corkami/wiki/PDFTricks &#8211; some of the files there no longer load in Reader X it appears though. &#160; If anyone knows of some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=102&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve ported Didier Steven&#8217;s pdf-parser.py script to C++. The problem I have is that the parser doesn&#8217;t handle malformed but still loadable by Adobe Reader X pdf files. I found a collection here: http://code.google.com/p/corkami/wiki/PDFTricks &#8211; some of the files there no longer load in Reader X it appears though.</p>
<p>&nbsp;</p>
<p>If anyone knows of some open source PDF parser that will handle these documents, please inform me. I would like to see how they perform the parsing. So far sumatrapdf and pdfminer do not handle these documents.</p>
<p>&nbsp;</p>
<p>(You can also get a lot of PE tricks here: http://code.google.com/p/corkami/downloads/list?can=1&amp;q=Binary+corpus)</p>
<p>You can find Didier&#8217;s original code here: http://blog.didierstevens.com/programs/pdf-tools/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=102&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/14/robust-pdf-parsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Chemtrails</title>
		<link>https://ra1ndog.wordpress.com/2011/11/14/chemtrails/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/14/chemtrails/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:05:06 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alex jones]]></category>
		<category><![CDATA[chemtrail]]></category>
		<category><![CDATA[chemtrails]]></category>
		<category><![CDATA[contrail]]></category>
		<category><![CDATA[contrails]]></category>
		<category><![CDATA[infowars]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=98</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=98&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="https://ra1ndog.wordpress.com/2011/11/14/chemtrails/"><img src="http://img.youtube.com/vi/D5pgE_AoNj4/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=98&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/14/chemtrails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Gerrit &#8211; code review for git</title>
		<link>https://ra1ndog.wordpress.com/2011/11/14/gerrit-code-review-for-git/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/14/gerrit-code-review-for-git/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 20:58:37 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gerrit]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=95</guid>
		<description><![CDATA[http://code.google.com/p/gerrit/ Objective Gerrit is a web based code review system, facilitating online code reviews for projects using the Git version control system. Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer. Gerrit simplifies Git based project maintainership by permitting any authorized user to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=95&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://code.google.com/p/gerrit/</p>
<p>Objective</p>
<p>Gerrit is a web based code review system, facilitating online code reviews for projects using the Git version control system.</p>
<p>Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.</p>
<p>Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer. This functionality enables a more centralized usage of Git. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=95&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/14/gerrit-code-review-for-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Java git implementation.</title>
		<link>https://ra1ndog.wordpress.com/2011/11/14/java-git-implementation/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/14/java-git-implementation/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 20:56:32 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git jgit egit]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=87</guid>
		<description><![CDATA[It looks like JGit and EGit will be the closest thing to a native windows implementation of git us windows users can hope for. Check them out here: http://www.eclipse.org/jgit/ http://www.eclipse.org/egit/ User guide: http://wiki.eclipse.org/JGit/User_Guide<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=87&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It looks like JGit and EGit will be the closest thing to a native windows implementation of git us windows users can hope for.</p>
<p>Check them out here:</p>
<p>http://www.eclipse.org/jgit/</p>
<p>http://www.eclipse.org/egit/</p>
<p>User guide:</p>
<p>http://wiki.eclipse.org/JGit/User_Guide</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=87&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/14/java-git-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Ascii Chart</title>
		<link>https://ra1ndog.wordpress.com/2011/11/11/ascii-chart/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/11/ascii-chart/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 22:14:23 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[ascii chart]]></category>
		<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=91</guid>
		<description><![CDATA[I look for this a lot: Alternatively if you have a tool such as 010 Editor, there is an ascii chart there too I believe.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=91&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I look for this a lot:</p>
<p><a href="http://ra1ndog.files.wordpress.com/2011/11/ascii1.gif"><img src="http://ra1ndog.files.wordpress.com/2011/11/ascii1.gif?w=280" alt="" title="Ascii chart Hex + Decimal characters" class="aligncenter size-medium wp-image-90" /></a></p>
<p>Alternatively if you have a tool such as 010 Editor, there is an ascii chart there too I believe.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=91&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/11/ascii-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>

		<media:content url="http://ra1ndog.files.wordpress.com/2011/11/ascii1.gif?w=280" medium="image">
			<media:title type="html">Ascii chart Hex + Decimal characters</media:title>
		</media:content>
	</item>
		<item>
		<title>Boost C++11 GCC and MinGW</title>
		<link>https://ra1ndog.wordpress.com/2011/11/11/boost-c11-gcc-and-mingw/</link>
		<comments>https://ra1ndog.wordpress.com/2011/11/11/boost-c11-gcc-and-mingw/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 22:01:43 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[c++11]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[mingw]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=88</guid>
		<description><![CDATA[If you want to use the new C++11 features when compiling boost, you&#8217;ll need to add this: cxxflags=-std=gnu++0x to your build command line. If you add cxxflags=-std=std++0x You will get build errors about something to do with &#8216;environ&#8217;. It took me quite some time to figure this one out.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=88&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to use the new C++11 features when compiling boost, you&#8217;ll need to add this:</p>
<p><code>cxxflags=-std=gnu++0x</code></p>
<p>to your build command line. If you add</p>
<p><code>cxxflags=-std=std++0x</code></p>
<p>You will get build errors about something to do with &#8216;environ&#8217;. It took me quite some time to figure this one out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=88&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/11/11/boost-c11-gcc-and-mingw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Defcon 19</title>
		<link>https://ra1ndog.wordpress.com/2011/08/10/defcon-19/</link>
		<comments>https://ra1ndog.wordpress.com/2011/08/10/defcon-19/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 19:28:04 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[defcon]]></category>
		<category><![CDATA[defcon 19]]></category>
		<category><![CDATA[game hacking]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[mmorpg]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=84</guid>
		<description><![CDATA[MikeD and I delivered this presentation to a reasonably full room (for sunday @ 5pm) at the Rio for Defcon 19. Hacking MMORPGs for Fun and Mostly Profit<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=84&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MikeD and I delivered this presentation to a reasonably full room (for sunday @ 5pm) at the Rio for Defcon 19.  <a href='http://ra1ndog.files.wordpress.com/2011/08/josh-phillips-defcon.pdf'>Hacking MMORPGs for Fun and Mostly Profit</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=84&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/08/10/defcon-19/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
		<item>
		<title>Precompiled GCC Nightlies and Official Releases MinGW distro.</title>
		<link>https://ra1ndog.wordpress.com/2011/02/02/precompiled-gcc-4-6-mingw-distro/</link>
		<comments>https://ra1ndog.wordpress.com/2011/02/02/precompiled-gcc-4-6-mingw-distro/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 00:38:19 +0000</pubDate>
		<dc:creator>ra1ndog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[gcc 4.6]]></category>
		<category><![CDATA[gcc 4.6.2]]></category>
		<category><![CDATA[gcc 4.7]]></category>
		<category><![CDATA[mingw]]></category>
		<category><![CDATA[nightlies]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ra1ndog.wordpress.com/?p=78</guid>
		<description><![CDATA[http://www.equation.com/servlet/equation.cmd?call=fortran These look like they are based off of the MinGW64 project as there are both 32 bit and 64 bit builds and the headers included in the 32 bit build appear to be the same as the ones included in the mingw64-32 project. This currently has gcc 4.6.2 builds as well as the sexy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=78&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.equation.com/servlet/equation.cmd?call=fortran">http://www.equation.com/servlet/equation.cmd?call=fortran</a></p>
<p>These look like they are based off of the MinGW64 project as there are both 32 bit and 64 bit builds and the headers included in the 32 bit build appear to be the same as the ones included in the mingw64-32 project.</p>
<p>This currently has gcc 4.6.2 builds as well as the sexy new gcc 4.7.0 builds.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ra1ndog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ra1ndog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ra1ndog.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ra1ndog.wordpress.com&amp;blog=7805914&amp;post=78&amp;subd=ra1ndog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://ra1ndog.wordpress.com/2011/02/02/precompiled-gcc-4-6-mingw-distro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="https://secure.gravatar.com/avatar/d62224febd5af445b11c83ecaadab9ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ra1ndog</media:title>
		</media:content>
	</item>
	</channel>
</rss>
