<?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>Odd, even, odd, even... &#187; wireman</title>
	<atom:link href="http://blog.hno3.org/author/wireman/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hno3.org</link>
	<description>&#34;Real efficiency comes from elegant solutions, not optimized programs.&#34;</description>
	<lastBuildDate>Thu, 22 Apr 2010 16:47:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing double-encoded UTF-8 data in MySQL</title>
		<link>http://blog.hno3.org/2010/04/22/fixing-double-encoded-utf-8-data-in-mysql/</link>
		<comments>http://blog.hno3.org/2010/04/22/fixing-double-encoded-utf-8-data-in-mysql/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 16:47:11 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=161</guid>
		<description><![CDATA[Double-encoded UTF-8 texts (not to mention triple-, quadruple- and so on) are a fairly common problem when dealing with MySQL. This may be due to the fact that the default character set of the connection to the server is Latin-1, but that is not relevant once the data is already corrupt.
Here is how to fix [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Double-encoded UTF-8 texts</strong> (not to mention triple-, quadruple- and so on) are a fairly common problem when dealing with MySQL. This may be due to the fact that the default character set of the connection to the server is Latin-1, but that is not relevant once the data is already corrupt.</p>
<p><strong>Here is how to fix it</strong>, in two simple steps, using the <code class=\'prettyprint\' >mysqldump</code> and <code class=\'prettyprint\' >mysql</code> commands:</p>
<pre>
mysqldump -h DB_HOST -u DB_USER -p DB_PASSWORD --opt --quote-names \
    --skip-set-charset --default-character-set=latin1 DB_NAME > DB_NAME-dump.sql

mysql -h DB_HOST -u DB_USER -p DB_PASSWORD \
    --default-character-set=utf8 DB_NAME < DB_NAME-dump.sql
</pre>
<p>Of course, you should first replace <code class=\'prettyprint\' >DB_HOST</code>, <code class=\'prettyprint\' >DB_USER</code>, <code class=\'prettyprint\' >DB_PASSWORD</code> and <code class=\'prettyprint\' >DB_NAME</code> with values, corresponding to your database setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2010/04/22/fixing-double-encoded-utf-8-data-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery :hidden/:visible and animation oddities</title>
		<link>http://blog.hno3.org/2010/04/08/jquery-hidden-visible-and-animation-oddities/</link>
		<comments>http://blog.hno3.org/2010/04/08/jquery-hidden-visible-and-animation-oddities/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:46:36 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=149</guid>
		<description><![CDATA[Beware that in some cases your jQuery animations (e.g. fadeIn(), fadeOut() and others) may not run, because jQuery may think that the DOM node, on which you request the animation, is not visible.
When and how can this be a problem?
In most cases, of course, the DOM node will indeed be invisible and this will not [...]]]></description>
			<content:encoded><![CDATA[<p>Beware that in some cases your <strong>jQuery animations</strong> (e.g. <code class=\'prettyprint\' >fadeIn(), fadeOut()</code> and others) <strong>may not run</strong>, because jQuery may think that the DOM node, on which you request the animation, <strong>is not visible</strong>.</p>
<p><strong>When and how can this be a problem?</strong></p>
<p>In most cases, of course, the DOM node will indeed be invisible and this will not be an issue.</p>
<p>There are, however, some exceptional cases. Suppose you have an absolutely positioned container, with no explicit width and height, which in turn has absolutely positioned child elements. If you, for example, set the opacity of the container to 50%, its absolutely positioned children will also become 50% opaque. If you set the CSS <code class=\'prettyprint\' >display</code> to <code class=\'prettyprint\' >none</code>, its children will again be hidden.</p>
<p>However, the container is technically invisible.</p>
<p>That&#8217;s because the container&#8217;s browser reported <code class=\'prettyprint\' >outerWidth</code> and <code class=\'prettyprint\' >outerHeight</code> are both zero, which, for jQuery, means that the element is invisible &#8212; see [1] &#8212; that&#8217;s the way the <code class=\'prettyprint\' >:hidden</code> and <code class=\'prettyprint\' >:visible</code> selectors work in jQuery 1.3.2 and newer.</p>
<p>Here comes the problem: if you run any animations on the container &#8212; for example <code class=\'prettyprint\' >fadeOut()</code> &#8212; it will be optimized by jQuery and will not execute, due to the fact that jQuery sees the element as not visible (which is correct and the clever thing to do in most cases).</p>
<p><strong>The solution is quite simple</strong> &#8212; you may just set an (even random) nonzero width or height to the container. As its children are absolutely positioned, it should not affect anything, but your animations will run.</p>
<p>[1] <a href="http://docs.jquery.com/Release:jQuery_1.3.2#:visible.2F:hidden_Overhauled">http://docs.jquery.com/Release:jQuery_1.3.2#:visible.2F:hidden_Overhauled</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2010/04/08/jquery-hidden-visible-and-animation-oddities/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rsync: cannot delete non-empty directory</title>
		<link>http://blog.hno3.org/2009/10/19/rsync-perishable-rules/</link>
		<comments>http://blog.hno3.org/2009/10/19/rsync-perishable-rules/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 16:56:31 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[Craftsmanship]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[exclude]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=131</guid>
		<description><![CDATA[A p (modifier) indicates that an (include/exclude/...) rule is perishable, meaning that it is ignored in directories that are being deleted. (из man rsync)

Има няколко причини, поради които rsync може да ви върне следната грешка:
cannot delete non-empty directory: some_dir_name

Ако сте използвали -b или --backup. Тогава rsync не трие нищо от destination. За да модифицирате това [...]]]></description>
			<content:encoded><![CDATA[<p><code class=\'prettyprint\' >A <strong>p</strong> (modifier) indicates that an (include/exclude/...) rule is <em>perishable</em>, meaning that it is ignored in directories that are being deleted.</code> <em>(из <code class=\'prettyprint\' >man rsync</code>)</em><br />
</p>
<p>Има няколко причини, поради които <code class=\'prettyprint\' >rsync</code> може да ви върне следната грешка:</p>
<pre>cannot delete non-empty directory: some_dir_name</pre>
<ol class="spacy">
<li><strong>Ако сте използвали <code class=\'prettyprint\' >-b</code> или <code class=\'prettyprint\' >--backup</code>.</strong> Тогава <code class=\'prettyprint\' >rsync</code> не трие нищо от <code class=\'prettyprint\' >destination</code>. За да модифицирате това поведение, вижте описанието на <code class=\'prettyprint\' >--backup</code> в <code class=\'prettyprint\' >man rsync</code>.</li>
<li><strong>Ако ползвате <code class=\'prettyprint\' >--exclude</code> правила.</strong> Тези правила &#8220;предпазват&#8221; файлове в <code class=\'prettyprint\' >destination</code> от изтриване, от което следва, че папка, изтрита в <code class=\'prettyprint\' >source</code> няма да може да бъде изтрита в <code class=\'prettyprint\' >destination</code>, ако съдържа &#8220;предпазени&#8221; от правилата файлове, дори да сте задали <code class=\'prettyprint\' >--delete --force</code>. Решението е да дефинирате <code class=\'prettyprint\' >exclude</code>-правилото като <em>perishable</em>.
<p>Например, ако синхронизирате директориите <code class=\'prettyprint\' >source</code> и <code class=\'prettyprint\' >destination</code>, които са под <code class=\'prettyprint\' >subversion</code>-контрол с <code class=\'prettyprint\' >rsync</code>, можете да ползвате следната команда:</p>
<pre>rsync -rv --delete --force --filter 'exclude,p .svn' 'source' 'destination'</pre>
<p>В случя избягваме синхронизирането на системните за <code class=\'prettyprint\' >subversion</code> директории <code class=\'prettyprint\' >.svn</code>, като въпреки това твърдим, че правилото, &#8220;защитаващо&#8221; <code class=\'prettyprint\' >.svn</code>-директориите от прехвърляне, не важи в директории, които подлежат на изтриване (т.е. правилото е <em>perishable</em>).
	</li>
</ol>
<p>За повече информация, вижте секцията <code class=\'prettyprint\' >FILTER RULES</code> и потърсете вътре за &#8220;perishable&#8221; в <code class=\'prettyprint\' >man rsync</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2009/10/19/rsync-perishable-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP-функции any() и all()</title>
		<link>http://blog.hno3.org/2009/08/13/php-any-all/</link>
		<comments>http://blog.hno3.org/2009/08/13/php-any-all/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 22:05:49 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[Craftsmanship]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functional]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=123</guid>
		<description><![CDATA[Потрябва ми удобството на тези две хубави функции, all() и any(), каквито например ги има в Пайтън. Въпреки богатата база от функции в PHP, бързото ми търсене не показа нищо подобно, което да е вградено, затова:

function all() {
	$args = func_get_args();

	if (count($args) == 1 &#038;&#038; is_array($args[0])) {
		return call_user_func_array(__FUNCTION__, $args[0]);
	}

	foreach ($args as $value) {
		if (!$value) {
			return false;
		}
	}
	return [...]]]></description>
			<content:encoded><![CDATA[<p>Потрябва ми удобството на тези две хубави функции, <code class=\'prettyprint\' >all()</code> и <code class=\'prettyprint\' >any()</code>, каквито например ги има в Пайтън. Въпреки богатата база от функции в PHP, бързото ми търсене не показа нищо подобно, което да е вградено, затова:</p>
<pre class="prettyprint">
function all() {
	$args = func_get_args();

	if (count($args) == 1 &#038;&#038; is_array($args[0])) {
		return call_user_func_array(__FUNCTION__, $args[0]);
	}

	foreach ($args as $value) {
		if (!$value) {
			return false;
		}
	}
	return count($args) > 0;
}
</pre>
<p>Функцията <code class=\'prettyprint\' >any()</code> е почти аналогична. Ако ви интересува и нейната пълна реализация, както и нещо като unit-тест, вижте пълния текст на този пост.</p>
<p><span id="more-123"></span></p>
<p>Ето го и нещото, приличащо на unit-тест:</p>
<pre class="prettyprint">
function any() {
	$args = func_get_args();

	if (count($args) == 1 &#038;&#038; is_array($args[0])) {
		return call_user_func_array(__FUNCTION__, $args[0]);
	}

	foreach ($args as $value) {
		if ($value) {
			return true;
		}
	}
	return false;
}

function all() {
	$args = func_get_args();

	if (count($args) == 1 &#038;&#038; is_array($args[0])) {
		return call_user_func_array(__FUNCTION__, $args[0]);
	}

	foreach ($args as $value) {
		if (!$value) {
			return false;
		}
	}
	return count($args) > 0;
}

$tests = array(
	array(
		'any',
		false,
		array(false, false, false),
	),
	array(
		'any',
		false,
		array(),
	),
	array(
		'any',
		true,
		array(false, 1, false),
	),
	array(
		'any',
		true,
		array(false, false, false, "string"),
	),
	array(
		'any',
		false,
		array(false, null, false, "", false),
	),
	array(
		'all',
		false,
		array(false, false, false),
	),
	array(
		'all',
		false,
		array(),
	),
	array(
		'all',
		false,
		array(false, 1, false),
	),
	array(
		'all',
		false,
		array(false, false, false, "string"),
	),
	array(
		'all',
		false,
		array(false, null, false, "", false),
	),
	array(
		'all',
		true,
		array(true, "sth", 123, true, true, 1, -7),
	),
);

$total = $ok = $failed = 0;
$summary = '';

function test($func, $expected, $args) {
	global $total, $ok, $failed, $summary;
	$total ++;
	$signature = $func . '(' . implode(',', array_map(create_function('$arg', 'return var_export($arg, true);'), $args)) . '), expected: ' . var_export($expected, true);

	try {
		$result = call_user_func_array($func, $args);
	} catch (Exception $e) {
		echo 'E';
		$failed ++;
		$summary .= $signature . "\n";
		$summary .= $e->getMessage() . "\n";
		return false;
	}

	if ($result === $expected) {
		echo '.';
		$ok ++;
		return true;
	} else {
		echo 'F';
		$failed++;
		$summary .= $signature . ", but got: " . var_export($result, true) . "\n";
		return false;
	}
}

foreach ($tests as $test_case) {
	list($func, $expected, $args) = $test_case;
	test($func, $expected, $args);
	test($func, $expected, array($args));
}

if ($failed == 0) {
	echo "\n\nALL TESTS PASSED.";
}

echo "\n\n";
echo "Tests: $total\n";
echo "OK:    $ok\n";
if ($failed > 0) {
	echo "FAIL:  $failed\n";
}

echo "\n$summary\n";
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2009/08/13/php-any-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Чакалене на IP/host за наличие на пинг</title>
		<link>http://blog.hno3.org/2009/08/12/monitoring-ip-for-ping/</link>
		<comments>http://blog.hno3.org/2009/08/12/monitoring-ip-for-ping/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:10:08 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[Craftsmanship]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=118</guid>
		<description><![CDATA[Съвсем скоро (да кажем, преди 10 минути) ми се наложи да чакам да се появи пинг към дадено IP. За целта си написах shell-скриптчето, показано по-долу, което да ми &#8220;каже&#8221; нещо, в момента, в който се появи ping към съответното IP. Някой може да го намери за полезно:

dimitardimitrov@Midori:~$ cat monitor-host.sh
#!/bin/bash

if [ "$#" -lt 1 ]
then
	echo [...]]]></description>
			<content:encoded><![CDATA[<p>Съвсем скоро (да кажем, преди 10 минути) ми се наложи да чакам да се появи пинг към дадено IP. За целта си написах shell-скриптчето, показано по-долу, което да ми &#8220;каже&#8221; нещо, в момента, в който се появи ping към съответното IP. Някой може да го намери за полезно:</p>
<pre class="prettyprint">
dimitardimitrov@Midori:~$ cat monitor-host.sh
#!/bin/bash

if [ "$#" -lt 1 ]
then
	echo "Usage: $0 host.to.monitor"
	exit 1
fi 

host="$1"

while true
do
	ping -c 1 $host
	if [ "$?" -eq "0" ]
	then
		say The host is now online! I repeat: "The host is now online!".
		exit
	fi
	sleep 1
done
</pre>
<p>За да работи, е необходимо да имате команда <code class=\'prettyprint\' >say</code>, която да прави каквото се очаква :) Може да бъде заменена и с нещо друго, разбира се. Чувствайте се свободни да ползвате това парче &#8220;код&#8221; както искате.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2009/08/12/monitoring-ip-for-ping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Виртуално отношение</title>
		<link>http://blog.hno3.org/2009/01/27/virtual-appreciation/</link>
		<comments>http://blog.hno3.org/2009/01/27/virtual-appreciation/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 12:50:33 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=93</guid>
		<description><![CDATA[Много интересна идея за изразяване на отношение към нашите любими управляващи може да се види, като потърсите в Google за &#8220;провал&#8221;. На първо място излиза сайтът на българското правителство. Честито! Тук (а и на доста други места) може да прочетете повече за инициативата.
Ето това е на първо място за мен: корупция
]]></description>
			<content:encoded><![CDATA[<p>Много интересна идея за изразяване на отношение към нашите любими управляващи може да се види, като потърсите в <a href="http://www.google.com/search?q=%D0%BF%D1%80%D0%BE%D0%B2%D0%B0%D0%BB&#038;ie=utf-8&#038;oe=utf-8&#038;aq=t&#038;rls=org.mozilla:en-US:official&#038;client=firefox-a">Google</a> за &#8220;провал&#8221;. На първо място излиза сайтът на българското правителство. Честито! <a href="http://oggin.net/vile/failure/">Тук</a> (а и на доста други места) може да прочетете повече за инициативата.</p>
<p>Ето това е на първо място за мен: <a href="http://www.government.bg/">корупция</a></p>
<img src="http://blog.hno3.org/wp-content/uploads/2009/01/failure.png" alt="failure" title="провал" style="max-width: 100%;" class="size-full wp-image-95" />
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2009/01/27/virtual-appreciation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Операции с множества на ниво shell</title>
		<link>http://blog.hno3.org/2008/12/22/set-operations-in-unix-shells/</link>
		<comments>http://blog.hno3.org/2008/12/22/set-operations-in-unix-shells/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 19:44:47 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=90</guid>
		<description><![CDATA[Наскоро ми се наложи да правя такива магии, основно разлики между множества от числа. Бърз и ефективен начин това да стане, е да използвате вече налични във вашата операционна система* команди/програмки от типа на grep, sort, uniq, comm &#8212; кой с каквото разполага и каквото предпочита. В ето този сайт [1] може да видите как [...]]]></description>
			<content:encoded><![CDATA[<p>Наскоро ми се наложи да правя такива магии, основно разлики между множества от числа. Бърз и ефективен начин това да стане, е да използвате вече налични във вашата операционна система* команди/програмки от типа на <code class=\'prettyprint\' >grep, sort, uniq, comm</code> &#8212; кой с каквото разполага и каквото предпочита. В <a href="http://www.catonmat.net/blog/set-operations-in-unix-shell/">ето този сайт [1]</a> може да видите как можете да прилагате основните операции с множества чрез горепосочените команди, при това по доста интересни начини. Има по няколко варианта за всяка операция и човек разполага с възможност за избор, което винаги е хубаво.</p>
<p><a href="http://www.catonmat.net/blog/set-operations-in-unix-shell/">[1] http://www.catonmat.net/blog/set-operations-in-unix-shell/</a><br />
_______<br />
* Говорим си само за <a href="http://en.wikipedia.org/wiki/Unix">истинските</a> операционни системи.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2008/12/22/set-operations-in-unix-shells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Обновихме се</title>
		<link>http://blog.hno3.org/2008/12/11/wordpress-upgraded/</link>
		<comments>http://blog.hno3.org/2008/12/11/wordpress-upgraded/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:08:10 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=87</guid>
		<description><![CDATA[Вече се задвижваме от чисто-новия Wordpress 2.7 &#8220;Колтрейн&#8221; &#8212; трябва да отбележа, че административния интерфейс изглежда доста добре. WordPress винаги са били един пример за добре движен open-source проект за мен. Ако ползвате други услуги, например Blogger :) можете да се замислите за прехвърляне :)
]]></description>
			<content:encoded><![CDATA[<p>Вече се задвижваме от чисто-новия <a href="http://wordpress.org/development/2008/12/coltrane/">Wordpress 2.7 &#8220;Колтрейн&#8221;</a> &#8212; трябва да отбележа, че административния интерфейс изглежда доста добре. WordPress винаги са били един пример за добре движен open-source проект за мен. Ако ползвате други услуги, например <a href="http://www.blogger.com/">Blogger</a> :) можете да се замислите за прехвърляне :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2008/12/11/wordpress-upgraded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>booklamp.org &#8211; технологията</title>
		<link>http://blog.hno3.org/2008/04/04/booklamporg-technology/</link>
		<comments>http://blog.hno3.org/2008/04/04/booklamporg-technology/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 10:13:59 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=86</guid>
		<description><![CDATA[Един много интересен проект &#8212; booklamp.org, имащ за цел да ви предложи книги, които бихте харесали, базирайки се на книгите, които до момента сте чели и са ви харесали. Видеото с разяснения на концепцията и за това как точно се взимат решения, е много интересно и го препоръчвам.
]]></description>
			<content:encoded><![CDATA[<p>Един много интересен проект &mdash; <a href="http://booklamp.org">booklamp.org</a>, имащ за цел да ви предложи книги, които бихте харесали, базирайки се на книгите, които до момента сте чели и са ви харесали. <a href="http://video.google.com/videoplay?docid=-4515877390655740878&#038;hl=en">Видеото с разяснения на концепцията</a> и за това как точно се взимат решения, е много интересно и го препоръчвам.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2008/04/04/booklamporg-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pygments</title>
		<link>http://blog.hno3.org/2008/03/03/python-pygments/</link>
		<comments>http://blog.hno3.org/2008/03/03/python-pygments/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 12:47:31 +0000</pubDate>
		<dc:creator>wireman</dc:creator>
				<category><![CDATA[Craftsmanship]]></category>

		<guid isPermaLink="false">http://blog.hno3.org/?p=85</guid>
		<description><![CDATA[Pygments е Python-пакет, който ви дава удобен интерфейс (под формата на библиотека или на command-line инструмент) да оцветявате парчета код (всъщност не само код), като изходът може да бъде в HTML, RTF, LaTeX и други формати. Вижте страничката с примери. Дори Brainf*ck не успява да избяга.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pygments.org/">Pygments</a> е Python-пакет, който ви дава удобен интерфейс (под формата на библиотека или на command-line инструмент) да оцветявате парчета код (всъщност не само код), като изходът може да бъде в HTML, RTF, LaTeX и други формати. Вижте <a href="http://pygments.org/demo/">страничката с примери</a>. Дори <a href="http://pygments.org/demo/533/">Brainf*ck</a> не успява да избяга.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hno3.org/2008/03/03/python-pygments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
