<?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 &#187; Development</title>
	<atom:link href="http://www.gudasoft.com/tag/development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gudasoft.com</link>
	<description>Impossible is nothing</description>
	<lastBuildDate>Thu, 06 Oct 2011 07:17:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Managing your own ads/blocks with OpenAds</title>
		<link>http://www.gudasoft.com/wwwcenitecom/03/15/586/managing-your-own-adsblocks-with-openads/2009</link>
		<comments>http://www.gudasoft.com/wwwcenitecom/03/15/586/managing-your-own-adsblocks-with-openads/2009#comments</comments>
		<pubDate>Sun, 15 Mar 2009 10:12:06 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[www.cenite.com]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=586</guid>
		<description><![CDATA[I want to track my own blocks of banners with OpenAds. Also those blocks must be embeded in the page &#8211; so iframe is not a solution. What I want is to have OpenAds to trigger and decide which ads block to display. What I have done is to create a text add , take [...]]]></description>
			<content:encoded><![CDATA[<p>I want to track my own blocks of banners with OpenAds.</p>
<p>Also those blocks must be embeded in the page &#8211; so iframe is not a solution.</p>
<p>What I want is to have OpenAds to trigger and decide which ads block to display.</p>
<p>What I have done is to create a <em>text add , </em>take the local (php) invocation code and put it in the place where the add will be displayed. Also I have made some modifications in the original include PHP code &#8211; strip the escaping and keeping the tracking html code.</p>
<pre>&lt;?php
  //&lt;!--/* OpenX Local Mode Tag v2.6.4 */--&gt;

  define('MAX_PATH', '/home/domains/guda/ads/openx-2.6.4');

  if (@include_once(MAX_PATH . '/www/delivery/alocal.php')) {
    if (!isset($phpAds_context)) {
      $phpAds_context = array();
    }
    $phpAds_raw = view_local('', 4, 0, 0, '', '', '0', $phpAds_context, '');
  }

 if (!empty($phpAds_raw['html'])) {
	$openx_tracking = "";
	$code = preg_replace_callback('/(&lt;div.*?&lt;\/div&gt;)/', create_function(
			'$matches',
			'global $openx_tracking; $openx_tracking = $matches[0];  return "";'
		), $phpAds_raw['html']);

	$code = html_entity_decode($code, ENT_QUOTES);

	ob_start();
	$payed_company = array();
	eval($code);
	$my_own_content = ob_get_contents();
	ob_end_clean();

	echo $my_own_content;
	echo $openx_tracking;
  }
?&gt;</pre>
<p>Notice that the code is slightly changed.</p>
<p>And here is the <em>text Ad </em>content:</p>
<pre>$payed_company = array("id" =&gt; "3617", "title" =&gt; '', "payed" =&gt; true);
include($_SERVER{DOCUMENT_ROOT}."/panels/payVitrina.php");</pre>
<p>As you see this way you can &#8220;connect&#8221; the ads for a company with certain element from your page.</p>
<p>With this code you will be able to track the impressions of your block code.</p>
<p>Any help on the the tracking of the clicks will be welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/wwwcenitecom/03/15/586/managing-your-own-adsblocks-with-openads/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wonderful XPath Tutorial</title>
		<link>http://www.gudasoft.com/uncategorized/03/12/577/wonderfull-tutorial/2009</link>
		<comments>http://www.gudasoft.com/uncategorized/03/12/577/wonderfull-tutorial/2009#comments</comments>
		<pubDate>Thu, 12 Mar 2009 11:01:26 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=577</guid>
		<description><![CDATA[It is total time saving to learn XPath from this tutorial &#8211; fast and not like the USA style books. http://www.zvon.org/xxl/XPathTutorial/General/examples.html I have made a mirror on the tutorial because I aways forgot XPath mirror]]></description>
			<content:encoded><![CDATA[<p>It is total time saving to learn XPath from this tutorial &#8211; fast and not like the USA style books.</p>
<p><a href="http://www.zvon.org/xxl/XPathTutorial/General/examples.html">http://www.zvon.org/xxl/XPathTutorial/General/examples.html</a></p>
<p>I have made a mirror on the tutorial because I aways forgot XPath</p>
<p><a href="http://spider.bg/~guda/dl/xpath/www.zvon.org/xxl/XPathTutorial/General/examples.html">mirror</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/03/12/577/wonderfull-tutorial/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monty Hall Problem simulation</title>
		<link>http://www.gudasoft.com/uncategorized/12/08/319/monty-hall-problem-simulation/2008</link>
		<comments>http://www.gudasoft.com/uncategorized/12/08/319/monty-hall-problem-simulation/2008#comments</comments>
		<pubDate>Mon, 08 Dec 2008 20:51:16 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=319</guid>
		<description><![CDATA[Suppose you&#8217;re on a game show, and you&#8217;re given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what&#8217;s behind the doors, opens another door, say No. 3, which has a goat. He then says to you, [...]]]></description>
			<content:encoded><![CDATA[<p>Suppose you&#8217;re on a game show, and you&#8217;re given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what&#8217;s behind the doors, opens another door, say No. 3, which has a goat. He then says to you, &#8220;Do you want to pick door No. 2?&#8221; Is it to your advantage to switch your choice? (<a href="http://en.wikipedia.org/wiki/Monty_Hall_problem#refWhitaker1990">Whitaker 1990</a>)</p>
<p><a title="http://en.wikipedia.org/wiki/Monty_Hall_problem" href="http://en.wikipedia.org/wiki/Monty_Hall_problem">http://en.wikipedia.org/wiki/Monty_Hall_problem</a></p>
<p><a title="http://www.smartvideos.ru/probabilit-problem" href="http://www.smartvideos.ru/probabilit-problem">http://www.smartvideos.ru/probabilit-problem</a></p>
<p><span id="more-319"></span></p>
<pre>#!/usr/bin/ruby

@cases = {
  :without_change =&gt; {
    :wins =&gt; 0,
    :looses =&gt; 0,
    :change? =&gt; lambda { false }
  },
  :with_change =&gt; {
    :wins =&gt; 0,
    :looses =&gt; 0,
    :change? =&gt; lambda { true }
  },
 :random_change =&gt; {
    :wins =&gt; 0,
    :looses =&gt; 0,
    :change? =&gt; lambda { rand(1) == 0 ? true : false }
  },

}

class Game
  def initialize
    @doors = [false, false, false]
    shuffle_gold
  end

  def shuffle_gold
    @wining_door_index = rand(@doors.size)
    @doors[@wining_door_index] = true
  end

  def player_make_choice
    @players_door_index = rand(@doors.size)
  end

  def win?
    @doors[@players_door_index]
  end

  def game_opens_loosing_door
    loosing_door_index = 0
    (1 .. @doors.size).each_with_index {|value, index| loosing_door_index = index if (index != @wining_door_index &amp;&amp; index != @players_door_index) }
    @doors.delete(loosing_door_index)
  end
end

def play_games
  @cases.keys.each do |case_key|
    variant = @cases[case_key]
    game = Game.new()
    game.player_make_choice
    if game.win?
      variant[:wins] += 1
      next
    end
    game.game_opens_loosing_door

    if variant[:change?].call
      game.player_make_choice
    end

    if game.win?
      variant[:wins] += 1
    else
      variant[:looses] += 1
    end
  end
end

10000.times do
  play_games()
end

@cases.each do |key, stat|
  puts key
  puts "-------------------------"
  puts "wins: #{stat[:wins]}"
  puts "looses: #{stat[:looses]}"
  puts
end</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/12/08/319/monty-hall-problem-simulation/2008/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>links</title>
		<link>http://www.gudasoft.com/english/development/10/18/183/links-2/2008</link>
		<comments>http://www.gudasoft.com/english/development/10/18/183/links-2/2008#comments</comments>
		<pubDate>Sat, 18 Oct 2008 21:51:47 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[QA]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=183</guid>
		<description><![CDATA[iptables configuration script firewall &#8211; http://tje.ssllink.net/firewall/ test driven development website: http://www.testdriven.com/modules/news/]]></description>
			<content:encoded><![CDATA[<p>iptables configuration script firewall &#8211; http://tje.ssllink.net/firewall/</p>
<p>test driven development website: http://www.testdriven.com/modules/news/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/10/18/183/links-2/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Source code websites</title>
		<link>http://www.gudasoft.com/english/development/08/30/115/source-code-websites/2008</link>
		<comments>http://www.gudasoft.com/english/development/08/30/115/source-code-websites/2008#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:17:15 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=115</guid>
		<description><![CDATA[http://www.refactormycode.com http://snippets.dzone.com/tag/split http://www.splunk.com Articles: http://thedailywtf.com/]]></description>
			<content:encoded><![CDATA[<p>http://www.refactormycode.com</p>
<p>http://snippets.dzone.com/tag/split</p>
<p>http://www.splunk.com</p>
<p>Articles: http://thedailywtf.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/08/30/115/source-code-websites/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Post &amp; Get requests</title>
		<link>http://www.gudasoft.com/uncategorized/08/19/106/post-get-requests/2008</link>
		<comments>http://www.gudasoft.com/uncategorized/08/19/106/post-get-requests/2008#comments</comments>
		<pubDate>Tue, 19 Aug 2008 18:10:02 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=106</guid>
		<description><![CDATA[Post using curl curl  -A &#8216;Mozilla/4.0&#8242;  -F &#8220;vote=5&#38;btnSubmit.x=34&#38;btnSubmit.y=14&#38;btnSubmit=%D0%A0%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B8%D1%80%D0%B0%D0%B9&#8243; http://www.germanos-konkurs.com/]]></description>
			<content:encoded><![CDATA[<h1>Post using curl</h1>
<p>curl  -A &#8216;Mozilla/4.0&#8242;  -F &#8220;vote=5&amp;btnSubmit.x=34&amp;btnSubmit.y=14&amp;btnSubmit=%D0%A0%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B8%D1%80%D0%B0%D0%B9&#8243; http://www.germanos-konkurs.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/08/19/106/post-get-requests/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semantic web</title>
		<link>http://www.gudasoft.com/english/seo/08/05/99/semantic-web/2008</link>
		<comments>http://www.gudasoft.com/english/seo/08/05/99/semantic-web/2008#comments</comments>
		<pubDate>Tue, 05 Aug 2008 21:51:47 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=99</guid>
		<description><![CDATA[http://www.powerset.com/ http://www.trueknowledge.com/ http://www.spock.com/ good blog (bg) lecutre in bg Forum based search engine http://www.omgili.com/]]></description>
			<content:encoded><![CDATA[<p>http://www.powerset.com/</p>
<p>http://www.trueknowledge.com/</p>
<p>http://www.spock.com/</p>
<p>good <a href="http://yurukov.net/blog/2007/11/15/sledvashtata_revoliuciq_v_tyrsachkite/">blog (bg)</a></p>
<p><a href="http://www.fmi.uni-sofia.bg/Members/marian/bazi-ot-znaniya-zimen-semestr-2006-2007-uchebna-godina/Ontologies_Intro.pdf">lecutre </a>in bg</p>
<p>Forum based search engine http://www.omgili.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/seo/08/05/99/semantic-web/2008/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bulgarian stopwords</title>
		<link>http://www.gudasoft.com/english/development/07/09/84/bulgarian-stopwords/2008</link>
		<comments>http://www.gudasoft.com/english/development/07/09/84/bulgarian-stopwords/2008#comments</comments>
		<pubDate>Wed, 09 Jul 2008 12:28:19 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=84</guid>
		<description><![CDATA[I want to start such a list so I will become maintain a Bulgarian list here which I will use for my website www.cenite.com As a base source I will use this list here Please submit your suggestions. Note: I have removed a lot of words from the starting list. а аз ако ала бе [...]]]></description>
			<content:encoded><![CDATA[<p>I want to start such a list so I will become maintain a Bulgarian list here which I will use for my website <a href="http://www.cenite.com">www.cenite.com</a></p>
<p>As a base source I will use this list <a href="http://members.unine.ch/jacques.savoy/clef/">here</a></p>
<p>Please submit your suggestions.</p>
<p>Note: I have removed a lot of words from the starting list.</p>
<pre><span id="more-84"></span>а
аз
ако
ала
бе
без
беше
би
бивш
бивша
бившо
бил
била
били
било
благодаря
близо
бъдат
бъде
бяха
в
вас
ваш
ваша
вероятно
вече
взема
ви
вие
винаги
внимава
все
всеки
всички
всичко
всяка
във
въпреки
върху
г
ги
го
д
да
дали
до
добра
добре
добро
добър
докато
докога
дори
досега
доста
друг
друга
други
е
едва
еднаква
еднакви
еднакъв
ето
за
зад
заради
засега
заспал
затова
защо
защото
и
из
или
им
има
имат
иска
й
каза
как
каква
какво
както
какъв
като
кога
когато
което
които
кой
който
колко
която
къде
където
към
лесен
лесно
ли
м
май
ме
мен
ми
много
мнозина
мога
могат
може
мокър
моля
му
н
на
над
назад
най
направи
напред
например
нас
не
него
нещо
нея
ни
ние
никой
нито
нищо
но
нов
нова
нови
някои
някой
няколко
няма
обаче
около
освен
особено
от
отгоре
отново
още
пак
по
повече
повечето
поне
поради
после
почти
прави
пред
преди
през
при
пък
първата
първи
първо
пъти
с
са
сам
само
се
сега
си
скоро
след
следващ
сме
според
сред
срещу
сте
съм
със
също
т
тази
така
такива
такъв
там
твой
те
тези
ти
т.н.
то
това
тогава
този
той
толкова
точно
три
трябва
тук
тъй
тя
тях
у
утре
харесва
ч
че
често
чрез
ще
щом
я
як</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/07/09/84/bulgarian-stopwords/2008/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thumbnail for a webpage</title>
		<link>http://www.gudasoft.com/uncategorized/07/03/81/thumbnail-for-a-webpage/2008</link>
		<comments>http://www.gudasoft.com/uncategorized/07/03/81/thumbnail-for-a-webpage/2008#comments</comments>
		<pubDate>Thu, 03 Jul 2008 12:16:58 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=81</guid>
		<description><![CDATA[My colegue bl8cki is real fan of making screenshots from web browsers. Those days he tries the python solution. And today he surprised all with one very nice firefox plugin With this plugin you can use firefox with some command line parameters to make screenshots. Here is how we will use it start the xvfb [...]]]></description>
			<content:encoded><![CDATA[<p>My colegue bl8cki is real fan of making screenshots from web browsers. Those days he tries the <a href="http://www.burtonini.com/blog/computers/mozilla-thumbnail-20040614?showcomments=yes">python</a> solution. And today he surprised all with one very nice firefox <a href="http://pearlcrescent.com/products/pagesaver/">plugin</a></p>
<p>With this plugin you can use firefox with some command line parameters to make screenshots.</p>
<p>Here is how we will use it</p>
<ol>
<li>start the xvfb
<pre><code>
mkdir /tmp/tmpfbdir
Xvfb :1 -ac -screen 0 1600x1200x24  -fbdir /tmp/tmpfbdir</code></pre>
<p><code> </code></li>
<li>run the firefox
<pre><code>firefox-2 --display=:1 --no-xshm -height 1024 -width 768 -savepng http://www.cenite.com</code></pre>
<p><code> </code></li>
</ol>
<p>Windows solutions</p>
<p style="padding-left: 30px;">http://webscripts.softpedia.com/script/Image-Galleries/Image-Tools/Website-Thumb-Generator-40121.html</p>
<p style="padding-left: 30px;">http://web-tourist.net/login/login/view.php?st=1193 h</p>
<p style="padding-left: 30px;">ttp://www.download32.com/website-thumbnail-generator-software.html</p>
<p style="padding-left: 30px;">http://www.zubrag.com/scripts/website-thumbnail-generator.php</p>
<p>Multiplatform &#8211; I cant manage to compile it:</p>
<p style="padding-left: 30px;">http://cutycapt.sourceforge.net/ http://iecapt.sourceforge.net/</p>
<p>Python:</p>
<p style="padding-left: 30px;">http://www.burtonini.com/blog/computers/mozilla-thumbnail-20040614?showcomments=yes#</p>
<p>Firefox</p>
<p style="padding-left: 30px;">http://pearlcrescent.com/products/pagesaver/</p>
<p style="padding-left: 30px;">https://addons.mozilla.org/en-US/firefox/addon/1146</p>
<p style="padding-left: 30px;">
<p>Another Linux/Ubuntu way:</p>
<pre>aptitude install xvfb  xfs xfonts-scalable xfonts-100dpi libgl1-mesa-dri  subversion libqt4-webkit libqt4-dev g++</pre>
<pre><code>svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
cd cutycapt/CutyCapt
qmake
make
xvfb-run --server-args="-screen 0, 1024x768x24" ./CutyCapt --url=http://www.google.com --out=example.png
xvfb-run --server-args="-screen 0, 1024x768x24" ./CutyCapt --url=http://www.google.com --out=example.html --out-format=html
</code></pre>
<p style="padding-left: 30px;">
<p>http://khtml2png.sourceforge.net/index.php?page=faq</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/07/03/81/thumbnail-for-a-webpage/2008/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Opera beautifully engineered&#8230;for my desktop</title>
		<link>http://www.gudasoft.com/uncategorized/06/30/78/opera-beautifully-engineeredfor-my-desktop/2008</link>
		<comments>http://www.gudasoft.com/uncategorized/06/30/78/opera-beautifully-engineeredfor-my-desktop/2008#comments</comments>
		<pubDate>Mon, 30 Jun 2008 16:28:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=78</guid>
		<description><![CDATA[I was nice surprised when I tried Opera browser for PC after aprx. one year Firefox usage. Zooming is faster and smarter than in every browser that I have used. Firefox boot like MS Windows, and is almost stable like it. Opera is faaaaast. Gmail is fast. And my work is going fast because all [...]]]></description>
			<content:encoded><![CDATA[<p>I was nice surprised when I tried <a href="http://www.opera.com/">Opera</a> browser for PC after aprx. one year Firefox usage.</p>
<p>Zooming is faster and smarter than in every browser that I have used.</p>
<p><a href="http://www.mozilla-europe.org/en/firefox/">Firefox</a> boot like MS Windows, and is almost stable like it.</p>
<p>Opera is faaaaast. Gmail is fast. And my work is going fast because all webpages are opening fast.</p>
<p>What? Why you need faster browser if it doesnt support right CSS, DOM, or what ever?</p>
<p>Who said this ? Check the <a href="http://www.w3.org/Style/CSS/Test/CSS2.1/20041125/">tests for CSS2 </a>and see that Opera and FF are failing apx on the same tests on the same places I am not sure even who is the winner. Check also this those <a href="http://www.acidtests.org/">acid tests </a>also</p>
<p>Does someone has tried the <a href="http://www.opera.com/products/dragonfly/">dragonfly</a> plugin &#8211;  analog for the firefox firebug ? <a href="http://dragonfly.opera.com/app/debugmenu/"></a></p>
<p>I must agree that the Opera release 9.50 (Build 10063) has some strange javascript support. It happends that when I paste an URL for RSS in <a href="http://www.opera.com/">Opera</a>, the current page disapears, maybe this is a feature and not a bug :)</p>
<p>Also I am very very disapointed that I should write this article in FF because the build-in <acronym title="Version 2.5.1">WordPress</acronym> editordoesnt work for <a href="http://www.opera.com/">Opera</a> :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/06/30/78/opera-beautifully-engineeredfor-my-desktop/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox extensions</title>
		<link>http://www.gudasoft.com/english/development/05/15/35/firefox-extensions/2008</link>
		<comments>http://www.gudasoft.com/english/development/05/15/35/firefox-extensions/2008#comments</comments>
		<pubDate>Thu, 15 May 2008 08:14:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.gudasoft.com/?p=35</guid>
		<description><![CDATA[Here is the list of the firefox plugins that I use. Development http://www.getfirebug.com/ http://www.westciv.com/xray/index.html http://chrispederick.com/work/web-developer/ Website speed test: extended status bar? :https://addons.mozilla.org/en-US/firefox/addons/versions/1433 hammerhead: Make requests to a urls, show the response times http headers &#8211; http://livehttpheaders.mozdev.org/ form filler &#8211; http://informenter.mozdev.org/ Bookmark organzier &#8211; not tried! http://www.xmarks.com/ Auto copy Download them all Spell checker in Bulgarian [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the list of the firefox plugins that I use.</p>
<ul>
<li>Development
<ul>
<li><a href="http://www.getfirebug.com/">http://www.getfirebug.com/ </a>http://www.westciv.com/xray/index.html</li>
</ul>
<ul>
<li><a href="http://chrispederick.com/work/web-developer/">http://chrispederick.com/work/web-developer/</a></li>
<li>Website speed test:
<ul>
<li><a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addons/versions/1433">extended status bar? :https://addons.mozilla.org/en-US/firefox/addons/versions/1433</a></li>
<li><a href="http://stevesouders.com/hammerhead/ ">hammerhead:</a> Make requests to a urls, show the response times</li>
</ul>
</li>
</ul>
</li>
<li>http headers &#8211; <a href="http://livehttpheaders.mozdev.org/">http://livehttpheaders.mozdev.org/</a></li>
<li>form filler &#8211; <a href="http://imagezoom.yellowgorilla.net/">http://informenter.mozdev.org/</a></li>
<li><a href="http://www.xmarks.com/">Bookmark organzier &#8211; not tried! http://www.xmarks.com/</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/383">Auto copy</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/201">Download them all</a></li>
<li>Spell checker in Bulgarian &#8211; <a href="http://bgoffice.sourceforge.net/mozilla/index.html">http://bgoffice.sourceforge.net/mozilla/index.html</a></li>
<li>Design
<ul>
<li>Custom css for external pages <a href="http://userstyles.org/stylish/">http://userstyles.org/stylish/</a></li>
<li>Measure it &#8211; <a href="http://www.kevinfreitas.net/extensions/measureit/">http://www.kevinfreitas.net/extensions/measureit/</a></li>
<li>IE-tab &#8211; <a href="http://ietab.mozdev.org/">http://ietab.mozdev.org/</a></li>
</ul>
</li>
<li>image zoom &#8211; <a href="http://imagezoom.yellowgorilla.net/">http://imagezoom.yellowgorilla.net/</a></li>
<li>ads block
<ul>
<li>all ads &#8211; <a href="http://adblockplus.org/en/">http://adblockplus.org/en/</a></li>
<li>flash block <a href="http://flashblock.mozdev.org/">http://flashblock.mozdev.org/</a></li>
</ul>
</li>
<li>google preview <a href="http://ackroyd.de/googlepreview/">http://ackroyd.de/googlepreview/</a></li>
<li>gmail
<ul>
<li><a href="http://lifehacker.com/software/exclusive-lifehacker-download/better-gmail-2-firefox-extension-for-new-gmail-320618.php">better gmail2</a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/05/15/35/firefox-extensions/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online books storages</title>
		<link>http://www.gudasoft.com/english/development/05/14/34/online-books-storages/2008</link>
		<comments>http://www.gudasoft.com/english/development/05/14/34/online-books-storages/2008#comments</comments>
		<pubDate>Wed, 14 May 2008 20:14:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.gudasoft.com/?p=34</guid>
		<description><![CDATA[http://bitme.org http://ebookshare.net http://books.google.com -head first software development Using google intitle:&#8221;index of&#8221; &#8220;head first&#8221; -free -examp -preview]]></description>
			<content:encoded><![CDATA[<ul>
<li>http://bitme.org</li>
<li>http://ebookshare.net</li>
<li><a href="http://books.google.bg/books?id=QAr82w_eSi8C&amp;pg=PA7&amp;lpg=PA7&amp;dq=Tom+says,+%22The+customer+should+be+able+to+search+for+trails.%22&amp;source=web&amp;ots=KkGh0-bbxS&amp;sig=H1ksnJVu0Sk46fzL1dW_MZ1kG9U&amp;hl=bg&amp;sa=X&amp;oi=book_result&amp;resnum=1&amp;ct=result#PPP1,M1">http://books.google.com</a> -head first software development</li>
</ul>
<p>Using google</p>
<ul>
<li>intitle:&#8221;index of&#8221; &#8220;head first&#8221; -free -examp -preview</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/development/05/14/34/online-books-storages/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

