<?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>NN - WordPress</title>
	<atom:link href="http://nn1234.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nn1234.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 14 Sep 2009 16:06:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='nn1234.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/c6c4139bc90315b1a7cd5fc904785648?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>NN - WordPress</title>
		<link>http://nn1234.wordpress.com</link>
	</image>
			<item>
		<title>Default arguments</title>
		<link>http://nn1234.wordpress.com/2009/09/12/default-arguments/</link>
		<comments>http://nn1234.wordpress.com/2009/09/12/default-arguments/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 07:40:26 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=89</guid>
		<description><![CDATA[Today I am going to talk about default arguments in programming languages.
What do you think about it ? Should your language support default arguments ?
Some languages support and some don&#8217;t. It has a heavy influence on the design.
What are the pros for the default arguments:
* Instead of writing many overloads you can write only one.
* [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=89&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today I am going to talk about default arguments in programming languages.<br />
What do you think about it ? Should your language support default arguments ?<br />
Some languages support and some don&#8217;t. It has a heavy influence on the design.</p>
<p>What are the pros for the default arguments:<br />
* Instead of writing many overloads you can write only one.<br />
* The code completion can show only one function instead of 20 (E.g. System.MessageBox.Show method)</p>
<p>What are the cons for the default arguments:<br />
* They can lead to strange behaviour.<br />
 &#8211; Default arguments in python: <a href="http://effbot.org/zone/default-values.htm">Default values</a><br />
 &#8211; Default arguments in C++ when using virtual functions. You use the default value according to the static and to the dynamic type.</p>
<p>So what is the best solution ?<br />
In my opinion the best solution is to create many functions with overloads, but to do it automatically.<br />
You can do it in Nemerle language using macros:</p>
<p><a href="http://rsdn.ru/forum/nemerle/2906649.1.aspx">Default arguments</a></p>
<p>Enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=89&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/09/12/default-arguments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Scripts Part 3</title>
		<link>http://nn1234.wordpress.com/2009/07/26/scripts-part-3/</link>
		<comments>http://nn1234.wordpress.com/2009/07/26/scripts-part-3/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 04:13:00 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=87</guid>
		<description><![CDATA[We are back, and now we have a different problem with scripts.
On the one hand we want things just work, on the other hand we don&#8217;t want always to expose our code to the end user.
So what the dilemma?
1. We can use the same code for production and for debugging. It is good enough when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=87&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We are back, and now we have a different problem with scripts.<br />
On the one hand we want things just work, on the other hand we don&#8217;t want always to expose our code to the end user.<br />
So what the dilemma?</p>
<p>1. We can use the same code for production and for debugging. It is good enough when we don&#8217;t have some special features in our code.<br />
2. We can obfuscate the code in the production stage. Why would we this at all? Perhaps we have some meaningful algorithm or we don&#8217;t want to expose functions and variables names.<br />
And then we have a problems.<br />
How the code should be obfuscated? The question is so difficult, so for sure I can say it depends.</p>
<p>There are some possible scenarios for obfuscation.<br />
1. change names. We get the same code structure and we have auto generated dictionary to translate real name to obfuscated name and vice versa.<br />
2. Change code. We get a different code structure. It differs from the real one. In this case our debugging capabilities are not so high.<br />
3. We can use both 1 and 2 thus providing unreadable and not debuggable code.<br />
4. I didn&#8217;t mention it before, but we can also optimize our code. Here we get the different code in the production.<br />
5.compilation. Some script engines provide support for internal byte code. We can compile our script code to the byte code, so there will be no any original text.</p>
<p>Thoughts.<br />
The problem is very interesting yet not trivial.<br />
If you are sure in your code, the best is to obfuscate, optimize and compile to byte code. This brings almost no additional information about you code.<br />
But, if your are not sure in your code, or you want to be able to debug it (especially if you want to debug in the production code), you can throw away thoughts about obfuscation.<br />
I belive that the real answer depends on the situation.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=87&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/07/26/scripts-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Scripts Part II</title>
		<link>http://nn1234.wordpress.com/2009/06/20/scripts-part-ii/</link>
		<comments>http://nn1234.wordpress.com/2009/06/20/scripts-part-ii/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 20:29:36 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=84</guid>
		<description><![CDATA[From the post before it can be realized that we do need some dynamic environment.
But how is it easy to achieve this?
Today I will talk about some common things. For these things one cannot find a good answer.
First, A script debugging.
Is this easy ? It should be, but not always.
Lets start from MS supported products.
VBA: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=84&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>From the post before it can be realized that we do need some dynamic environment.<br />
But how is it easy to achieve this?</p>
<p>Today I will talk about some common things. For these things one cannot find a good answer.</p>
<li><strong>First, A script debugging.</strong></li>
<p>Is this easy ? It should be, but not always.</p>
<p>Lets start from MS supported products.</p>
<p><strong>VBA</strong>: So how do you do this in VBA ? There is a whole world of support. It works in all MS Office programs, moreover I there are more programs with VBA support. E.g. AutoCAD support VBA programming.<br />
<strong>Scripting technology</strong>: Here you have a bunch of interfaces and baz words like &#8220;Machine Debug Manager&#8221; and &#8220;Process Debug Manager&#8221;. <a href="http://msdn.microsoft.com/en-us/magazine/cc301316.aspx">Active Scripting API</a><br />
After reading a lot and trying a lot without a success you can manage to debug a script which runs in your executable file.</p>
<p>What with the open source projects?<br />
<strong>Lua</strong>: There is no built-in debugger attached with the lua implementation from lua.org.<br />
But there is a debugger called <a href="http://www.unknownworlds.com/decoda">Decoda</a>. It costs money of course if you are not sure. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
It works very nice. It doesn&#8217;t work good with the compiled lua code and code in release. But works.<br />
<strong>Python</strong>: You can try <a href="http://docs.python.org/library/pdb.html">PDB</a>.<br />
<a href="http://www.wingware.com/">Wingware</a> claims to debug embedded Python script.<br />
I did not check them, you can try and tell me if it works.<br />
<strong>Ruby</strong>:Internet search (like with Python) gives the <a href="http://bashdb.sourceforge.net/ruby-debug/">ruby-debug</a>, it seems very similar to python debugger (pdb).<br />
What with other languages ? There are few widespread scripting languages, so if you have something good and works, you can point me to.</p>
<p>What the next?</p>
<li><strong>Second, Interoperability.</strong></li>
<p>How you can call from script to your language, and from your language to the script?</p>
<p>The best what I know is the <a href="http://www.boost.org/doc/libs/release/libs/python/doc/">Boost.Python</a> implementation.<br />
It supports whatever you want and it works, yeah ! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
For Lua you have luabind of luabridge libraries, they are pretty good too.<br />
There are more libraries than I can think about, so use the Internet search.<br />
What we have for Ruby language: <a href="http://rice.rubyforge.org/">Rice</a></p>
<p>What about ActiveScripting ?<br />
Here you have just to implement COM object and you are in. It was too easy, so the long answer that you have to implement IDispatch interface and maybe to write some more magic. To make it shorter, ATL solves all your problems.</p>
<p>The only problem with this that there is no automatic way to expose your classes to the script.<br />
Not so!<br />
With Boost.Python you have Pyste and the newer Py++:<br />
<img src="http://www.language-binding.net/_images/pyplusplus_gui.png" alt="" /></p>
<p>Looks just great. It uses GCC XML so it can be a problem for some incompatible code.<br />
One day we can see automation support for other scripts too.</p>
<p>For Active Scripting you just do nothing, because every COM object can be used automatically.<br />
The only disadvantage of this technology that it is not cross platform. (You can use WINE to make it cross platform <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p>What else bothers you with the scripting languages ?<br />
Something about the scripting virtual machine: Speed and size, multithreaded support.<br />
Something more about the language itself: Strong typed or non strong typed. duck typing.</p>
<p>Conclusion:<br />
In my opinion if you want some scripting environment in your program make it easy and extendable enough.</p>
<p>P.S.<br />
Yes, I did not mention Perl language. If someone can give me a good link for Perl language debugging and embedding, it would be nice.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=84&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/06/20/scripts-part-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>

		<media:content url="http://www.language-binding.net/_images/pyplusplus_gui.png" medium="image" />
	</item>
		<item>
		<title>Scripts Part I</title>
		<link>http://nn1234.wordpress.com/2009/06/13/scripts-part-i/</link>
		<comments>http://nn1234.wordpress.com/2009/06/13/scripts-part-i/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 08:17:03 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=77</guid>
		<description><![CDATA[Dynamic and static.
What the difference and why do we need both, or perhaps don&#8217;t need  
What the different between two approaches ?
The static approach means that all control paths are known before the application runs, the dynamic approach means that we can create on the fly different control paths.
It is easy to see that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=77&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Dynamic and static.</p>
<p>What the difference and why do we need both, or perhaps don&#8217;t need <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What the different between two approaches ?<br />
The static approach means that all control paths are known before the application runs, the dynamic approach means that we can create on the fly different control paths.</p>
<p>It is easy to see that static approach is a subset of dynamic approach.<br />
So why don&#8217;t we use dynamic in all ?<br />
There are two main reasons:</p>
<li>Performance: When we have a knowledge about all control paths in our program, we can optimize it easy</li>
<li>Strictness: The most problems can be caught before we run our program and not when the program runs.</li>
<p>It seems that the best is something like dynamic environment but with a good performance and with ability for static checking. I will return to this statement some when after.</p>
<p>Let&#8217;s start from some examples and analyze why we have two approaches:<br />
1. C &#8211; static language.<br />
2. Perl &#8211; dynamic language.</p>
<p>In C we have a well written program with all static checks we have and we know everything to happen, in Perl we create code dynamically and run it thus providing flexibility and no checks <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I know, it wasn&#8217;t a good competition. It was to demonstrate the competition.</p>
<p>Another example: We have a well designed program but we want to improve it simply by adding some dynamic abilities to our program. See Microsoft Word and VBA for example.</p>
<p>So what is the scripting language ? I won&#8217;t bother you with wikipedia and encyclopedia. I just tell you what I think.<br />
The main advantage of scripting language is no need for compilation.<br />
That&#8217;s why many languages have a success, you don&#8217;t have to wait Hours!! till you have your program compiled. Of course you pay in performance, but who cares about performance too much ?</p>
<p>Ok, but what about Virtual Machine based languages ? Here you have a very interesting case, on the one hand you have dynamic environment with JIT compilation with good optimizations, on the other hand you have static or dynamic language on top over.<br />
E.g. .Net is a dynamic environment while most languages for .Net are static.<br />
So I can claim that C# is a script language because you have C# interpreter ! <a href="http://www.mono-project.com/CsharpRepl">C# Interpreter</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It was a prelude. And now the back to the post. I will talk about adding scripting technology to C++ programs.<br />
Why C++ ? Because sometimes you have to use it.<br />
<em>Of course I prefer .Net but you don&#8217;t have .Net anywhere, at least for now. I&#8217;m still waiting for MSIL based smartphone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<p>Let&#8217;s see our candidates:<br />
<a href="http://www.lua.org/">Lua</a><br />
<a href="http://squirrel-lang.org/">Squirrel</a><br />
<a href="http://code.google.com/p/tiscript">tiscript</a><br />
<a href="http://msdn.microsoft.com/en-us/library/yek4tbz0(VS.85).aspx">JScript</a> + <a href="http://msdn.microsoft.com/en-us/library/t0aew7h6.aspx">VBScript</a><br />
<a href="http://www.softintegration.com/">C interpreter</a><br />
And more <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The purpose is simple, I want some code base and then everyone can use abilities very simple and extend my program.</p>
<p>The choice is right to you.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=77&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/06/13/scripts-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 x64</title>
		<link>http://nn1234.wordpress.com/2009/06/12/windows-7-x64/</link>
		<comments>http://nn1234.wordpress.com/2009/06/12/windows-7-x64/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 20:32:13 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=69</guid>
		<description><![CDATA[I have Windows7 for a long time in my laptop.
It works pretty good.
I have upgraded Windows7 from RC1 to post RC1 and to RC2. No problems.
The only one thing which doesn&#8217;t work good is Daemon Tools.
Today I have installed Windows 7 on my home computer.
I have AMD X2 Processor and 4Gb RAM so I wanted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=69&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have Windows7 for a long time in my laptop.</p>
<p>It works pretty good.</p>
<p>I have upgraded Windows7 from RC1 to post RC1 and to RC2. No problems.</p>
<p>The only one thing which doesn&#8217;t work good is Daemon Tools.</p>
<p>Today I have installed Windows 7 on my home computer.</p>
<p>I have AMD X2 Processor and 4Gb RAM so I wanted 64-bit system of course.</p>
<p>I have very good impression. It works fast. Even faster than my Windows XP x64 !</p>
<p>I don&#8217;t care about eye candy in Windows 7 but some eye candy features are definetly good.</p>
<p>And of course IE8 in Windows 7 works faster than in Windows XP <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Conclusion: Windows 7 is the best Windows for today. Even in RC state.</p>
<p>I will buy it for a sure <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.P.S.</p>
<p>Currently I did have one problem. The quick launch bar.</p>
<p>You don&#8217;t have it automatically in Windows 7. I hope it will be restored in the RTM.</p>
<p>Now you have to use this trick:</p>
<p><a href="http://www.howtogeek.com/howto/windows-7/add-the-quick-launch-bar-to-the-taskbar-in-windows-7/">http://www.howtogeek.com/howto/windows-7/add-the-quick-launch-bar-to-the-taskbar-in-windows-7/</a></p>
<p>Some magic but does the work.</p>
<p>And if you don&#8217;t want a watermark use patch:</p>
<p><a href="http://www.megaupload.com/?d=3AKF1TDG">http://www.megaupload.com/?d=3AKF1TDG</a></p>
<p>Enjoy.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=69&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/06/12/windows-7-x64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>BoostCon 2009</title>
		<link>http://nn1234.wordpress.com/2009/05/16/boostcon-2009/</link>
		<comments>http://nn1234.wordpress.com/2009/05/16/boostcon-2009/#comments</comments>
		<pubDate>Sat, 16 May 2009 08:58:25 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/2009/05/16/boostcon-2009/</guid>
		<description><![CDATA[Very interesting docs about C++: BoostCon 2009.
C++0x overview and Compiler support
Parallel Patterns Library in Visual Studio 2010
Icefishing for Neutrinos with Boost &#8211; Serialization Tutorial and Examples
Icefishing for Neutrinos with Boost &#8211; Hybrid Architecture with Boost Python
The Meta State Machine (Msm) library
High-Level Parallel Programming EDSL
Boost++0x #1: Hands-on rvalue References
Tuesday Presentations 
A Cmake-Based Software Process for Development [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=67&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Very interesting docs about C++: <a href="http://www.boostcon.com/community/wiki/show/private/2009/">BoostCon 2009</a>.</p>
<p>C++0x overview and Compiler support<br />
Parallel Patterns Library in Visual Studio 2010<br />
Icefishing for Neutrinos with Boost &#8211; Serialization Tutorial and Examples<br />
Icefishing for Neutrinos with Boost &#8211; Hybrid Architecture with Boost Python<br />
The Meta State Machine (Msm) library<br />
High-Level Parallel Programming EDSL<br />
Boost++0x #1: Hands-on rvalue References<br />
Tuesday Presentations </p>
<p>A Cmake-Based Software Process for Development and Integration Testing<br />
Status of the boost-cmake effort<br />
State-Oriented Programming Using Boost Statechart Library<br />
The Meta State Machine (Msm) library<br />
Multithreaded C++0x: The Dawn of a New Standard<br />
Extending Boost.Algorithms &#8212; A Progress Report<br />
Boost Exception<br />
Boost + Software Transactional Memory, Boost + Software Transactional Memory &#8211; paper<br />
Boost++0x #2: Hands-on decltype, variadic templates, advanced SFINAE Also, slides from last year&#8217;s C++0x talk, covering variadic templates et al.<br />
Wednesday Presentations </p>
<p>Keynote: Iterators Must Go<br />
C++0x Support in Visual Studio 2010<br />
Building a simple language compiler using Spirit V2.1<br />
Kamasu: Parallel computing on the GPU with boost::proto<br />
The Boost Smart Pointer Library<br />
Thursday Presentations </p>
<p>Practical C++ Test-Driven Development with Boost.Test and Bmock<br />
Dynamic Programming: A Generic Viterbi Algorithm<br />
A Generic Geometry Library, A Generic Geometry Library &#8211; paper<br />
GTL for STL-like 2D Operations<br />
The Boost Filesystem Library V3<br />
Boost Fusion<br />
An experimental domain specific language for template metaprogramming<br />
Introduction to Graphics Programming with boost::gil<br />
GIL Workshop &#8211; Basic Algorithms, link available Wednesday<br />
Friday Presentations </p>
<p>Advanced Preprocessor Meta-Programming with Boost.Preprocessor Library<br />
An Introduction to the Interval Template Library<br />
All library in a week presentations: </p>
<p>Library in Week 2009 &#8211; std::rdb</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=67&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/05/16/boostcon-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>MSI Wind U100 Plus</title>
		<link>http://nn1234.wordpress.com/2009/04/14/msi-wind-u100-plus/</link>
		<comments>http://nn1234.wordpress.com/2009/04/14/msi-wind-u100-plus/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 14:23:04 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=65</guid>
		<description><![CDATA[I got a new netbook, yes yes this name is forbidden to say   but i like this name.
So what did I get ?
http://www.msi.com/index.php?func=newsdesc&#38;news_no=771
This one with the red color, red is more beautiful  
What can I talk about my new computer. It is very very good.
It has N280.
It supports wifi b/g/n.
And works very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=65&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I got a new netbook, yes yes this name is forbidden to say <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but i like this name.</p>
<p>So what did I get ?<br />
http://www.msi.com/index.php?func=newsdesc&amp;news_no=771<br />
This one with the red color, red is more beautiful <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>What can I talk about my new computer. It is very very good.<br />
It has N280.<br />
It supports wifi b/g/n.<br />
And works very fast. Faster definitely than old Pentium 3.<br />
The keyboard is pretty good, I can arrange writing fast enough.<br />
But Fn key in the left bottom corner not so good. I always press it when I want Ctrl button.</p>
<p>So if you are searching a good netbook, you must buy this !!!</p>
<p>There is one problem which isn&#8217;t solved.<br />
What OS should I install and use this computer.</p>
<p>What I got is Windows XP Home Edition !!<br />
It works good, every Fn+Fx keys work, in ubuntu not all work.<br />
But i don&#8217;t like Windows XP Home ..</p>
<p>Maybe Windows 7&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=65&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/04/14/msi-wind-u100-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello IE 8 RC1 Final</title>
		<link>http://nn1234.wordpress.com/2009/02/02/hello-ie-8-rc1-final/</link>
		<comments>http://nn1234.wordpress.com/2009/02/02/hello-ie-8-rc1-final/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:10:32 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=62</guid>
		<description><![CDATA[So for now definitely a good version of IE 8!
Works faster but not as fast as Maxthon.
All sites work as expected.
Even ACID 2 test. Not ACID 3   But at least something good  
Anyway, without IE7Pro plugin this browser is not usable at all !
MS should think about merging it to the IE.
The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=62&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So for now definitely a good version of IE 8!<br />
Works faster but not as fast as Maxthon.<br />
All sites work as expected.<br />
Even ACID 2 test. Not ACID 3 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  But at least something good <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, without IE7Pro plugin this browser is not usable at all !<br />
MS should think about merging it to the IE.</p>
<p>The security part is very good though. It asks about any strange thing. Well done.</p>
<p>Hopefully the final version will work even faster. I still do not get why opening a tab takes so much time.<br />
Maxthon can open 10 tabs while IE 8 opens 1 tab. (I do not compare to IE7 at all <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  )</p>
<p>P.S.<br />
Still no Flash for IE x64 what makes IE x64 useless.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=62&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/02/02/hello-ie-8-rc1-final/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Boot loaders</title>
		<link>http://nn1234.wordpress.com/2009/01/09/boot-loaders/</link>
		<comments>http://nn1234.wordpress.com/2009/01/09/boot-loaders/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 22:09:58 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=59</guid>
		<description><![CDATA[I have a good rescue DVD, it is very helpful to fix computers.
It is a multiboot DVD which includes Windowses installations, some Windows Live, Hiren&#8217;s Boot CD, System Rescue CD, Acronis Boot CD and something else. The list changes all the time because I look up for improvements.
I am using now a tool called Bootable [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=59&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have a good rescue DVD, it is very helpful to fix computers.</p>
<p>It is a multiboot DVD which includes Windowses installations, some Windows Live, Hiren&#8217;s Boot CD, System Rescue CD, Acronis Boot CD and something else. The list changes all the time because I look up for improvements.</p>
<p>I am using now a tool called <a>Bootable CD Wizard</a>. This is a very simple boot loader for CD which allows everything you need:<br />
1. Support for gif format in logo.<br />
2. Simple to use.<br />
3. Can boot almost everything. It boots Windows installation , Linux installation without any problems.<br />
4. Can boot ISO image directly ! You just write a path and it works.</p>
<p>The only problem is a lack of USB support. I know that some day I will need it, so I have started searching for something better.<br />
The candidates are: ISOLinux, GRUB, GRUB2.<br />
It is easy enough to install them to the CD but it is not easy to make them work.<br />
I did not find how to load ISOLinux from GRUB or GRUB2. It just not as simple as it is done using BCDW.<br />
I did not find how to load ISOLinux from ISOLinux, it didn&#8217;t work for me either. Here I can just edit isolinux.cfg but it is not what I want..</p>
<p>Sounds strange but program from 2004 beats the new programs from 2009!!<br />
I think that all my needs can be satisfied using GRUB or ISOLinux but the solution will not be intuitive like it is done in BCDW.<br />
Some day the problem will be solved, some day.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=59&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/01/09/boot-loaders/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
		<item>
		<title>Netbook Remix</title>
		<link>http://nn1234.wordpress.com/2009/01/05/netbook-remix/</link>
		<comments>http://nn1234.wordpress.com/2009/01/05/netbook-remix/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 20:18:41 +0000</pubDate>
		<dc:creator>NN</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nn1234.wordpress.com/?p=55</guid>
		<description><![CDATA[Have you heard about netbook ? It is a small computer with a small display. I had Asus 701 model. The main OS was Linux with english and no translation. The goal was installation a normal system with russian interface.
First I looked at Windows XP Tiny edition it looked interesting. I even found how to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=55&subd=nn1234&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Have you heard about netbook ? It is a small computer with a small display. I had Asus 701 model. The main OS was Linux with english and no translation. The goal was installation a normal system with russian interface.</p>
<p>First I looked at Windows XP Tiny edition it looked interesting. I even found how to boot Hiren&#8217;s Boot CD from USB and run Windows installation.</p>
<p>Everything was prepared but <a href="http://www.eeebuntu.org/">it</a> was found. <a href="http://www.eeebuntu.org/">Eeebuntu</a>!</p>
<p>The main problem with all strange hardware is driver for all. I assumed about difficulty finding driver for Wi-Fi network adapter and web cam for Windows. And there it is all packed, no need to look in all internet.</p>
<p>So was it.</p>
<p> </p>
<p>The other interesting part is <a href="http://www.canonical.com/projects/ubuntu/nbr">netbook remix</a>, nbr-launcher. It is very intuitive and minimalistic interface. It is good for touchpads because you have no need to scroll in menus and good for those who want simplicity in their life.</p>
<p>IMHO it is good for desktops too.</p>
<p>Anyway eeebuntu was a good choice, russian interface was completely installed, every program worked as expected. There was enough space for OpenOffice, Skype, many games and even for WINE <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Finally about 250Mb was left free.</p>
<p>In any way you have to buy some USB stick to have all things close to heart so it is ok.</p>
<p>Currently the applets work only in Gnome. KDE will be supported some day, I hope.</p>
<p> </p>
<p>References:</p>
<p><a href="http://www.eeebuntu.org/">Eeebuntu</a></p>
<p><a href="http://www.canonical.com/projects/ubuntu/nbr">Ubuntu Netbook Remix</a> - there you have a nice video. </p>
<p><a href="https://launchpad.net/netbook-remix">Netbook Remix</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nn1234.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nn1234.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nn1234.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nn1234.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nn1234.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nn1234.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nn1234.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nn1234.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nn1234.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nn1234.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nn1234.wordpress.com&blog=1745292&post=55&subd=nn1234&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nn1234.wordpress.com/2009/01/05/netbook-remix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742dd90e244e5bb0e4d55d0936b5af94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">NN</media:title>
		</media:content>
	</item>
	</channel>
</rss>