<?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>Gudasoft</title>
	<atom:link href="http://www.gudasoft.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gudasoft.com</link>
	<description>Impossible is nothing</description>
	<lastBuildDate>Thu, 02 Sep 2010 15:07:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Autoicrement the serial in bind zone files</title>
		<link>http://www.gudasoft.com/english/linux/administration-linux/09/02/1334/autoicrement-the-serial-in-bind-zone-files/2010</link>
		<comments>http://www.gudasoft.com/english/linux/administration-linux/09/02/1334/autoicrement-the-serial-in-bind-zone-files/2010#comments</comments>
		<pubDate>Thu, 02 Sep 2010 15:06:06 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[bind]]></category>
		<category><![CDATA[named]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1334</guid>
		<description><![CDATA[Argh. 30+ zone files and I have to increment all numbers by hand&#8230;no way. Usage:  ./inc.rb in the current directory with all db files. #!/usr/bin/ruby Dir.glob("*.db") do &#124;file_name&#124; new_zone = [] File.open(file_name) do &#124;file&#124; while (line = file.gets) line.chomp! if line =~ /Serial/ line =~ /(\s*?)(\d+)(\s*?)(;.*)/ serial = $2.to_i serial += 1 puts "#{file_name} serial [...]]]></description>
			<content:encoded><![CDATA[<p>Argh. 30+ zone files and I have to increment all numbers by hand&#8230;no way.</p>
<p>Usage:  ./inc.rb in the current directory with all db files.</p>
<pre>#!/usr/bin/ruby

Dir.glob("*.db") do |file_name|
 new_zone = []<span id="more-1334"></span>
 File.open(file_name) do |file|
 while (line = file.gets)
 line.chomp!
 if line =~ /Serial/
 line =~ /(\s*?)(\d+)(\s*?)(;.*)/
 serial = $2.to_i
 serial += 1
 puts "#{file_name} serial line:  #{$1} #{$2} #{$3} #{$4} -&gt; #{$1}#{serial}#{$3}#{$4}"
 line = "#{$1}#{serial}#{$3}#{$4}"
 end
 new_zone &lt;&lt; line
 end
 end

 File.open(file_name, "w") do |new_file|
 new_file.write(new_zone.join("\n"));
 end
end</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/administration-linux/09/02/1334/autoicrement-the-serial-in-bind-zone-files/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPS in Bulgaria</title>
		<link>http://www.gudasoft.com/uncategorized/09/01/1304/gps-in-bulgaria/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/09/01/1304/gps-in-bulgaria/2010#comments</comments>
		<pubDate>Wed, 01 Sep 2010 19:02:32 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gps]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1304</guid>
		<description><![CDATA[Използване на GPS системите на Webeye Малко реклама: Имам приятел, който е собсвеник на транспортно-логистична фирма.  Той имаше проблем с шофьорите си, които си правеха делавери с горивото на негов гръб. За да си реши проблема и да има стриктен контрол той реши да използва GPS системи за проследяване, мониторинг и контрол. Много се чуди [...]]]></description>
			<content:encoded><![CDATA[<p>Използване на GPS системите на Webeye</p>
<p>Малко реклама:</p>
<p>Имам приятел, който е собсвеник на транспортно-логистична фирма.  Той имаше проблем с шофьорите си, които си правеха делавери с горивото на негов гръб. За да си реши проблема и да има стриктен контрол той реши да използва <a href="http://www.webeye.bg/">GPS системи</a> за проследяване, мониторинг и контрол.</p>
<p><span id="more-1304"></span></p>
<p>Много се чуди кой продукт да избере и след дълго проучване се спря на Webeye от които е много доволен. GPS системите на Webeye оправдаха неговите очаквания, първо защото системата позволява да се наблюдава всяко превозно средство и всяка точка от маршрута: тръгване, спиране, напускане на дадения обект, както и да контролира нивото на горивото, което включва измерване, презареждане и потреблението по време на път. По този начин имаше подробна информация за дейността на водача. В крайна сметка човека успя да постигне това което искаше, с което си спести доста излишни разходи.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/09/01/1304/gps-in-bulgaria/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireframing for faster website development</title>
		<link>http://www.gudasoft.com/english/development/08/29/1323/wireframing-for-faster-website-development/2010</link>
		<comments>http://www.gudasoft.com/english/development/08/29/1323/wireframing-for-faster-website-development/2010#comments</comments>
		<pubDate>Sun, 29 Aug 2010 18:55:47 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1323</guid>
		<description><![CDATA[I have tried the approach listed in &#8220;Getting Real&#8221; by 37signals and I have great results. The client was very happy because he can imagine his website. Now I am considering to buy or make such nice tools :) http://www.uistencils.com/website-stencil-kit.html 1. Pencil Pencil (free) is a Firefox plugin that professes to enable you to build [...]]]></description>
			<content:encoded><![CDATA[<p>I have tried the approach listed in &#8220;Getting Real&#8221; by 37signals and I have great results.</p>
<p>The client was  very happy because he can imagine his website.</p>
<p>Now I am considering to buy or make such nice tools :)</p>
<p>http://www.uistencils.com/website-stencil-kit.html</p>
<p><img class="alignnone" src="http://cdn.shopify.com/s/files/1/0042/9602/products/android-cover-2.jpg?1282832512" alt="" width="225" height="302" /><img class="alignnone" src="http://cdn.shopify.com/s/files/1/0042/9602/products/ipad-main-1.jpg?1282832512" alt="" width="225" height="302" /><img class="alignnone" src="http://cdn.shopify.com/s/files/1/0042/9602/products/iphone_1.jpg?1282832512" alt="" width="225" height="302" /></p>
<h5>1. Pencil</h5>
<p><a href="http://www.evolus.vn/Pencil/">Pencil</a> (free) is a Firefox plugin that professes to enable you to build  wireframes and prototypes. As a prototyping tool it’s quite good,  allowing you to quickly put together a reasonably high fidelity mockup.  However, be aware you’ll still need to produce the visual design  elements for Pencil, as it relies on dragging and dropping pre-made  graphical elements.</p>
<p>The output wireframe elements that ship with Pencil do tend to be  based on the look and feel of a Windows desktop application. This really  is undesirable for a web application, however you could modify this  with your own page elements.</p>
<p>Another downside of Pencil is that its export functionality provides  only a few image formats. This means that Pencil falls short of being a  real interactive prototype development tool.</p>
<h5>Balsamiq Mockups</h5>
<p><a href="http://www.balsamiq.com/products/mockups">Balsamiq Mockups</a> (price:$US79, demo available) is an interesting product running on  Adobe AIR. Its representation of the interface elements has a refreshing  hand-drawn, sketch-like quality to them. This does help promote the  degree of changeability of the wireframes, as they look very much like a  draft. If you lack the skills to create hand-drawn sketches then  Balsamiq is a useful tool, as it allows you to produce quality roughs.  Balsamiq also offers a standard collection of interactive screen  elements, which is helpful to start off with.</p>
<p>http://gomockingbird.com/ is like balsamia</p>
<p>https://www.jumpchart.com/ &#8211; for very simple pages- I cant find how to change the layout.</p>
<p>Denim</p>
<p>A java based.</p>
<p><a rel="nofollow" href="http://dub.washington.edu:2007/denim/">http://dub.washington.edu:2007/denim/</a></p>
<p>Eclipse based plugin &#8211; http://wireframesketcher.com/</p>
<p>And a nice topic in stackoverflow http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/08/29/1323/wireframing-for-faster-website-development/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software development</title>
		<link>http://www.gudasoft.com/english/development/08/28/1316/software-development/2010</link>
		<comments>http://www.gudasoft.com/english/development/08/28/1316/software-development/2010#comments</comments>
		<pubDate>Sat, 28 Aug 2010 20:36:49 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1316</guid>
		<description><![CDATA[After my blog post about the junior software developers I have very bright idea of how the world could get benefit from them. When you catch a junior in mistake &#8211; let him contribute to the open source community. Not with coding. With translating. Take some open project and translate it to your native language. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gudasoft.com/wp-content/uploads/2010/08/medical-coder.jpg"><img class="alignleft size-thumbnail wp-image-1320" title="medical coder" src="http://www.gudasoft.com/wp-content/uploads/2010/08/medical-coder-150x150.jpg" alt="" width="103" height="103" /></a>After my blog post <a href="http://www.gudasoft.com/english/development/07/24/1292/hiring-juniors/2010">about the junior software developers</a> I have very bright idea of how the world could get benefit from them.</p>
<p>When you catch a junior in mistake &#8211; let him contribute to the open source community. Not with coding. With translating. Take some open project and translate it to your native language.</p>
<p>Maybe after all the junior will release that he is much happier to translate than coding :)</p>
<p>win-win condition.</p>
<p>N.B. On the picture &#8211; Young coder is coding in Word.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/08/28/1316/software-development/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hash to encode iso-8859-1 (western) to html entities</title>
		<link>http://www.gudasoft.com/english/development/08/25/1314/hash-to-encode-iso-8859-1-western-to-html-entities/2010</link>
		<comments>http://www.gudasoft.com/english/development/08/25/1314/hash-to-encode-iso-8859-1-western-to-html-entities/2010#comments</comments>
		<pubDate>Wed, 25 Aug 2010 11:05:12 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[encoding]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1314</guid>
		<description><![CDATA[ENTITIES = { 'À' =&#62; '&#38;#192;', 'Á' =&#62; '&#38;#193;', 'Â' =&#62; '&#38;#194;', 'Ã' =&#62; '&#38;#195;', 'Ä' =&#62; '&#38;#196;', 'Å' =&#62; '&#38;#197;', 'Æ' =&#62; '&#38;#198;', 'Ç' =&#62; '&#38;#199;', 'È' =&#62; '&#38;#200;', 'É' =&#62; '&#38;#201;', 'Ê' =&#62; '&#38;#202;', 'Ë' =&#62; '&#38;#203;', 'Ì' =&#62; '&#38;#204;', 'Í' =&#62; '&#38;#205;', 'Î' =&#62; '&#38;#206;', 'Ï' =&#62; '&#38;#207;', 'Ð' =&#62; '&#38;#208;', 'Ñ' [...]]]></description>
			<content:encoded><![CDATA[<pre>ENTITIES = {
 'À' =&gt; '&amp;#192;',
 'Á' =&gt; '&amp;#193;',
 'Â' =&gt; '&amp;#194;',<span id="more-1314"></span>
 'Ã' =&gt; '&amp;#195;',
 'Ä' =&gt; '&amp;#196;',
 'Å' =&gt; '&amp;#197;',
 'Æ' =&gt; '&amp;#198;',
 'Ç' =&gt; '&amp;#199;',
 'È' =&gt; '&amp;#200;',
 'É' =&gt; '&amp;#201;',
 'Ê' =&gt; '&amp;#202;',
 'Ë' =&gt; '&amp;#203;',
 'Ì' =&gt; '&amp;#204;',
 'Í' =&gt; '&amp;#205;',
 'Î' =&gt; '&amp;#206;',
 'Ï' =&gt; '&amp;#207;',
 'Ð' =&gt; '&amp;#208;',
 'Ñ' =&gt; '&amp;#209;',
 'Ò' =&gt; '&amp;#210;',
 'Ó' =&gt; '&amp;#211;',
 'Ô' =&gt; '&amp;#212;',
 'Õ' =&gt; '&amp;#213;',
 'Ö' =&gt; '&amp;#214;',
 'Ø' =&gt; '&amp;#216;',
 'Ù' =&gt; '&amp;#217;',
 'Ú' =&gt; '&amp;#218;',
 'Û' =&gt; '&amp;#219;',
 'Ü' =&gt; '&amp;#220;',
 'Ý' =&gt; '&amp;#221;',
 'Þ' =&gt; '&amp;#222;',
 'ß' =&gt; '&amp;#223;',
 'à' =&gt; '&amp;#224;',
 'á' =&gt; '&amp;#225;',
 'â' =&gt; '&amp;#226;',
 'ã' =&gt; '&amp;#227;',
 'ä' =&gt; '&amp;#228;',
 'å' =&gt; '&amp;#229;',
 'æ' =&gt; '&amp;#230;',
 'ç' =&gt; '&amp;#231;',
 'è' =&gt; '&amp;#232;',
 'é' =&gt; '&amp;#233;',
 'ê' =&gt; '&amp;#234;',
 'ë' =&gt; '&amp;#235;',
 'ì' =&gt; '&amp;#236;',
 'í' =&gt; '&amp;#237;',
 'î' =&gt; '&amp;#238;',
 'ï' =&gt; '&amp;#239;',
 'ð' =&gt; '&amp;#240;',
 'ñ' =&gt; '&amp;#241;',
 'ò' =&gt; '&amp;#242;',
 'ó' =&gt; '&amp;#243;',
 'ô' =&gt; '&amp;#244;',
 'õ' =&gt; '&amp;#245;',
 'ö' =&gt; '&amp;#246;',
 'ø' =&gt; '&amp;#248;',
 'ù' =&gt; '&amp;#249;',
 'ú' =&gt; '&amp;#250;',
 'û' =&gt; '&amp;#251;',
 'ü' =&gt; '&amp;#252;',
 'ý' =&gt; '&amp;#253;',
 'þ' =&gt; '&amp;#254;',
 'ÿ' =&gt; '&amp;#255;',

 =&gt; '&amp;#160;',
 '¡' =&gt; '&amp;#161;',
 '¢' =&gt; '&amp;#162;',
 '£' =&gt; '&amp;#163;',
 '¤' =&gt; '&amp;#164;',
 '¥' =&gt; '&amp;#165;',
 '¦' =&gt; '&amp;#166;',
 '§' =&gt; '&amp;#167;',
 '¨' =&gt; '&amp;#168;',
 '©' =&gt; '&amp;#169;',
 'ª' =&gt; '&amp;#170;',
 '«' =&gt; '&amp;#171;',
 '¬' =&gt; '&amp;#172;',
 ­    =&gt; '&amp;#173;',
 '®' =&gt; '&amp;#174;',
 '¯' =&gt; '&amp;#175;',
 '°' =&gt; '&amp;#176;',
 '±' =&gt; '&amp;#177;',
 '²' =&gt; '&amp;#178;',
 '³' =&gt; '&amp;#179;',
 '´' =&gt; '&amp;#180;',
 'µ' =&gt; '&amp;#181;',
 '¶' =&gt; '&amp;#182;',
 '·' =&gt; '&amp;#183;',
 '¸' =&gt; '&amp;#184;',
 '¹' =&gt; '&amp;#185;',
 'º' =&gt; '&amp;#186;',
 '»' =&gt; '&amp;#187;',
 '¼' =&gt; '&amp;#188;',
 '½' =&gt; '&amp;#189;',
 '¾' =&gt; '&amp;#190;',
 '¿' =&gt; '&amp;#191;',
 '×' =&gt; '&amp;#215;',
 '÷' =&gt; '&amp;#247;',
 }
</pre>
<p>check more here http://www.elizabethcastro.com/html/extras/entities.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/08/25/1314/hash-to-encode-iso-8859-1-western-to-html-entities/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Rails going down?</title>
		<link>http://www.gudasoft.com/english/development/rails-development/08/23/1312/is-rails-going-down/2010</link>
		<comments>http://www.gudasoft.com/english/development/rails-development/08/23/1312/is-rails-going-down/2010#comments</comments>
		<pubDate>Mon, 23 Aug 2010 17:21:14 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1312</guid>
		<description><![CDATA[The first Rails framework was fast. then it become slow, big and the idea of convetion over configuration becomes more poisoned. Currently to start with Rails you have to learn a lot of stuff which are added just now and is not sure how long they will stay. Also Rails is not targeting the developers [...]]]></description>
			<content:encoded><![CDATA[<p>The first Rails framework was fast. then it become slow, big and the idea of convetion over configuration becomes more poisoned.</p>
<p>Currently to start with Rails you have to learn a lot of stuff which are added just now and is not sure how long they will stay.</p>
<p>Also Rails is not targeting the developers to be fast but is targeting to be the perfect framework.</p>
<p>The price for that is that almost a year and a half there is no new version while the they refactor it.</p>
<p>No goodies like scafolding, only enterprise stuff around.</p>
<p>That is my personal opinion on this framework.</p>
<p>As I like to say &#8211; you cant leave your followers without food for such long time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/rails-development/08/23/1312/is-rails-going-down/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piece of wizdom</title>
		<link>http://www.gudasoft.com/english/development/rails-development/08/22/1310/piece-of-wizdom/2010</link>
		<comments>http://www.gudasoft.com/english/development/rails-development/08/22/1310/piece-of-wizdom/2010#comments</comments>
		<pubDate>Sun, 22 Aug 2010 06:54:49 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1310</guid>
		<description><![CDATA[The original code &#60;%= select(&#8220;city&#8221;,&#8221;kind&#8221;, t(:place_types).map.map!.each{&#124;key, value&#124; [value, key]}, {:include_blank =&#62; t(:chose), :selected =&#62; @city.kind}) %&#62; The bad code t(:place_types).map.map!.each{&#124;key, value&#124; [value, key]}, {:include_blank =&#62; t(:chose), :selected =&#62; @city.kind}) the replacement key_values = t(:place_types).collect{&#124;key, value&#124; [value.to_s, key.to_s, ]} Rails.ouch.ouch.omg!]]></description>
			<content:encoded><![CDATA[<p>The original code</p>
<p>&lt;%= select(&#8220;city&#8221;,&#8221;kind&#8221;, t(:place_types).map.map!.each{|key, value| [value, key]}, {:include_blank =&gt; t(:chose), :selected =&gt; @city.kind}) %&gt;</p>
<p>The bad code</p>
<p>t(:place_types).map.map!.each{|key, value| [value, key]}, {:include_blank =&gt; t(:chose), :selected =&gt; @city.kind})</p>
<p>the replacement</p>
<p>key_values = t(:place_types).collect{|key, value| [value.to_s, key.to_s, ]}</p>
<p>Rails.ouch.ouch.omg!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/rails-development/08/22/1310/piece-of-wizdom/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Questions From Modern Web Designers: Answered</title>
		<link>http://www.gudasoft.com/english/development/08/20/1306/10-questions-from-modern-web-designers-answered/2010</link>
		<comments>http://www.gudasoft.com/english/development/08/20/1306/10-questions-from-modern-web-designers-answered/2010#comments</comments>
		<pubDate>Fri, 20 Aug 2010 05:28:04 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1306</guid>
		<description><![CDATA[This article is talking on designers but I think most of the things there apply for coders also. If you read it now and get it &#8211; you will be ok, else you will learn all those rules by own in the future. Read the full article here&#8230; http://www.onextrapixel.com/2010/08/18/10-questions-from-modern-web-designers-answered/comment-page-1/#comment-7981]]></description>
			<content:encoded><![CDATA[<p>This article is talking on designers but I think most of the things there apply for coders also.</p>
<p>If you read it now and get it &#8211; you will be ok, else you will learn all those rules by own in the future.</p>
<p>Read the full article here&#8230;</p>
<p>http://www.onextrapixel.com/2010/08/18/10-questions-from-modern-web-designers-answered/comment-page-1/#comment-7981</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/08/20/1306/10-questions-from-modern-web-designers-answered/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Logic and whats wrong with it</title>
		<link>http://www.gudasoft.com/english/development/rails-development/07/31/1300/search-logic-and-whats-wrong-with-it/2010</link>
		<comments>http://www.gudasoft.com/english/development/rails-development/07/31/1300/search-logic-and-whats-wrong-with-it/2010#comments</comments>
		<pubDate>Sat, 31 Jul 2010 19:16:29 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1300</guid>
		<description><![CDATA[The idea of the Searchlogic is to save you time and give flexibility. The first time I saw this gem  I was very excited about it. With only a few lines of code an you have the whole search done. I have start using it. Once I want to apply it to a complicated search. [...]]]></description>
			<content:encoded><![CDATA[<p>The idea of the <a href="http://github.com/binarylogic/searchlogic">Searchlogic</a> is to save you time and give flexibility.</p>
<p>The first time I saw this gem  I was very excited about it.</p>
<p>With only a few lines of code an you have the whole search done. I have start using it.</p>
<p>Once I want to apply it to a complicated search. The problem was that I have to write more code and &#8220;patches&#8221; in order to keep the Searchlogic working&#8230;.</p>
<p>So my advice is &#8211; don&#8217;t use such boosters if you can apply your own solution. There will be aways a time when you want to extend your search and you will loose a lot of time search how to do it with the 3rd party solution.</p>
<p>Do it yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/rails-development/07/31/1300/search-logic-and-whats-wrong-with-it/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How share your screen via skype</title>
		<link>http://www.gudasoft.com/uncategorized/07/26/1298/how-share-your-screen-via-skype/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/07/26/1298/how-share-your-screen-via-skype/2010#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:22:51 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1298</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-hPQhldDhRY&amp;hl=en_US&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/-hPQhldDhRY&amp;hl=en_US&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/07/26/1298/how-share-your-screen-via-skype/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hiring Juniors</title>
		<link>http://www.gudasoft.com/english/development/07/24/1292/hiring-juniors/2010</link>
		<comments>http://www.gudasoft.com/english/development/07/24/1292/hiring-juniors/2010#comments</comments>
		<pubDate>Sat, 24 Jul 2010 16:02:31 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1292</guid>
		<description><![CDATA[Starting a company or a team If you think that by hiring juniors you will save money and will get working application &#8211; you are wrong. You will loose much more than money. Yes they are low cost, but read the rest of the post to be not tricked. Forget for nice and reliable code [...]]]></description>
			<content:encoded><![CDATA[<h2>Starting a company or a team</h2>
<p>If you think that by hiring juniors you will save money and will get working application &#8211; you are wrong.<br />
You will loose much more than money.</p>
<p>Yes they are low cost, but read the rest of the post to be not tricked.<span id="more-1292"></span></p>
<h3>Forget for nice and reliable code</h3>
<p>Most of  the time the developing is done by using some standard patterns which  the experienced developers apply without even thinking. You don&#8217;t have this from a junior &#8211; you will have &#8220;private&#8221; code which in the best case will NOT work. In the worst case it will work only in one way and you will have to fix this code at the end of the project when your time is less. DO NOT give them to commit code &#8211; leave them for years working the most misarable work that you can find untill they show that they deserve to trust them.</p>
<h3>Rewrite their code</h3>
<p>Most of them produce code that have to been rewritten. All the code they  write is code that is invented. They hope their code will work but  their vision is limited because of their experience.  To know where  might your code will fail you have to been working for years in this  field.</p>
<p>If a developer writes a code the chance that it will be ideologically wrong is very small. But if a junior write a code &#8211; then be prepared to rewrite big portions of your application. Things get worse when you discover this late &#8211; near the time your customer waits his applications.</p>
<h3>Good working environment</h3>
<p>They take the power from the experienced developers by asking them questions. And instead your powerful developers to work at full power they get distracted from work and the those with the leak souls start to believe that they are The One (by answering easy questions from the newbies). Your good developers will become like the juniors.</p>
<h3>Prestige of the company</h3>
<p>If you work in a company which have a name &#8211; imagine what will other think if some junior says that he learned this (code) in your company!</p>
<h3>You are responsible for them</h3>
<p>If something breaks -  you are the one which is responsible for their actions.</p>
<p>I have been working with juniors for 2 years before I realize that this is not working. In case you have already juniors &#8211; make them suffer until they go away or become real pro :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/07/24/1292/hiring-juniors/2010/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to access a server via sftp with ssh tunnel</title>
		<link>http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010</link>
		<comments>http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010#comments</comments>
		<pubDate>Tue, 29 Jun 2010 08:18:38 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1260</guid>
		<description><![CDATA[Here is what we want to do We have the following case: Developer workstation windows with putty Spider.bg &#8211; a host which has access to the www.psspy.se server www.psspy.se &#8211; firewalled host &#8211; we want to put files here via sftp What we want to do is to use spider.bg host as a proxy and [...]]]></description>
			<content:encoded><![CDATA[<p>Here is what we want to do</p>
<p>We have the following case:</p>
<p>Developer workstation windows with putty</p>
<p>Spider.bg &#8211; a host which has access to the www.psspy.se server</p>
<p>www.psspy.se &#8211; firewalled host &#8211; we want to put files here via sftp</p>
<p>What we want to do is to use spider.bg host as a proxy and connect to the psspy.se machine.</p>
<p>Tools that are used -</p>
<ul>
<li>download putty from <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">here</a></li>
<li>winscp &#8211; <a href="http://winscp.net/eng/download.php" target="_blank">http://winscp.net/eng/download.php</a></li>
</ul>
<p>Here are the screenshots with the steps &#8230;.</p>
<p><span id="more-1260"></span>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-0' title='step-0'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-0-150x150.jpg" class="attachment-thumbnail" alt="step-0" title="step-0" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-1' title='step-1'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-1-150x150.jpg" class="attachment-thumbnail" alt="step-1" title="step-1" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-2' title='step-2'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-2-150x150.jpg" class="attachment-thumbnail" alt="step-2" title="step-2" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-3' title='step-3'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-3-150x150.jpg" class="attachment-thumbnail" alt="step-3" title="step-3" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-4' title='step-4'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-4-150x150.jpg" class="attachment-thumbnail" alt="step-4" title="step-4" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-5' title='step-5'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-5-150x150.jpg" class="attachment-thumbnail" alt="step-5" title="step-5" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-6' title='step-6'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-6-150x150.jpg" class="attachment-thumbnail" alt="step-6" title="step-6" /></a>
<a href='http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/attachment/step-7' title='step-7'><img width="150" height="150" src="http://www.gudasoft.com/wp-content/uploads/2010/06/step-7-150x150.jpg" class="attachment-thumbnail" alt="step-7" title="step-7" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/administration-linux/06/29/1260/how-to-access-a-server-via-sftp-with-ssh-tunnel/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount a key on a Lenovo keyboard</title>
		<link>http://www.gudasoft.com/uncategorized/06/02/1252/mount-a-key-on-a-lenovo-keyboard/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/06/02/1252/mount-a-key-on-a-lenovo-keyboard/2010#comments</comments>
		<pubDate>Wed, 02 Jun 2010 14:56:25 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1252</guid>
		<description><![CDATA[It was really tricky. To get the key out I have to pull it stright away with one screwdriver. But when I have to mount it back &#8211; it was nightmare!!!! Those keyboards are getting really challenge. I can&#8217;t imagine how a kid will repair his keyboard in 2019 year. So&#8230;.The for me it was [...]]]></description>
			<content:encoded><![CDATA[<p>It was really tricky. To get the key out I have to pull it stright away with one screwdriver. But when I have to mount it back &#8211; it was nightmare!!!!</p>
<p>Those keyboards are getting really challenge. I can&#8217;t imagine how a kid will repair his keyboard in 2019 year.</p>
<p>So&#8230;.The for me it was really easy if because I have found this post <a href="http://rashbre2.blogspot.com/2007/11/repair-thinkpads-missing-key.html">here</a>.</p>
<ol>
<li>find a way to <a href="http://linux.about.com/library/gnome/blgnome4n6b.htm">lock your screen</a></li>
<li>mount the parts on the keyboard! not on the key</li>
<li>Make sure that the little part of the deck-chair is mounted on first on the bottom parts of the laptop keyboard
<ol>
<li>slide it from top to bottom to hold it firmly</li>
</ol>
</li>
<li>The big part of the deck-chair will lie on top of the laptop keyboard mount. Then with shrink it a little so that it falls in the holes bellow</li>
<li>Next the put the key ontop of the already mounted deck-chair. but not exactly on top but a little bellow the middle point in a way that you can slip to down and above. This way the key will get mounted on the deck-chair (lower part). Next press it down to stick firmly the top part of the deck-chair.</li>
</ol>
<p>Here is the picture of the Lenovo Y510.</p>
<p><a href="http://www.gudasoft.com/wp-content/uploads/2010/06/DSC01494.jpg"><img class="aligncenter size-medium wp-image-1256" title="DSC01494" src="http://www.gudasoft.com/wp-content/uploads/2010/06/DSC01494-1024x768.jpg" alt="" width="570" height="427" /></a></p>
<p><a href="http://www.gudasoft.com/wp-content/uploads/2010/06/DSC01494.jpg"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/06/02/1252/mount-a-key-on-a-lenovo-keyboard/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing article with SEO rules</title>
		<link>http://www.gudasoft.com/english/seo/05/26/1248/publishing-article-with-seo-rules/2010</link>
		<comments>http://www.gudasoft.com/english/seo/05/26/1248/publishing-article-with-seo-rules/2010#comments</comments>
		<pubDate>Wed, 26 May 2010 12:38:05 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1248</guid>
		<description><![CDATA[As I want to keep this post secret as possible I will not follow those rules here :) which keywords I need to have into the title of the article which additional keywords I need to have into the subtitle which text I want to promote to Heading or make it strong check the most [...]]]></description>
			<content:encoded><![CDATA[<p>As I want to keep this post secret as possible I will not follow those rules here :)</p>
<ol>
<li>which keywords I need to have into the title of the article</li>
<li>which additional keywords I need to have into the subtitle</li>
<li>which text I want to promote to Heading or make it strong</li>
<li>check the most important text in the article that has nice keyword  density around my important information.</li>
<li>if there are abbreviations &#8211; add the acronym tag to describe them.</li>
<li>all images should have nice alt/title/file name text, When  possible add link to the image to relevant information.</li>
<li>links:
<ol>
<li>which are my important links (containing keywords)</li>
<li>which links should be interesting to be linked on psspy/dagens archive for  more news</li>
<li>does all links have title / alt tags, what keywords can I add  there?</li>
</ol>
</li>
<li>do I want to provide a box with related news on this article</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/seo/05/26/1248/publishing-article-with-seo-rules/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auch &#8211; PHP</title>
		<link>http://www.gudasoft.com/uncategorized/05/21/1246/auch-php/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/05/21/1246/auch-php/2010#comments</comments>
		<pubDate>Fri, 21 May 2010 11:16:39 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1246</guid>
		<description><![CDATA[WTF?! PHP use one standard but those Symfony guys use another?! You may wonder why the helpers are named according to the underscore syntax rather than the camelCase convention, used everywhere else in symfony. This is because helpers are functions, and all the core PHP functions use the underscore syntax convention. ref: http://www.symfony-project.org/book/1_0/07-Inside-the-View-Layer#chapter_07_sub_helpers]]></description>
			<content:encoded><![CDATA[<p>WTF?!</p>
<p>PHP use one standard but those Symfony guys use another?!</p>
<blockquote><p>You may wonder why the helpers are named according to the underscore  syntax rather than the camelCase convention, used everywhere else in  symfony. This is because helpers are functions, and all the core PHP  functions use the underscore syntax convention.<br />
ref: http://www.symfony-project.org/book/1_0/07-Inside-the-View-Layer#chapter_07_sub_helpers</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/05/21/1246/auch-php/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argh&#8230;this rmagick gem &#8211; aways difficult to install/maintain.</title>
		<link>http://www.gudasoft.com/english/development/05/11/1241/god-bless-google/2010</link>
		<comments>http://www.gudasoft.com/english/development/05/11/1241/god-bless-google/2010#comments</comments>
		<pubDate>Tue, 11 May 2010 14:12:28 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1241</guid>
		<description><![CDATA[I have recently upgraded to Ubuntu 10.04 and I got this nasty rmagick gem error: RMagick2.so: This installation of RMagick was configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. (RuntimeError) google for This installation of RMagick was configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. (RuntimeError) then found this page in [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently upgraded to Ubuntu 10.04 and I got this nasty rmagick gem error:</p>
<p>RMagick2.so: This installation of RMagick was configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. (RuntimeError)</p>
<p>google for <a href="http://www.google.com/search?hl=en&amp;q=t++This+installation+of+RMagick+was+configured+with+ImageMagick+6.5.5+but+ImageMagick+6.5.7-8+is+in+use.+%28RuntimeError%29&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=&amp;gs_rfai=">This installation of RMagick was configured with ImageMagick 6.5.5 but ImageMagick 6.5.7-8 is in use. (RuntimeError)</a></p>
<p>then found <a href="http://uperro.blogspot.com/2010/05/after-upgrading-ubuntu-904-to-1004-lts.html">this page</a> in mixed English/Chinees</p>
<p>and finally got a <a href="http://adelio.org/redmine-lauft-nach-upgrade-auf-ubuntu-10-04-lucid-lynx-nicht-mehr/comment-page-1/">page</a> in German :)</p>
<p>Then I decide to write this post in English and slightly modify the solution</p>
<p>instead of putting</p>
<p>RMAGICK_BYPASS_VERSION_TEST = true in the deploy.rb</p>
<p>I have put this in the development.rb</p>
<p>and all it works &#8211; this way on the production I will be forced to use real compatible library or at least check again for another solution or gem.</p>
<p>AUCH! This solution doesn&#8217;t work even in development I got weird core dumps :( &#8230;so here it is another try</p>
<h1>Here is the real working  solution:</h1>
<pre>su -
git clone http://github.com/rmagick/rmagick.git
cd rmagick/
ruby setup.rb
ruby setup.rb  install</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/05/11/1241/god-bless-google/2010/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to turn your free client to a payed one</title>
		<link>http://www.gudasoft.com/uncategorized/04/29/1239/how-to-turn-your-free-client-to-a-payed-one/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/04/29/1239/how-to-turn-your-free-client-to-a-payed-one/2010#comments</comments>
		<pubDate>Thu, 29 Apr 2010 09:55:05 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1239</guid>
		<description><![CDATA[Very good examples of phrases like ‘If you’d like me to do that for you, I charge $XXX/hour.’ ‘I can spend ten minutes with you, and if you require more assistance I will be glad to schedule a consultation at my regular rates.’ ‘You do know that we just crossed into paid time?’ he asked. [...]]]></description>
			<content:encoded><![CDATA[<p>Very good examples of phrases like</p>
<ul>
<li>‘If you’d like me to do that for you, I charge $XXX/hour.’</li>
<li>‘I can spend ten minutes with you, and if you require more assistance I will be glad to schedule a consultation at my regular rates.’</li>
<li>‘You do know that we just crossed into paid time?’ he asked. ‘Oh, yes,’ the prospect said</li>
</ul>
<p>read the full article here &gt;</p>
<p>http://freelanceswitch.com/freelancing-essentials/turn-free-advice-into-clients/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/04/29/1239/how-to-turn-your-free-client-to-a-payed-one/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice code</title>
		<link>http://www.gudasoft.com/english/development/rails-development/04/20/1237/nice-code/2010</link>
		<comments>http://www.gudasoft.com/english/development/rails-development/04/20/1237/nice-code/2010#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:51:35 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1237</guid>
		<description><![CDATA[I have just finished one method and I was not happy with the code. Then I put a comment on top of the method &#8220;Far from perfect&#8230;.&#8221;. Then I read the class &#8211; it was ugly. here is the before def validate return if is_email == false found = InternetComunicatorType.find(:first, :conditions =&#62; { :is_email =&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>I have just finished one method and I was not happy with the code. Then I put a comment on top of the method &#8220;Far from perfect&#8230;.&#8221;.</p>
<p>Then I read the class &#8211; it was ugly.</p>
<p>here is the before</p>
<pre>def validate
 return if is_email == false
 found = InternetComunicatorType.find(:first, :conditions =&gt; {
 :is_email =&gt; true,
 })

 return unless found

 if found.id != id
 errors.add(:is_email, "We have already email type")
 return
 end
end
</pre>
<p>here is the after</p>
<pre>def validate
  if is_email
    found = InternetComunicatorType.find(:first, :conditions =&gt; {
      :is_email =&gt; true,
    })

    if found and found.id != id
      errors.add(:is_email, "We have already email type")
    end
  end
end</pre>
<p>The result is much far readable</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/rails-development/04/20/1237/nice-code/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mongoid presentations</title>
		<link>http://www.gudasoft.com/english/development/04/15/1235/mongoid-presentations/2010</link>
		<comments>http://www.gudasoft.com/english/development/04/15/1235/mongoid-presentations/2010#comments</comments>
		<pubDate>Thu, 15 Apr 2010 19:54:10 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[mongoid]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1235</guid>
		<description><![CDATA[When starting with mongoid I have missed a lot some demo source code. How it works with controllers, does it plays nice with nested attributes, such things. Here is presentation of mongo  and here are some slides]]></description>
			<content:encoded><![CDATA[<p>When starting with mongoid I have missed a lot some demo source code.</p>
<p>How it works with controllers, does it plays nice with nested attributes, such things.</p>
<p>Here is <a href="http://vimeo.com/9864311">presentation</a> of mongo  and here are <a href="http://www.slideshare.net/jsmestad/mongodb-mongoid-with-rails">some slides</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/04/15/1235/mongoid-presentations/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mongoid</title>
		<link>http://www.gudasoft.com/english/development/rails-development/04/01/1233/mongoid/2010</link>
		<comments>http://www.gudasoft.com/english/development/rails-development/04/01/1233/mongoid/2010#comments</comments>
		<pubDate>Thu, 01 Apr 2010 19:09:12 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1233</guid>
		<description><![CDATA[I writing this post for those who start using Mongo in their rails applications. I want to share my experience. First I discovered mongoid but then i saw mongo_mapper  &#8211; so I decide to go with the crowd. But! I was wrong. I there is no documentation for mongo_mapper but some blog posts arround, the [...]]]></description>
			<content:encoded><![CDATA[<p>I writing this post for those who start using Mongo in their rails applications. I want to share my experience. First I discovered mongoid but then i saw mongo_mapper  &#8211; so I decide to go with the crowd. But! I was wrong. I there is no documentation for mongo_mapper but some blog posts arround, the examples are not aways working and you have to fight with all the code &#8211; I don&#8217;t maybe I have found some old documentation. When you dive in the code &#8211; again no documentation and not clear behaviour. Maybe it is a good solution but for me it doesn&#8217;t work. I lost 1.5 days experimenting and hoping that the things will go.</p>
<p>Then I give a try with mongoid. It has wonderfull <a href="http://mongoid.org/docs/associations">documentation</a> for starters also it seems at first glance that the code in mongoid is more readably and human friendly. It took me 2hours to port all my models to mongoid.</p>
<p>The guy developing mongoid seems pretty active.</p>
<p>last words &#8211; it is pleasure to work with mongoid &#8211; I recommend it to all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/rails-development/04/01/1233/mongoid/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
