<?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>AquilaX's development blog &#187; AquilaX</title>
	<atom:link href="http://dev.horemag.net/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.horemag.net</link>
	<description>code and so on...</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:29:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Disable KDE file dialog in Chrome</title>
		<link>http://dev.horemag.net/2012/02/02/disable-kde-file-dialog-in-chrome/</link>
		<comments>http://dev.horemag.net/2012/02/02/disable-kde-file-dialog-in-chrome/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 07:40:39 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[/dev/null]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=135</guid>
		<description><![CDATA[To disable the KDE File dialog in Chrome Unstable, set NO_CHROME_KDE_FILE_DIALOG=1  as environment variable. Here is the code reference.
]]></description>
			<content:encoded><![CDATA[<p>To disable the KDE File dialog in Chrome Unstable, set <code>NO_CHROME_KDE_FILE_DIALOG=1</code>  as environment variable. <a href="http://git.chromium.org/gitweb/?p=chromium.git;a=commitdiff;h=49f369583560649cf3099613f41e0ebd7315a726" onclick="javascript:urchinTracker('/outbound/article/http://git.chromium.org/gitweb/?p=chromium.git;a=commitdiff;h=49f369583560649cf3099613f41e0ebd7315a726');">Here</a> is the code reference.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2012/02/02/disable-kde-file-dialog-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating static verison of CodeIgniter website</title>
		<link>http://dev.horemag.net/2011/11/04/generating-static-verison-of-codeigniter-website/</link>
		<comments>http://dev.horemag.net/2011/11/04/generating-static-verison-of-codeigniter-website/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 08:43:35 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=132</guid>
		<description><![CDATA[I love CodeIgniter and I love how easy it is to generate static version of your website. You just have to overwrite the _write_cache function in the Output.php class and turn the caching on. Here's my version:

]]></description>
			<content:encoded><![CDATA[<p>I love CodeIgniter and I love how easy it is to generate static version of your website. You just have to overwrite the _write_cache function in the Output.php class and turn the caching on. Here's my version:</p>
<p><script src="https://gist.github.com/1338937.js?file=MY_Output.php"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2011/11/04/generating-static-verison-of-codeigniter-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating ebook with Markdown, pandoc and GNU Make</title>
		<link>http://dev.horemag.net/2011/08/08/creating-ebook-with-markdown-pandoc-and-gnu-make/</link>
		<comments>http://dev.horemag.net/2011/08/08/creating-ebook-with-markdown-pandoc-and-gnu-make/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 12:39:34 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=129</guid>
		<description><![CDATA[Writing bok with markdown is pure joy. I started a short practical SQL tutorial yesterday and it started do get traction today. I used shell script at first to generate the static HTML page for the book but make looked like a better idea. Here is the Makefile I use:
BUILDDIR = ./build
.PHONY: clean spell
all:	html epub
html: [...]]]></description>
			<content:encoded><![CDATA[<p>Writing bok with markdown is pure joy. I started a <a href="https://github.com/aquilax/baza_danni" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/baza_danni');">short practical SQL tutorial</a> yesterday and it started do get traction today. I used shell script at first to generate the static HTML page for the book but make looked like a better idea. Here is the <a href="https://github.com/aquilax/baza_danni/blob/master/Makefile" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/baza_danni/blob/master/Makefile');">Makefile</a> I use:</p>
<p><code>BUILDDIR = ./build</p>
<p>.PHONY: clean spell</p>
<p>all:	html epub</p>
<p>html: *.markdown style.css Makefile<br />
	pandoc -s --css=style.css --toc -o $(BUILDDIR)/index.html *.markdown<br />
	cp style.css $(BUILDDIR)</p>
<p>epub: *.markdown style.css Makefile<br />
	pandoc -t epub --epub-metadata=metadata.xml -s --epub-stylesheet=style.css --toc -o $(BUILDDIR)/book.epub *.markdown</p>
<p>clean:<br />
	rm -f $(BUILDDIR)/*.html<br />
	rm -f $(BUILDDIR)/*.css<br />
	rm -f $(BUILDDIR)/*.epub<br />
	rm -f *.bak</p>
<p>spell:<br />
	for i in *.markdown; do aspell --lang=bg_BG check $$i; done</code></p>
<p><strong>Important note</strong>: make requires TAB for indentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2011/08/08/creating-ebook-with-markdown-pandoc-and-gnu-make/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hranoprovod &#8211; command line personal life tracker in google go (golang)</title>
		<link>http://dev.horemag.net/2011/08/07/hranoprovod-command-line-personal-life-tracker-in-google-go-golang/</link>
		<comments>http://dev.horemag.net/2011/08/07/hranoprovod-command-line-personal-life-tracker-in-google-go-golang/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 06:14:25 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[go]]></category>
		<category><![CDATA[golang]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=127</guid>
		<description><![CDATA[Hranoprovod is my ledger inspired calorie/weight tracker written in go. The first prototype version was implemented in PHP, and it also worked well, but I decided to take a look at golang.
]]></description>
			<content:encoded><![CDATA[<p><a href="https://github.com/aquilax/hranoprovod-go" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/hranoprovod-go');">Hranoprovod</a> is my ledger inspired calorie/weight tracker written in go. The <a href="https://github.com/aquilax/hranoprovod" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/hranoprovod');">first prototype version</a> was implemented in PHP, and it also worked well, but I decided to take a look at golang.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2011/08/07/hranoprovod-command-line-personal-life-tracker-in-google-go-golang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malko ERP basic database</title>
		<link>http://dev.horemag.net/2011/07/01/malko-erp-basic-database/</link>
		<comments>http://dev.horemag.net/2011/07/01/malko-erp-basic-database/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 09:41:57 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[Malko-ERP]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=125</guid>
		<description><![CDATA[Let's start with the product management. I'll try to keep it simple for the time being. My weapon of choice, when designing the database schema is the almost great WWW SQL Designer. 
Right now the schema looks like this:

And the XML file is located here.
]]></description>
			<content:encoded><![CDATA[<p>Let's start with the product management. I'll try to keep it simple for the time being. My weapon of choice, when designing the database schema is the almost great <a href="http://code.google.com/p/wwwsqldesigner/" onclick="javascript:urchinTracker('/outbound/article/http://code.google.com/p/wwwsqldesigner/');">WWW SQL Designer</a>. </p>
<p>Right now the schema looks like this:</p>
<p><img src="http://i.imgur.com/jc921.png" alt="ERP Database Schema" /></p>
<p>And the XML file is located <a href="https://github.com/aquilax/malko-erp/blob/456c4c58c194c92e7c1af6a54b3e944160fa5f37/_files/schema.xml" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/malko-erp/blob/456c4c58c194c92e7c1af6a54b3e944160fa5f37/_files/schema.xml');">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2011/07/01/malko-erp-basic-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>malko-erp</title>
		<link>http://dev.horemag.net/2011/07/01/malko-erp/</link>
		<comments>http://dev.horemag.net/2011/07/01/malko-erp/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 09:32:31 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[Malko-ERP]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=123</guid>
		<description><![CDATA[Just started a new project in github today called "malko-erp". The "malko" part stands for "tiny" in Bulgarian. The idea is to lay the grounds for basic ERP system with e-commerce frontend.
Stay tuned for the updates...
]]></description>
			<content:encoded><![CDATA[<p>Just started a new project in github today called "<a href="https://github.com/aquilax/malko-erp" onclick="javascript:urchinTracker('/outbound/article/https://github.com/aquilax/malko-erp');">malko-erp</a>". The "malko" part stands for "tiny" in Bulgarian. The idea is to lay the grounds for basic ERP system with e-commerce frontend.</p>
<p>Stay tuned for the updates...</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2011/07/01/malko-erp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kohana Tutorial</title>
		<link>http://dev.horemag.net/2010/10/16/kohana-tutorial/</link>
		<comments>http://dev.horemag.net/2010/10/16/kohana-tutorial/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 12:46:23 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=121</guid>
		<description><![CDATA[I started to learn Kohana 3 by writing a tutorial for it. Take a look at it here if you are interested.
]]></description>
			<content:encoded><![CDATA[<p>I started to learn Kohana 3 by writing a tutorial for it. Take a look at it <a href="http://kohana-tutorial.blogspot.com/" onclick="javascript:urchinTracker('/outbound/article/http://kohana-tutorial.blogspot.com/');">here</a> if you are interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2010/10/16/kohana-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple counter</title>
		<link>http://dev.horemag.net/2010/04/25/simple-counter/</link>
		<comments>http://dev.horemag.net/2010/04/25/simple-counter/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 07:45:37 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=117</guid>
		<description><![CDATA[Top site counter is small and simple appengine hosted counter.
The source code can be found here.
Demo is available here.
]]></description>
			<content:encoded><![CDATA[<p>Top site counter is small and simple appengine hosted counter.<br />
<div id="attachment_119" class="wp-caption alignnone" style="width: 310px"><a href="http://dev.horemag.net/wp-content/uploads/counter.png" ><img src="http://dev.horemag.net/wp-content/uploads/counter-300x213.png" alt="Top Site Counter" title="Top Site Counter" width="300" height="213" class="size-medium wp-image-119" /></a><p class="wp-caption-text">Top Site Counter</p></div><br />
The source code can be found <a href="http://code.google.com/p/topsitecounter/" onclick="javascript:urchinTracker('/outbound/article/http://code.google.com/p/topsitecounter/');">here</a>.<br />
Demo is available <a href="http://topsitecounter.appspot.com/" onclick="javascript:urchinTracker('/outbound/article/http://topsitecounter.appspot.com/');">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2010/04/25/simple-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great waterfall</title>
		<link>http://dev.horemag.net/2010/04/09/great-waterfall/</link>
		<comments>http://dev.horemag.net/2010/04/09/great-waterfall/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 11:11:37 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[/dev/null]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=113</guid>
		<description><![CDATA[I created a test page full of badges and counters and that's what came out as waterfall diagram:

The whole report is here. 
]]></description>
			<content:encoded><![CDATA[<p>I created a <a href="http://obiavidnes.com/banners.html" onclick="javascript:urchinTracker('/outbound/article/http://obiavidnes.com/banners.html');">test page</a> full of badges and counters and that's what came out as waterfall diagram:<br />
<a href="http://dev.horemag.net/wp-content/uploads/1_waterfall.png" ><img src="http://dev.horemag.net/wp-content/uploads/1_waterfall-284x300.png" alt="Waterfall" title="Waterfall" width="284" height="300" class="alignnone size-medium wp-image-114" /></a><br />
The whole report is <a href="http://www.webpagetest.org/result/100409_6NQF/" onclick="javascript:urchinTracker('/outbound/article/http://www.webpagetest.org/result/100409_6NQF/');">here</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2010/04/09/great-waterfall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mini php based one page RPG game (rp16g)</title>
		<link>http://dev.horemag.net/2010/03/19/mini-php-based-one-page-rpg-game-rp16g/</link>
		<comments>http://dev.horemag.net/2010/03/19/mini-php-based-one-page-rpg-game-rp16g/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 07:29:48 +0000</pubDate>
		<dc:creator>AquilaX</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dev.horemag.net/?p=111</guid>
		<description><![CDATA[This is my submission for PHASE 2 of the Micro Game Coding Challenge.
rp16g
http://posterfans.com/game/rp16g.php
Size:5.1 KB
Planning and development time ~ 7 hours
rp16g is a small text based rougelike game based on Dragon Slayer. The player (@) must find and kill the dragon (+). The dragon is very strong for the player's initial fitness so some monster killing [...]]]></description>
			<content:encoded><![CDATA[<p>This is my submission for PHASE 2 of the <a href="http://community.bbgamezone.net/index.php/topic,2705.0.html" onclick="javascript:urchinTracker('/outbound/article/http://community.bbgamezone.net/index.php/topic,2705.0.html');">Micro Game Coding Challenge</a>.</p>
<p><strong>rp16g</strong><br />
<a href="http://posterfans.com/game/rp16g.php" onclick="javascript:urchinTracker('/outbound/article/http://posterfans.com/game/rp16g.php');">http://posterfans.com/game/rp16g.php</a><br />
Size:5.1 KB<br />
Planning and development time ~ 7 hours</p>
<p>rp16g is a small text based rougelike game based on Dragon Slayer. The player (@) must find and kill the dragon (+). The dragon is very strong for the player's initial fitness so some monster killing is needed to strengthen the player first.</p>
<p>Game features:<br />
- Game map;<br />
- Fog of war;<br />
- Simple battle system;<br />
- Character stats;<br />
- Romantic end  Grin</p>
<p>The source code of the game is available here: <a href="http://posterfans.com/game/rp16g.php.txt" onclick="javascript:urchinTracker('/outbound/article/http://posterfans.com/game/rp16g.php.txt');">http://posterfans.com/game/rp16g.php.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.horemag.net/2010/03/19/mini-php-based-one-page-rpg-game-rp16g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

