<?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>ktolis-&#62;blog(); &#187; Programming</title>
	<atom:link href="http://www.ktolis.gr/lang/el/category/zlinks/tech/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ktolis.gr</link>
	<description>Little Buddha aka Prodigy - Kick it Sparky!</description>
	<lastBuildDate>Sat, 04 Sep 2010 20:32:40 +0000</lastBuildDate>
	<language>el</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Steps for a successful symfony living part 1</title>
		<link>http://www.ktolis.gr/lang/el/2008/05/15/steps-for-a-successful-symfony-living-part-1</link>
		<comments>http://www.ktolis.gr/lang/el/2008/05/15/steps-for-a-successful-symfony-living-part-1#comments</comments>
		<pubDate>Wed, 14 May 2008 22:05:18 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[main]]></category>

		<guid isPermaLink="false">http://www.ktolis.gr/?p=317</guid>
		<description><![CDATA[Suppose you have a mysql db somewhere. Lets make a very quick CRUD. As fast as possible .. Requirements: 1) a glass of water, 2) a mysql db 3) the symfony sandbox Here we go: Step 1: edit config/databases.yml and use these as last lines: param: dsn: mysql://&#60;username&#62;:&#60;password&#62;@&#60;host&#62;/&#60;database_name&#62;  Step 2: edit config/propel.ini to set up propel [...]


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2010/06/04/steps-for-a-successful-symfony-living-part-2' rel='bookmark' title='Permanent Link: Steps for a successful symfony living part 2'>Steps for a successful symfony living part 2</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2010/02/24/flixel-tutorial-part-1' rel='bookmark' title='Permanent Link: Flixel tutorial part 1'>Flixel tutorial part 1</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2005/04/04/new-start' rel='bookmark' title='Permanent Link: New Start'>New Start</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Suppose you have a mysql db somewhere. Lets make a very quick CRUD. As fast as possible ..</p></blockquote>
<p>Requirements:</p>
<p>1) a glass of water,<br />
2) a mysql db<br />
3) the symfony sandbox</p>
<p>Here we go:</p>
<p>Step 1: edit <strong>config/databases.yml</strong> and use these as last lines:</p>
<blockquote><p><strong>param:<br />
dsn: mysql://&#60;username&#62;:&#60;password&#62;@&#60;host&#62;/&#60;database_name&#62; </strong></p></blockquote>
<p>Step 2: edit <strong>config/propel.ini</strong> to set up propel properly:</p>
<blockquote><p><strong>propel.database            = mysql<br />
propel.database.createUrl  = mysql://login:passwd@localhost<br />
propel.database.url        = mysql://login:passwd@localhost/database<br />
propel.mysql.tableType = InnoDB</strong></p>
<p>setting up is done now lets get to the fun part</p></blockquote>
<p>Step 3: we create the model from the mysql db, <strong>type at your cli</strong>:</p>
<blockquote><p><strong>symfony propel-build-schema</strong></p></blockquote>
<div>you should get some echo like:</div>
<blockquote>
<div>Generating XML from Creole connection !</div>
</blockquote>
<div>and at the end :</div>
<div>
<blockquote>
<div>[propel-creole-transform] Propel &#8211; CreoleToXMLSchema finished</div>
<div>BUILD FINISHED</div>
<div>Total time: 1.1212 second</div>
<div>&#62;&#62; schema    putting /var/www/localhost/htdocs/estate/config/schema.yml</div>
<div>&#62;&#62; file-     /var/www/localhost/htdocs/estate/config/schema.xml</div>
</blockquote>
<div>which indicates the success of the command. You now just created the schema of the db as a yml.</div>
</div>
<div>Step 4: now that we got the mysql model lets create the propel model <strong>by typing in your cli</strong>:</div>
<blockquote>
<div><strong>symfony propel-build-model</strong></div>
</blockquote>
<div>which will be used from now on throughout symfony.</div>
<div>You are actually done here. You can start building your applications now based on the work so far. So you should start with a backend and finish off with a frontend. </div>
<div>Lets start the backend:</div>
<div>Step 1: type at the cli:</div>
<blockquote>
<div><strong>symfony init-app backend</strong></div>
</blockquote>
<div>to create the backend application</div>
<div>Step 2: type at the cli:</div>
<blockquote>
<div><strong>symfony propel-generate-crud backend images Image</strong></div>
</blockquote>
<div>to create the CRUD interface for the Image table and it will appear in the backend application as &#8220;images&#8221;</div>
<div>You are done for now. You can check out the CRUD at your address:</div>
<div>http://&#60;server_address&#62;/myfolder/web/backend_dev.php/images/list</div>
<div>You can now go on and create simple CRUD interfaces for all your tables by this.</div>
<div>Final Step:</div>
<blockquote>
<div><strong>Drink the glass of water. You are done now.</strong></div>
</blockquote>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2010/06/04/steps-for-a-successful-symfony-living-part-2' rel='bookmark' title='Permanent Link: Steps for a successful symfony living part 2'>Steps for a successful symfony living part 2</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2010/02/24/flixel-tutorial-part-1' rel='bookmark' title='Permanent Link: Flixel tutorial part 1'>Flixel tutorial part 1</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2005/04/04/new-start' rel='bookmark' title='Permanent Link: New Start'>New Start</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2008/05/15/steps-for-a-successful-symfony-living-part-1/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cog + Adium + status update</title>
		<link>http://www.ktolis.gr/lang/el/2008/02/23/cog-adium-status-update</link>
		<comments>http://www.ktolis.gr/lang/el/2008/02/23/cog-adium-status-update#comments</comments>
		<pubDate>Sat, 23 Feb 2008 11:57:49 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ktolis.gr/2008/02/23/cog-adium-status-update/</guid>
		<description><![CDATA[Η ανανεωμένη έκδοση του προηγούμενου script. Η ανανέωση του status δεν γίνεται πλέον χειρονακτικά αλλά κάθε 30&#8243; αυτόματα. set old_title to " " set new_title to " " repeat delay 30 tell application "Cog" set this_title to the title of the currententry end tell set new_title to this_title if new_title is not equal to old_title [...]


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog-adium-status' rel='bookmark' title='Permanent Link: Cog + Adium + status'>Cog + Adium + status</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog' rel='bookmark' title='Permanent Link: Cog'>Cog</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/06/16/10k10d' rel='bookmark' title='Permanent Link: 10k/10d μέρος 1ο'>10k/10d μέρος 1ο</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Η ανανεωμένη έκδοση του προηγούμενου script. Η ανανέωση του status δεν γίνεται πλέον χειρονακτικά αλλά κάθε 30&#8243; αυτόματα.</p>
<p><code>set old_title to " "<br />
set new_title to " "<br />
repeat<br />
delay 30<br />
tell application "Cog"<br />
set this_title to the title of the currententry<br />
end tell<br />
set new_title to this_title<br />
if new_title is not equal to old_title then<br />
set old_title to new_title<br />
tell application "Adium"<br />
--    set the status message of the account "****@gmail.com" to this_title<br />
set the status message of accounts to this_title<br />
end tell<br />
end if<br />
end repeat</code><br />
Καλού κακού την postάρισα και στο <a href="http://cogx.org/forums/viewtopic.php?id=347">forum</a> του Cog.</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog-adium-status' rel='bookmark' title='Permanent Link: Cog + Adium + status'>Cog + Adium + status</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog' rel='bookmark' title='Permanent Link: Cog'>Cog</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/06/16/10k10d' rel='bookmark' title='Permanent Link: 10k/10d μέρος 1ο'>10k/10d μέρος 1ο</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2008/02/23/cog-adium-status-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cog + Adium + status</title>
		<link>http://www.ktolis.gr/lang/el/2008/02/21/cog-adium-status</link>
		<comments>http://www.ktolis.gr/lang/el/2008/02/21/cog-adium-status#comments</comments>
		<pubDate>Thu, 21 Feb 2008 11:12:18 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ktolis.gr/2008/02/21/cog-adium-status/</guid>
		<description><![CDATA[Το Adium υποστηρίζει εγγενώς την επιλογή να αναφέρει στην τρέχουσα κατάσταση χρήστη το κομμάτι που παίζει το iTunes. Την ίδια συμπεριφορά θέλω να αναπαράγω και με το Cog. Η λύση που βρήκα προς το παρόν είναι μέσω AppleScript ως εξής: tell application "Cog" set this_title to the title of the currententry end tell tell application [...]


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2008/02/23/cog-adium-status-update' rel='bookmark' title='Permanent Link: Cog + Adium + status update'>Cog + Adium + status update</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog' rel='bookmark' title='Permanent Link: Cog'>Cog</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/03/18/ntfs-rw' rel='bookmark' title='Permanent Link: NTFS r/w'>NTFS r/w</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Το <a href="http://www.adiumx.com/">Adium</a> υποστηρίζει εγγενώς την επιλογή να αναφέρει στην τρέχουσα κατάσταση χρήστη το κομμάτι που παίζει το <a href="http://www.apple.com/itunes/">iTunes</a>. Την ίδια συμπεριφορά θέλω να αναπαράγω και με το <a href="http://cogx.org/">Cog</a>. Η λύση που βρήκα προς το παρόν είναι μέσω <a href="http://www.apple.com/applescript/">AppleScript</a> ως εξής:<br />
<code>tell application "Cog"<br />
    set this_title to the title of the currententry<br />
end tell<br />
tell application "Adium"<br />
    --    set the status message of the account "youraccounthere" to this_title<br />
    set the status message of accounts to this_title<br />
end tell<br />
</code>Καλού κακού <a href="http://cogx.org/forums/viewtopic.php?id=347">ποστάρισα</a> τον κώδικα και στο φόρουμ της εφαρμογής μπας και το συνεχίσει κανείς μέχρι να ασχοληθώ με το πως μπορώ να καλώ το script αυτό κάθε Χ χρονικό διάστημα ή όταν αλλάζει το κομμάτι που παίζει το <a href="http://cogx.org/">Cog</a>. Η λύση που σκεφτόμουν ήταν μέσω <a href="http://growl.info/">Growl</a> αλλά δεν βρήκα το <a href="http://growl.info/">Growl</a> να υποστηρίζει την εκτέλεση <a href="http://www.apple.com/applescript/">AppleScripts</a> ως εναλλακτική η έστω ως συμπληρωματική μέθοδο υποστήριξης events.</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2008/02/23/cog-adium-status-update' rel='bookmark' title='Permanent Link: Cog + Adium + status update'>Cog + Adium + status update</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/02/21/cog' rel='bookmark' title='Permanent Link: Cog'>Cog</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/03/18/ntfs-rw' rel='bookmark' title='Permanent Link: NTFS r/w'>NTFS r/w</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2008/02/21/cog-adium-status/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Natural Selection to Investigate Software Complexities</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/27/using-natural-selection-to-investigate-software-complexities</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/27/using-natural-selection-to-investigate-software-complexities#comments</comments>
		<pubDate>Tue, 27 Jun 2006 04:05:42 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=233</guid>
		<description><![CDATA[Acovea Overview ACOVEA (Analysis of Compiler Options via Evolutionary Algorithm) implements a genetic algorithm to find the &#8220;best&#8221; options for compiling programs with the GNU Compiler Collection (GCC) C and C compilers. &#8220;Best&#8221;, in this context, is defined as those options that produce the fastest executable program from a given source code. Acovea is a [...]


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2009/06/15/retesting-my-wp-plugins-selection' rel='bookmark' title='Permanent Link: Retesting my WP plugins selection'>Retesting my WP plugins selection</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/enable-c-applications-for-web-service-using-xml-rpc' rel='bookmark' title='Permanent Link: Enable C++ applications for Web service using XML-RPC'>Enable C++ applications for Web service using XML-RPC</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2005/04/04/new-start' rel='bookmark' title='Permanent Link: New Start'>New Start</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.coyotegulch.com/products/acovea/index.html">Acovea Overview</a><br />
ACOVEA (Analysis of Compiler Options via Evolutionary Algorithm) implements a<br />
	genetic algorithm to find the &#8220;best&#8221; options for compiling programs with the GNU<br />
	Compiler Collection (GCC) C and C   compilers. &#8220;Best&#8221;, in this context, is defined<br />
	as those options that produce the fastest executable program from a given source<br />
	code. Acovea is a C   framework that can be extended to test other programming<br />
	languages and non-GCC compilers.</p>
<p>	I envision Acovea as an optimization tool, similar in purpose to profiling.<br />
	Traditional function-level profiling identifies the algorithms most influential<br />
	in a program&#8217;s performance; Acovea is then applied to those algorithms to find<br />
	the compiler flags and options that generate the fastest code. Acovea is also<br />
	useful for testing combinations of flags for pessimistic interactions, and for<br />
	testing the reliability of the compiler.</p>
<p>	This article describes the application of Acovea to the analysis of the GNU C<br />
	compiler optimization flags; details about the underlying genetic algorithm can<br />
	be found in the companion article,???  A Description of<br />
	the Evolutionary Algorithm.</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2009/06/15/retesting-my-wp-plugins-selection' rel='bookmark' title='Permanent Link: Retesting my WP plugins selection'>Retesting my WP plugins selection</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/enable-c-applications-for-web-service-using-xml-rpc' rel='bookmark' title='Permanent Link: Enable C++ applications for Web service using XML-RPC'>Enable C++ applications for Web service using XML-RPC</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2005/04/04/new-start' rel='bookmark' title='Permanent Link: New Start'>New Start</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/27/using-natural-selection-to-investigate-software-complexities/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Example codes: BSD Sockets</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/25/example-codes-bsd-sockets</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/25/example-codes-bsd-sockets#comments</comments>
		<pubDate>Sat, 24 Jun 2006 23:25:36 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=206</guid>
		<description><![CDATA[Example codes: BSD Sockets Related posts:QuickTime API Reference: Error Codes


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/06/25/quicktime-api-reference-error-codes' rel='bookmark' title='Permanent Link: QuickTime API Reference: Error Codes'>QuickTime API Reference: Error Codes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cs.put.poznan.pl/csobaniec/Examples/Sockets/">Example codes: BSD Sockets</a></p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/06/25/quicktime-api-reference-error-codes' rel='bookmark' title='Permanent Link: QuickTime API Reference: Error Codes'>QuickTime API Reference: Error Codes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/25/example-codes-bsd-sockets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable C++ applications for Web service using XML-RPC</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/24/enable-c-applications-for-web-service-using-xml-rpc</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/24/enable-c-applications-for-web-service-using-xml-rpc#comments</comments>
		<pubDate>Sat, 24 Jun 2006 21:20:47 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=195</guid>
		<description><![CDATA[Enable C++ applications for Web service using XML-RPC XML-RPC is a lightweight, simple and powerful messaging protocol that enables complex XML-based communication across disparate platforms. In this article you&#8217;ll see how to build your own XML-RPC-based service for C programs. Related posts:Web 2.0 Innovation Map Steps for a successful symfony living part 1 Top 10 [...]


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/01/web-20-innovation-map' rel='bookmark' title='Permanent Link: Web 2.0 Innovation Map'>Web 2.0 Innovation Map</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/05/15/steps-for-a-successful-symfony-living-part-1' rel='bookmark' title='Permanent Link: Steps for a successful symfony living part 1'>Steps for a successful symfony living part 1</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/top-10-web-developer-libraries-cameron-olthuis' rel='bookmark' title='Permanent Link: Top 10 Web Developer Libraries &#8211;  Cameron Olthuis'>Top 10 Web Developer Libraries &#8211;  Cameron Olthuis</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www-128.ibm.com/developerworks/webservices/library/ws-xml-rpc/?ca=dgr-lnxw07C++4services">Enable C++ applications for Web service using XML-RPC</a><br />
XML-RPC is a lightweight, simple and powerful messaging protocol that enables complex XML-based communication across disparate platforms. In this article you&#8217;ll see how to build your own XML-RPC-based service for C   programs.</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/01/web-20-innovation-map' rel='bookmark' title='Permanent Link: Web 2.0 Innovation Map'>Web 2.0 Innovation Map</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2008/05/15/steps-for-a-successful-symfony-living-part-1' rel='bookmark' title='Permanent Link: Steps for a successful symfony living part 1'>Steps for a successful symfony living part 1</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/top-10-web-developer-libraries-cameron-olthuis' rel='bookmark' title='Permanent Link: Top 10 Web Developer Libraries &#8211;  Cameron Olthuis'>Top 10 Web Developer Libraries &#8211;  Cameron Olthuis</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/24/enable-c-applications-for-web-service-using-xml-rpc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Live CD</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/24/rails-live-cd</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/24/rails-live-cd#comments</comments>
		<pubDate>Sat, 24 Jun 2006 21:08:49 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=193</guid>
		<description><![CDATA[Rails Live CD Project Project to deliver a live cd for Rails development (cute). Related posts:Ruby on Rails Tutorials Learning Ruby on Rails Raible Designs


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/04/ruby-on-rails-tutorials' rel='bookmark' title='Permanent Link: Ruby on Rails Tutorials'>Ruby on Rails Tutorials</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/02/04/learning-ruby-on-rails' rel='bookmark' title='Permanent Link: Learning Ruby on Rails'>Learning Ruby on Rails</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/05/26/raible-designs-ajax-on-rails-with-stuart-halloway' rel='bookmark' title='Permanent Link: Raible Designs '>Raible Designs </a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.brianketelsen.com/pages/download">Rails Live CD Project</a></p>
<p>Project to deliver a live cd for Rails development (cute).</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/04/ruby-on-rails-tutorials' rel='bookmark' title='Permanent Link: Ruby on Rails Tutorials'>Ruby on Rails Tutorials</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/02/04/learning-ruby-on-rails' rel='bookmark' title='Permanent Link: Learning Ruby on Rails'>Learning Ruby on Rails</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/05/26/raible-designs-ajax-on-rails-with-stuart-halloway' rel='bookmark' title='Permanent Link: Raible Designs '>Raible Designs </a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/24/rails-live-cd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>???????»???»???·???½???????? ??????????±???????????????­???????½???????? ??? ?????????³??????±???????????±???????????????????­????</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/24/%ce%95%ce%bb%ce%bb%ce%b7%ce%bd%ce%b5%cf%82-%ce%95%cf%81%ce%b1%cf%83%ce%b9%cf%84%ce%ad%cf%87%ce%bd%ce%b5%cf%82-%ce%a0%cf%81%ce%bf%ce%b3%cf%81%ce%b1%ce%bc%ce%bc%ce%b1%cf%84%ce%b9%cf%83%cf%84%ce%ad%cf%82</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/24/%ce%95%ce%bb%ce%bb%ce%b7%ce%bd%ce%b5%cf%82-%ce%95%cf%81%ce%b1%cf%83%ce%b9%cf%84%ce%ad%cf%87%ce%bd%ce%b5%cf%82-%ce%a0%cf%81%ce%bf%ce%b3%cf%81%ce%b1%ce%bc%ce%bc%ce%b1%cf%84%ce%b9%cf%83%cf%84%ce%ad%cf%82#comments</comments>
		<pubDate>Sat, 24 Jun 2006 21:06:42 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=192</guid>
		<description><![CDATA[???????»???»???·???½???????? ??????????±???????????????­???????½???????? ??? ?????????³??????±???????????±???????????????????­???? Greek free programming resources (in greek ofc) Related posts:We are hiring (oooh yeah!)


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/05/24/we-are-hiring-oooh-yeah' rel='bookmark' title='Permanent Link: We are hiring (oooh yeah!)'>We are hiring (oooh yeah!)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.greekcoders.gr/">???????»???»???·???½???????? ??????????±???????????????­???????½???????? ??? ?????????³??????±???????????±???????????????????­????</a></p>
<p>Greek free programming resources (in greek ofc)</p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/05/24/we-are-hiring-oooh-yeah' rel='bookmark' title='Permanent Link: We are hiring (oooh yeah!)'>We are hiring (oooh yeah!)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/24/%ce%95%ce%bb%ce%bb%ce%b7%ce%bd%ce%b5%cf%82-%ce%95%cf%81%ce%b1%cf%83%ce%b9%cf%84%ce%ad%cf%87%ce%bd%ce%b5%cf%82-%ce%a0%cf%81%ce%bf%ce%b3%cf%81%ce%b1%ce%bc%ce%bc%ce%b1%cf%84%ce%b9%cf%83%cf%84%ce%ad%cf%82/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GameArchitect &#8211; Game Design and more</title>
		<link>http://www.ktolis.gr/lang/el/2006/06/24/gamearchitect-game-design-and-more</link>
		<comments>http://www.ktolis.gr/lang/el/2006/06/24/gamearchitect-game-design-and-more#comments</comments>
		<pubDate>Sat, 24 Jun 2006 20:28:47 +0000</pubDate>
		<dc:creator>ktolis</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://iridium.csd.auth.gr/~ktolis/?p=188</guid>
		<description><![CDATA[One of the diamonds in the web. 10 stars to the most informative site for game developers (and developers in general). Has several guides on games already selling and on how to do things the right way. GameArchitect Related posts:Speed Gear Top 10 Web Developer Libraries &#8211; Cameron Olthuis Way too many torrent sites&#8217;


Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/04/speed-gear' rel='bookmark' title='Permanent Link: Speed Gear'>Speed Gear</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/top-10-web-developer-libraries-cameron-olthuis' rel='bookmark' title='Permanent Link: Top 10 Web Developer Libraries &#8211;  Cameron Olthuis'>Top 10 Web Developer Libraries &#8211;  Cameron Olthuis</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/02/03/way-too-many-torrent-sites' rel='bookmark' title='Permanent Link: Way too many torrent sites&#8217;'>Way too many torrent sites&#8217;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of the diamonds in the web. 10 stars to the most informative site for game developers (and developers in general). Has several guides on games already selling and on how to do things the right way.</p>
<p><a href="http://www.gamearchitect.net/Other/archive.html">GameArchitect</a></p>


<p>Related posts:<ol><li><a href='http://www.ktolis.gr/lang/el/2006/02/04/speed-gear' rel='bookmark' title='Permanent Link: Speed Gear'>Speed Gear</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/06/24/top-10-web-developer-libraries-cameron-olthuis' rel='bookmark' title='Permanent Link: Top 10 Web Developer Libraries &#8211;  Cameron Olthuis'>Top 10 Web Developer Libraries &#8211;  Cameron Olthuis</a></li>
<li><a href='http://www.ktolis.gr/lang/el/2006/02/03/way-too-many-torrent-sites' rel='bookmark' title='Permanent Link: Way too many torrent sites&#8217;'>Way too many torrent sites&#8217;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ktolis.gr/lang/el/2006/06/24/gamearchitect-game-design-and-more/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
