<?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>centriment &#187; misc</title>
	<atom:link href="http://www.centriment.com/tag/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.centriment.com</link>
	<description>stories of the spirit living inside the computer</description>
	<lastBuildDate>Sun, 26 Jul 2009 12:29:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The one about Centriment</title>
		<link>http://www.centriment.com/2009/03/14/the-one-about-centriment/</link>
		<comments>http://www.centriment.com/2009/03/14/the-one-about-centriment/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 22:43:55 +0000</pubDate>
		<dc:creator>Jan Dzik</dc:creator>
				<category><![CDATA[Generic]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.centriment.com/?p=50</guid>
		<description><![CDATA[You may be wondering, what is centriment?
Well, it&#8217;s a name that just popped into my head one day while playing with some code. If someone asked me to tell him what this invented word means, I&#8217;d have to say that it is the feeling that a programmer, a hacker, gets when he is on roll [...]]]></description>
			<content:encoded><![CDATA[<p>You may be wondering, what is <em>centriment</em>?</p>
<p>Well, it&#8217;s a name that just popped into my head one day while playing with some code. If someone asked me to tell him what this invented word means, I&#8217;d have to say that it is the feeling that a programmer, a hacker, gets when he is on roll and knows that <strong>the hack</strong> he is doing right now is <strong>super-cool</strong>. It is the <strong>eureka moment</strong> you get when you suddenly realized the solution to a bind-boggling problem. It is the feeling you get when you hunt down and squash to mere pulp the most annoying bug you were ever faced with after a couple of days of exhausting debugging. In other, simpler, words it&#8217;s the <strong>joy of  hacking</strong>.</p>
<p>When I finally decided to setup my own blog, it was clear to me how it should be named. Hence, centriment.com. In this blog I will try and share my experiences and opinions in the field of computing.</p>
<p>If you are also wondering about the subtitle, &#8220;stories of the <em>spirit</em> living inside the computer&#8221;, it is a tribute to the <a title="Don't worry, the wizard will not turn you into a toad :)" href="http://mitpress.mit.edu/sicp/" target="_self">wizard book</a> (Stucture and Interpretation of Computer Programs) and its authors,<a href="http://en.wikipedia.org/wiki/Hal_Abelson"> Harold Abelson</a> and <a href="http://en.wikipedia.org/wiki/Gerald_Jay_Sussman">Gerald Jay Sussman</a>, one the best computer books I ever read (still reading it actually <img src='http://www.centriment.com/wp-content/plugins/tango-smileys-extended/tango/razz.png' alt='Razz' class='tse-smiley' />).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.centriment.com/2009/03/14/the-one-about-centriment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The one about &#8220;Hello World&#8221;</title>
		<link>http://www.centriment.com/2009/03/12/the-one-about-hello-world/</link>
		<comments>http://www.centriment.com/2009/03/12/the-one-about-hello-world/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 21:19:38 +0000</pubDate>
		<dc:creator>Jan Dzik</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.centriment.com/?p=3</guid>
		<description><![CDATA[Hello World!!
This is my first blog post! I am very excited about starting my own blog. I have been a software engineer for many years now and I have always thought about sharing my experiences in the field of computing with others, through a place of my own, but I never seemed to have the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello World!!</p>
<p>This is my first blog post! I am very excited about starting my own blog. I have been a software engineer for many years now and I have always thought about sharing my experiences in the field of computing with others, through a place of my own, but I never seemed to have the time to get down with it. Finally, I&#8217;ve setup my own domain, installed wordpress, installed a theme and while writing this I am still experimenting a bit with it.</p>
<p>Since the first thing we do when learning a new programming language is to write a &#8220;hello world&#8221; program, and this is the first post in this blog, this is about&#8230; &#8220;Hello Word&#8221;!</p>
<p>And here it is in <em>C</em>, the first &#8220;real&#8221; programming language I&#8217;ve learned:</p>
<pre name="code" class="c">#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;

int main(int argc, char *argv[])
{
  printf("Hello Word!");
  return EXIT_SUCCESS;
}</pre>
<p>Here it is in C#:</p>
<pre name="code" class="c#">using System;
public class Application
{
  public static void Main(string[] args)
  {
    Console.WriteLine("Hello World!");
  }
}</pre>
<p>And here it is in Python:</p>
<pre name="code" class="python">print "Hello World!"</pre>
<p>Every time you start to learn a new language or system you begin by making a simple &#8220;hello world&#8221; application. It is not useful, it does not do anything, it&#8217;s plain stupid code. However, it&#8217;s all the most exciting because that&#8217;s when you start learning something new and unknown to you. Even such simple code has a lot of knowledge to convey to its author. First of all, you learn if the code has to be compiled and interpreted, if it is compiled to machine code or some other intermediate language executed by a virtual machine. You are also exposed to the basic rules and coding styles. You learn if a language is object oriented, loosely or strictly typed.</p>
<p>Soon after that, you start writing a little less trivial things and start feeling like a kid with a new toy. As you learn even more, you start feeling like a little god that can meddle with his own privately created universe.</p>
<p>And now this is my &#8220;hello world&#8221; in the blog world!</p>
<p>Remember your &#8220;hello world!&#8221;s?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.centriment.com/2009/03/12/the-one-about-hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
