<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Logging enabled...</title>
	<atom:link href="http://itanko.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://itanko.wordpress.com</link>
	<description>or how i live my life and what follows</description>
	<lastBuildDate>Fri, 01 Aug 2008 18:44:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='itanko.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Logging enabled...</title>
		<link>http://itanko.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://itanko.wordpress.com/osd.xml" title="Logging enabled..." />
	<atom:link rel='hub' href='http://itanko.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Making .ico file with fasm</title>
		<link>http://itanko.wordpress.com/2008/08/01/making-ico-file-with-fasm/</link>
		<comments>http://itanko.wordpress.com/2008/08/01/making-ico-file-with-fasm/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 18:36:25 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[fasm]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=31</guid>
		<description><![CDATA[Sometimes there is a need to create icon (say, favicon for you site). And you don&#8217;t want to download any software (if you want there is google://pixelformer). There is a short script in flatassembler that, i hope, explains windows icon format. Not bad thing, although *.ico files now become obsolete more and more. But obsolete [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=31&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes there is a need to create icon (say, favicon for you site). And you don&#8217;t want to download any software (if you want there is google://pixelformer). </p>
<p>There is a short script in flatassembler that, i hope, explains windows icon format. Not bad thing, although *.ico files now become obsolete more and more. But obsolete not means unused :)</p>
<p><code>pixels fix 0x10 ; icon size<br />
bpx    fix 0x20 ; bits per pixel</p>
<p>dw 0x0000 ; Signature<br />
dw 0x0001 ; Type - icon<br />
dw 0x0001 ; Images Count - 1</p>
<p>db pixels ; width<br />
db pixels ; height<br />
dd 0x01 ; use mask (false)<br />
dw bpx ; bits per colour - 32<br />
dd sz_data<br />
dd idata ; offset</p>
<p>idata:</p>
<p>        bitmapinfoheader:<br />
        dd sz_bitmapinfoheader<br />
        dd pixels     ; width<br />
        dd pixels * 2 ; height - strange but need<br />
        dw 0x01 ; planes<br />
        dw bpx ; bpc - 32<br />
        dd 0x00 ; no compression<br />
        dd sz_raw<br />
        dd 0x00, 0x00, 0x00, 0x00<br />
        sz_bitmapinfoheader = $ - bitmapinfoheader<br />
             rept 256 x {<br />
                       dd 0x11 ; icon data (dd - 32bit bitmap)<br />
             }<br />
             rept 16 y {<br />
                       dd 0    ; icon mask<br />
             }<br />
        raw:</p>
<p>        sz_raw = $ - raw<br />
sz_data = $ - idata</code></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=31&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/08/01/making-ico-file-with-fasm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Wake-On-Lan</title>
		<link>http://itanko.wordpress.com/2008/07/11/wake-on-lan/</link>
		<comments>http://itanko.wordpress.com/2008/07/11/wake-on-lan/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 07:30:12 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[Ansi-C]]></category>
		<category><![CDATA[wol]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=23</guid>
		<description><![CDATA[It&#8217;s so sweety to maintain all workstations automatically in, say, 3am at night :) But this requires to turn it all on, and switch off after maintenance. Shutdowning is not a problem, but turning on&#8230; Turning on is not a problem too, but &#60;=&#62; your workstations support Wake-On-Lan technology. Here a small C example how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=23&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s so sweety to maintain all workstations automatically in, say, 3am at night :) But this requires to turn it all on, and switch off after maintenance. Shutdowning is not a problem, but turning on&#8230; Turning on is not a problem too, but &lt;=&gt; your workstations support <a href="http://en.wikipedia.org/wiki/Wake-on-LAN" target="_blank">Wake-On-Lan</a> technology.</p>
<p>Here a small C example how to invoke Wake-On-Lan.</p>
<p>Algo is simple &#8211; broadcast UDP magic-packet.</p>
<p>Magic packet consists of:</p>
<ol>
<li>Six <tt>0xFF</tt> bytes</li>
<li>Target MAC address repeated sixteen times.</li>
</ol>
<p>If, say, target MAC is <tt>32:00:00:23:11:13</tt>. Magic packet is</p>
<pre>FF FF FF FF FF FF 32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13
32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13
32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13
32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13 32 00 00 23 11 13
32 00 00 23 11 13</pre>
<p>Ok, ive stop bugging you and here is the code:</p>
<pre>/**
 * wol.c - Wake-On-Lan example.
 *
 * 2008, Michelle Beloshitsky (itanko@li.ru)
 *
 **/

#include "winsock2.h"
#include "stdio.h"

#define MYPORT 2050 

#define MAGIC_PACKET_SIZE 6*17

/**
 * Creates magic packet
 **/
char* do_magic(char* mac)
{
    int i; int j;

    char * res = malloc(MAGIC_PACKET_SIZE);
    memset(res, 0xFF, MAGIC_PACKET_SIZE);

    for(i=1;i&lt;17;i++)
    {
        for(j=0;j&lt;6;j++)
        {
           res[i*6+j] = mac[j]; // expected to be at least 6 chars
        }
    }
    return res;
}

int main()
{
    unsigned char test_mac[6] = {0x00, 0x29, 0xED, 0x46, 0xE2, 0x06};

    WSADATA wsadata;
    if ( WSAStartup(MAKEWORD(2,2), &amp;wsadata) != 0 )
    {
    printf("WSAStartup() error %i\n", WSAGetLastError());
        return 1;
    }

    SOCKET sock;
    sock = socket(AF_INET,SOCK_DGRAM,0);
    if (sock == INVALID_SOCKET)
    {
        printf("socket() error %i\n", WSAGetLastError());
        return 1;
    }

    char bc = '1'; // broadcast

    if(setsockopt(sock,SOL_SOCKET,SO_BROADCAST,&amp;bc,sizeof(bc)) &lt; 0)
    {
        printf("setsockopt() error %i\n", WSAGetLastError());
        closesocket(sock);
        return 1;
    }

    struct sockaddr_in Sender_addr; 

    Sender_addr.sin_family       = AF_INET;
    Sender_addr.sin_port         = htons(MYPORT);
    Sender_addr.sin_addr.s_addr  = INADDR_BROADCAST;

    int res = sendto(sock,
                     do_magic(test_mac),
                     MAGIC_PACKET_SIZE,
                     0,
                     (struct sockaddr_in *)&amp;Sender_addr,
                     sizeof(Sender_addr));

    if(res != MAGIC_PACKET_SIZE)
    {
        printf("sendto() error %i\n", WSAGetLastError());
        closesocket(sock);
        return 1;
    }

    closesocket(sock);
    WSACleanup();
}</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=23&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/07/11/wake-on-lan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>East of eden time</title>
		<link>http://itanko.wordpress.com/2008/07/10/east-of-eden-time/</link>
		<comments>http://itanko.wordpress.com/2008/07/10/east-of-eden-time/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 18:15:23 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[steinbeck]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=22</guid>
		<description><![CDATA[When I&#8217;m tiring from this math, computers, automatique and other nerdy staff I&#8217;m switching to this beautiful Steinbeck&#8217;s book &#8220;East of Eden&#8221;. He is the man, that can write good.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=22&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m tiring from this math, computers, automatique and other nerdy staff I&#8217;m switching to this beautiful Steinbeck&#8217;s book &#8220;East of Eden&#8221;.</p>
<p>He is the man, that can write good.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=22&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/07/10/east-of-eden-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Working</title>
		<link>http://itanko.wordpress.com/2008/07/10/working/</link>
		<comments>http://itanko.wordpress.com/2008/07/10/working/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 08:14:20 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[diary]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=19</guid>
		<description><![CDATA[Office hours of my working life&#8230; how it can be usefull and useless. At hte one side my salary allows me to do totally nothing, but on the other side my mind is aganist it. I&#8217;ve spent all my cash in restaurant, so road to home will be loooong. Yes, i need a plan ot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=19&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Office hours of my working life&#8230; how it can be usefull and useless. At hte one side my salary allows me to do totally nothing, but on the other side my mind is aganist it.</p>
<p>I&#8217;ve spent all my cash in restaurant, so road to home will be loooong.</p>
<p>Yes, i need a plan ot solve all problems. Enumerate it&#8230;  And the first step would be stop wruiting this post. Because it is a lazziness.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=19&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/07/10/working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Road to home</title>
		<link>http://itanko.wordpress.com/2008/06/30/road-to-home/</link>
		<comments>http://itanko.wordpress.com/2008/06/30/road-to-home/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 16:09:33 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[bicycle]]></category>
		<category><![CDATA[diary]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=14</guid>
		<description><![CDATA[After end of workday i&#8217;ve noticed that weather suddenly has gone rainy :) But it couldn&#8217;t stop me. Despite of wings absense on my bicycle :) Yes it was dirty and cold, in some places and moments. But i was feel warm on the road, because it was road to home. And after this walk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=14&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After end of workday i&#8217;ve noticed that weather suddenly has gone rainy :)</p>
<p>But it couldn&#8217;t stop me. Despite of wings absense on my bicycle :) Yes it was dirty and cold, in some places and moments. But i was feel warm on the road, because it was road to home.</p>
<p>And after this walk my bicycle does not need to be washed. The rain cleared it :)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=14&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/06/30/road-to-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://itanko.wordpress.com/2008/05/02/11/</link>
		<comments>http://itanko.wordpress.com/2008/05/02/11/#comments</comments>
		<pubDate>Fri, 02 May 2008 08:17:43 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[haiku]]></category>
		<category><![CDATA[poetry]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=11</guid>
		<description><![CDATA[Little, thunder world But always to the end Two rails follows<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=11&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;">Little, thunder world<br />
But always to the end<br />
Two rails follows</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=11&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/05/02/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Shuffle algo&#8217;s</title>
		<link>http://itanko.wordpress.com/2008/05/01/shuffle-algos/</link>
		<comments>http://itanko.wordpress.com/2008/05/01/shuffle-algos/#comments</comments>
		<pubDate>Thu, 01 May 2008 19:43:13 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[diary]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/?p=9</guid>
		<description><![CDATA[People please read staff, written by Donald Knuth :) Or you&#8217;ll reinvent Fisher-Yates shuffle algo only after you&#8217;ve wrote in your sources another bad algo, which has two cycles and undetermined time of execution. Like i&#8217;ve done this :)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=9&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>People please read staff, written by Donald Knuth :)</p>
<p>Or you&#8217;ll reinvent Fisher-Yates shuffle algo only after you&#8217;ve wrote in your sources another bad algo, which has two cycles and undetermined time of execution. Like i&#8217;ve done this :)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=9&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/05/01/shuffle-algos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s wrong?</title>
		<link>http://itanko.wordpress.com/2008/03/26/whats-wrong/</link>
		<comments>http://itanko.wordpress.com/2008/03/26/whats-wrong/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 18:43:00 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[electronics]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://itanko.wordpress.com/2008/03/26/whats-wrong/</guid>
		<description><![CDATA[What&#8217;s worng with this PCB? :)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=6&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img alt="pcb" src="http://itanko.files.wordpress.com/2008/03/pp_iv.png?w=600" /></div>
<p>What&#8217;s worng with this PCB? :)<a title="pcb" href="http://itanko.files.wordpress.com/2008/03/pp_iv.png">    </a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=6&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/03/26/whats-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>

		<media:content url="http://itanko.files.wordpress.com/2008/03/pp_iv.png" medium="image">
			<media:title type="html">pcb</media:title>
		</media:content>
	</item>
		<item>
		<title>March 22, 2008</title>
		<link>http://itanko.wordpress.com/2008/03/21/hello-world/</link>
		<comments>http://itanko.wordpress.com/2008/03/21/hello-world/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 17:17:10 +0000</pubDate>
		<dc:creator>itanka</dc:creator>
				<category><![CDATA[diary]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The morning was awful. I&#8217;ve awoken with the headache. And of course my favorite drug aganist it was finished. That&#8217;s not my weekend, i&#8217;ve noticed. But neary at 11:00am headache has become the past and i&#8217;ll move to my work. And it was not empty. I&#8217;ve found a breakdown which has searched in previous 3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=1&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The morning was awful. I&#8217;ve awoken with the headache. And of course my favorite drug aganist it was finished. That&#8217;s not my weekend, i&#8217;ve noticed.</p>
<p>But neary at 11:00am headache has become the past and i&#8217;ll move to my work. And it was not empty. I&#8217;ve found a breakdown which has searched in previous 3 weeks!</p>
<p>I&#8217;m a happy.</p>
<p>Hmm&#8230; What will be the next? May be smth. about TeX. Yep.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/itanko.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/itanko.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/itanko.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/itanko.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/itanko.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itanko.wordpress.com&amp;blog=3234272&amp;post=1&amp;subd=itanko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://itanko.wordpress.com/2008/03/21/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b08116fbcb7fc8e62866ce85f35efd4d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">itanka</media:title>
		</media:content>
	</item>
	</channel>
</rss>
