<?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>Virtuous cycle &#187; ogito</title>
	<atom:link href="http://www.owczarek.com.pl/blog/tag/ogito/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.owczarek.com.pl/blog</link>
	<description>Bartlomiej Owczarek weblog</description>
	<lastBuildDate>Mon, 10 Jan 2011 13:52:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>RESTful Ogito: I need to clean up some mess</title>
		<link>http://www.owczarek.com.pl/blog/2009/05/08/restful-ogito-i-need-to-clean-up-some-mess/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/05/08/restful-ogito-i-need-to-clean-up-some-mess/#comments</comments>
		<pubDate>Thu, 07 May 2009 23:47:46 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ogito]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=488</guid>
		<description><![CDATA[I decided to rebuild something I specifically hoped would not need to be touched, namely Ogito&#8217;s internal routes structure in Rails. Ogito uses links looking like this: http://www.ogito.eu/en/place/polska/warszawa/luna-marszalkowska http://www.ogito.eu/en/directory/contentitem/movies/2003/bialy-krol-czerwony-kauczuk-czarna-smierc The idea in itself is ok &#8211; links include context information like city and country, so that they are more meaningful. Much better, in my opinion, [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to rebuild something I specifically hoped would not need to be touched, namely Ogito&#8217;s internal routes structure in Rails.</p>
<p>Ogito uses links looking like this:</p>
<pre>http://www.ogito.eu/en/place/polska/warszawa/luna-marszalkowska

http://www.ogito.eu/en/directory/contentitem/movies/2003/bialy-krol-czerwony-kauczuk-czarna-smierc
</pre>
<p>The idea in itself is ok &#8211; links include context information like city and country, so that they are more meaningful. </p>
<p>Much better, in my opinion, than links like /places/4652. Not even from the point of view of SEO, but rather of users who are given additional hint if the link is relevant to their search or not.</p>
<p>However, the purpose doesn&#8217;t really justify the way I implemented them<span id="more-488"></span>, that is by defining plenty of custom routes like this:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">  map.<span style="color:#9900CC;">place_edit</span>          <span style="color:#996600;">'place/edit/:country_id/:city_id/:place_id'</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'places'</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'edit'</span>
  map.<span style="color:#9900CC;">place_destroy</span>       <span style="color:#996600;">'place/delete/:country_id/:city_id/:place_id'</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'places'</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'destroy'</span>
  map.<span style="color:#9900CC;">place_add</span>           <span style="color:#996600;">'place/add/:country_id/:city_id'</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'places'</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'new'</span>
  map.<span style="color:#9900CC;">place</span>               <span style="color:#996600;">'place/:country_id/:city_id/:place_id'</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'places'</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'show'</span>
  map.<span style="color:#9900CC;">places</span>              <span style="color:#996600;">'places/:country_id/:city_id'</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'places'</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'index'</span>, <span style="color:#ff3333; font-weight:bold;">:defaults</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006600; font-weight:bold;">&#123;</span>:country_id<span style="color:#006600; font-weight:bold;">=&gt;</span>nil,:city_id<span style="color:#006600; font-weight:bold;">=&gt;</span>nil<span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>Complexity is created mainly by having countries and cities as part of the route, which has additional downside of having to provide all these objects when creating a link. </p>
<p>Instead I could use simple resource-based routes with some nesting, which would look more or less like this:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">map.<span style="color:#9900CC;">resources</span>           <span style="color:#ff3333; font-weight:bold;">:cities</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>city<span style="color:#006600; font-weight:bold;">|</span>
    city.<span style="color:#9900CC;">resources</span>        <span style="color:#ff3333; font-weight:bold;">:places</span>, <span style="color:#ff3333; font-weight:bold;">:only</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:index</span><span style="color:#006600; font-weight:bold;">&#93;</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
map.<span style="color:#9900CC;">resources</span>           <span style="color:#ff3333; font-weight:bold;">:countries</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>country<span style="color:#006600; font-weight:bold;">|</span>
    country.<span style="color:#9900CC;">resources</span>     <span style="color:#ff3333; font-weight:bold;">:places</span>, <span style="color:#ff3333; font-weight:bold;">:only</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:index</span><span style="color:#006600; font-weight:bold;">&#93;</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
map.<span style="color:#9900CC;">resources</span>           <span style="color:#ff3333; font-weight:bold;">:places</span>, <span style="color:#ff3333; font-weight:bold;">:except</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:index</span><span style="color:#006600; font-weight:bold;">&#93;</span></pre></div></div>

<p>Nesting resources allows index links to include country or city, for example:</p>
<pre>http://www.ogito.eu/en/countries/polska/places</pre>
<p>I could go extreme with nesting, since for example place belongs to city which belongs to country, but I think the links would be too long as a result.</p>
<p>Urls of individuals objects are not nested, but they can include all the details in the id string:</p>
<pre>http://www.ogito.eu/en/places/1161-adria-torunska-bydgoszcz</pre>
<p>The result is the same, but there is no deviation from Rails standard and the application is much easier to develop and maintain.</p>
<p>Often being a novice brings benefit of fresh perspective and new ideas, but in this case I would prefer to have enough experience to get it right first time. Making changes now is not a big problem, but Google already indexed something like 3,000 subpages, so some redirection strategy will have to be in place.</p>
<p>Uff just hope it&#8217;s the final version this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/05/08/restful-ogito-i-need-to-clean-up-some-mess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meeting Warsaw anticapitalists</title>
		<link>http://www.owczarek.com.pl/blog/2009/05/03/meeting-warsaw-anticapitalists/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/05/03/meeting-warsaw-anticapitalists/#comments</comments>
		<pubDate>Sun, 03 May 2009 20:17:35 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Economy]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[ogito]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=473</guid>
		<description><![CDATA[Yesterday I decided to spice up my weekend with some extreme flavors. So I visited a meeting organized by Pracownicza Demokracja (&#8220;Labor Democracy&#8221;), the local leftist movement. And I quite succeeded with my initial goal, even though I only managed to sustain two hours of the event. On May 1st PD organized anti-capitalist happening, which [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2009/05/pd.jpg" alt="" title="pd" width="50" height="72" class="entry-img-left" />Yesterday I decided to spice up my weekend with some extreme flavors. So I visited a meeting organized by <a href="http://www.pracdem0.republika.pl/">Pracownicza Demokracja</a> (&#8220;Labor Democracy&#8221;), the local leftist movement. </p>
<p>And I quite succeeded with my initial goal, even though I only managed to sustain two hours of the event.</p>
<p>On May 1st PD organized anti-capitalist happening, which I obviously skipped, and on the next day, that is yesterday, a series of lectures and discussions.</p>
<p>What attracted me &#8211; other than the morning hour, helping me to mobilize to wake up early &#8211; was the first lecture by anthropology professor about organization of prehistoric cultures (which was supposedly close to communist one).</p>
<p>First thing I heard upon arriving was that the lecture was canceled, which was quite disappointing, but decided to stay nevertheless for the replacement presentation delivered by one of the activists. </p>
<p>Not once I regretted this decision in the coming hour or so. The presenter didn&#8217;t speak a very good Polish which took away from the content, and there was not much to take away in the first place.</p>
<p>Leaving aside the starting point &#8211; based on the assumption that current crisis somehow spells end of the capitalism &#8211; the &#8220;to be&#8221; state of the Marxists seems awfully vaguely defined. Unless by defining the future you can accept listing what&#8217;s bad about the current and saying that the promise system will be done with all of it (somehow).</p>
<p>You might say that this kind of living-in-the-past could be expected. And as I listened, it seemed to be the case, it seemed there was no recognition whatsoever about how work is different nowadays, as if majority of population still worked at production lines.</p>
<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2009/05/empire.jpg" alt="" title="empire" width="50" height="75" class="entry-img-left" />But I still remember the <a href="http://en.wikipedia.org/wiki/Empire_(book)">Empire</a> book that I read (in Cuba), by Negri and Hardt, both Marxist philosophers. No need to agree with the whole premise, but I found some ideas inspiring and new.</p>
<p>The idea that I remember from Empire (apologies if my memory distorts it) is that it is no longer useful to analyze &#8220;imperialistic&#8221; policy of a particular country, as it was done before. What we have now is a global system of capitalist exchange, which expands into all corners of the world and all social spheres. There is no one point of control, but there is &#8220;imperial&#8221; layer of governance (Empire).  </p>
<p>What&#8217;s characteristic of the Empire is that crises make it stronger. Crises justify the need to ramp up global imperial powers to overcome them. Isn&#8217;t current crisis used to push towards more global coordination of all countries? There is even talk about necessity to establish a common global currency.</p>
<p>Anyways, there was not a trace of such stuff on Saturday morning. Perhaps the later material was better, but I didn&#8217;t dare to risk another session after the first one.</p>
<p>What was really fun was the discussion after presentation finished. One after another people rose and asked questions. Or made statements. More often statements than questions.</p>
<p>One guy rose and introduced himself as a programmer and an anthropologist and declared that collective doesn&#8217;t work at all after a certain threshold.</p>
<p>Senior white haired bearded man explained in a quite low voice how he was taught communism (somewhere), without any obvious conclusion.</p>
<p>Another guy criticized the speaker in four points, of which I remember the stupidity of idea to rotate &#8220;unpleasant&#8221; jobs between people, for example having doctor doing a physical work for a change.</p>
<p>One peculiar looking lady called Basia &#8211; the organizers must have known her &#8211; started to explain how crises are embedded into the very nature of the capitalism which she remembers from economy lessons and that she was actually really doing well at these lessons &#8211; before organizers hushed her.</p>
<p>There were also a couple of homeless people which I forgot to mention, but they mostly sat looking indifferent or slept. Only the mention that lots of buildings stay unused seemed to resonate somehow with them.</p>
<p>As an ominous sign for revolution prospects in Poland, number of actual marxists in room didn&#8217;t seem to exceed much the number of organizers.</p>
<p>All in all the discussion was the greatest value of the whole event (the part I saw).</p>
<p>Maybe Marxist meetings wouldn&#8217;t be the first example, but I always thought of <a href="http://www.ogito.eu/en">Ogito</a> as a way to learn about such things happening around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/05/03/meeting-warsaw-anticapitalists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ogito (soft) launched!</title>
		<link>http://www.owczarek.com.pl/blog/2009/04/20/ogito-soft-launched/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/04/20/ogito-soft-launched/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 21:45:45 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Private]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[nasza klasa]]></category>
		<category><![CDATA[ogito]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=442</guid>
		<description><![CDATA[Today is my birthday and aside from this fact, I&#8217;m writing to announce that the project I&#8217;ve been working on for some time already, called Ogito, is now accessible to the public! Even though it&#8217;s a pretty early version. Visit it at http://www.ogito.eu, if everything goes fine you should see something like this: As a [...]]]></description>
			<content:encoded><![CDATA[<p>Today is my birthday and aside from this fact, I&#8217;m writing to announce that the project I&#8217;ve been working on for some time already, called Ogito, is now accessible to the public! </p>
<p>Even though it&#8217;s a pretty early version.</p>
<p><strong>Visit it at <a href="http://www.ogito.eu">http://www.ogito.eu</a></strong>, if everything goes fine you should see something like this:</p>
<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2009/04/ogito_fullscreen.png" alt="Ogito full screen" title="Ogito" width="400" height="215" class="entry-img-center" /></p>
<p>As a matter of fact it was open for something like a week already, but I wanted to fulfill some common requests of people who saw it first. Like, that it should work on Windows. Now it works (I think), even in internet explorer! (update: unless it&#8217;s IE 6 or 5.5. then not so much. thanks for a tip Elena:)</p>
<p><strong>So what it does?</strong></p>
<p>Main aim is to explore opportunities to invest your free time.</p>
<p>Like in &#8220;use every moment&#8221;.</p>
<p>It will have a broad range of content &#8211; not only mainstream ones, like movies &#038; theaters, but also less common activities, like voluntary works. The stuff it presents will come with accurate information, including exact (personalized) prices.</p>
<p>The content will be easily searchable, so you can look, for example, into theater shows one month ahead or find israeli movies played right now in your city.</p>
<p>On top of this it comes with community and personalization features. </p>
<p><strong>What of all this is available now?</strong></p>
<p>Everything mentioned is represented, even though in often basic shape. So, for content we start with movies in all Poland and theaters in Warsaw, search works as described but not full text yet, there are profiles and comments but not yet ability to follow other people, etc.</p>
<p>Anyway, see for yourself. Granted, it will improve almost daily. Use the &#8220;walkthrough&#8221; link on the right for some quick help.</p>
<p><strong>Main message: send me feedback what you think!</strong></p>
<p>And drop by once in a while to see changes. Coming soon: concerts and events data from Eventim.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/04/20/ogito-soft-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning from Twitter, Facebook</title>
		<link>http://www.owczarek.com.pl/blog/2009/03/20/learning-from-twitter-facebook/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/03/20/learning-from-twitter-facebook/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 21:34:20 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Social web]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[ogito]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=432</guid>
		<description><![CDATA[Lately I&#8217;m mostly busy with community functionality of Ogito and I&#8217;m trying to take advantage of some intuitions from Twitter and Facebook. I&#8217;ve had Facebook account for some time, but was never an active user. Twitter I never used at all, even though I had some experience with blip, a Polish twitter look-alike. So I [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;m mostly busy with community functionality of <a href="http://www.ogito.eu/">Ogito</a> and I&#8217;m trying to take advantage of some intuitions from Twitter and Facebook.</p>
<p>I&#8217;ve had Facebook account for some time, but was never an active user. Twitter I never used at all, even though I had some experience with blip, a Polish twitter look-alike. So I opened a twitter account to experience the original thing.</p>
<p>My initial goal was something very close to twitter &#8211; or how I imagined it should feel like before actually using it. Low barrier of entry, easy to use, one information stream carrying all the relevant user updates.</p>
<p>After playing with Twitter and reading reactions to Facebook latest redesign, which makes social network look quite similar to its much smaller competitor, my vision is evolving a bit.</p>
<p>In fact I wasn&#8217;t disappointed by how easy it was to start using twitter. The application is lighthearted and inviting, also because the community seems to radiate with enthusiasm of the early converts.</p>
<p>On the other hand, and maybe it&#8217;s my lack of experience with the app, the updates stream seems overwhelming, difficult to read continuously and unstructured. Figuring a conversation from exchanges of replies is one example when I&#8217;m quite lost (stream of given users shows replies he directed at someone, but not the other way round, so it&#8217;s hard to understand the context).</p>
<p>Facebook feed was supposedly better. It had intelligence to handle updates (status vs activity reports) differently. It lost this advantage after redesign and maybe this is why so many people hate it.  </p>
<p>Given that we will have a lot of non-status related updates, Facebook (as of before redesign) might serve as a better inspiration.</p>
<p>Its latest redesign also suggests a number of points where caution should be applied (I&#8217;m basing it mostly on this <a href="http://www.huffingtonpost.com/chris-willman/facebooks-lousy-facelift_b_175358.html">summary</a> in huffingtonpost): overuse of user thumbs, large fonts and trivial updates, lack of real time view. </p>
<p>Of course, many of the complaints (photos flooding the feed em masse etc.) will be resolved by subsequent fixes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/03/20/learning-from-twitter-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search getting fragmented, verticals most likely to fall to&#8230; Google</title>
		<link>http://www.owczarek.com.pl/blog/2009/02/07/search-getting-fragmented-verticals-most-likely-to-fall-to-google/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/02/07/search-getting-fragmented-verticals-most-likely-to-fall-to-google/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 17:59:37 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ogito]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=425</guid>
		<description><![CDATA[I&#8217;m reading an interesting post by John Borthwick. Search is fragmenting into verticals. In the past year two meaningful verticals have emerged &#8211; one is video &#8211; the other is real time search. It&#8217;s interesting and for me well, personally encouraging, because one can think of what I do with Ogito as going into vertical [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m reading an <a href="http://www.borthwick.com/weblog/2009/02/05/creative-destruction-google-slayed-by-the-notificator/">interesting post by John Borthwick</a>.</p>
<blockquote><p>Search is fragmenting into verticals. In the past year two meaningful verticals have emerged &#8211; one is video &#8211; the other is real time search.</p></blockquote>
<p>It&#8217;s interesting and for me well, personally encouraging, because one can think of what I do with <a href="http://www.ogito.eu/en">Ogito</a> as going into vertical search. Kind of real time, too (time sensitive, at least).</p>
<p>There is also a funny episode from a while ago, when AOL thought of itself as an ultimate disruptor (natural-born disruptor?).</p>
<blockquote><p>It was an interesting argument &#8211; heart felt and in the early days of the Internet cycle it seemed credible.   The Internet leaders would have the creative DNA and organizational fortitude to withstand further cycles of disruption.    Christensen didn&#8217;t buy it.     He said time and time again disruptive business confuse adjacent innovation for disruptive innovation.   They think they are still disrupting when they are just innovating on the same theme that they began with.   As a consequence they miss the grass roots challenger &#8211; the real disruptor to their business.   The company who is disrupting their business doesn&#8217;t look relevant to the billion dollar franchise, its often scrappy and unpolished, it looks like a sideline business, and often its business model is TBD.</p></blockquote>
<p>Rest of the post serves to prove that &#8220;real time web&#8221; is the next disruptive wave (especially for Google). I though real time web is another Robert Scoble bullshit, because for some time he was the only one that I read hypeing up this theme, but maybe there is something to it after all. </p>
<p>I&#8217;m not convinced that there any major reasons for Google not to dominate the new niche, though. They did it with video. And with the blog search, earlier. Real time search companies may still end up like Technorati. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/02/07/search-getting-fragmented-verticals-most-likely-to-fall-to-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You can now run EC2 servers in Europe &#8211; how faster it is?</title>
		<link>http://www.owczarek.com.pl/blog/2008/12/22/you-can-now-run-ec2-servers-in-europe-how-faster-it-is/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/12/22/you-can-now-run-ec2-servers-in-europe-how-faster-it-is/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 23:57:29 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Startups]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[ogito]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=406</guid>
		<description><![CDATA[I just reached the first milestone &#8211; deploying my application into a production server. Roughly at the same time, Amazon announced that it is now possible to have EC2 instances running on data centers located in Europe. What is EC2? It&#8217;s a platform which allows you to run your application on arbitrary number of virtual [...]]]></description>
			<content:encoded><![CDATA[<p>I just reached the first milestone &#8211; deploying my application into a production server. Roughly at the same time, Amazon announced that it is now possible to have EC2 instances running on data centers located in Europe.</p>
<p>What is EC2? It&#8217;s a platform which allows you to run your application on arbitrary number of virtual servers. EC2 charges for servers on hourly basis, so it allows, in principle, to scale very flexibly.</p>
<p>From the very beginning I wanted Ogito to run on EC2.</p>
<p>Having servers located in Europe is a good thing, because latency is lower &#8211; ie. requests get handled faster because they don&#8217;t have to travel back and forth over the ocean. But I wanted to have some idea what the difference would be and ran couple of pings from my home location. Results:</p>
<ul>
<li>EC2 us-east instance: 120ms
</li>
<li>EC2 eu-west instance: 60ms
</li>
<li>Google.pl: 46ms</li>
<li>Progreso.pl: 17ms</li>
<li>Onet.pl: 15ms</li>
</ul>
<p>60ms. Doesn&#8217;t beat local hosting, but better than hosting in the US.</p>
<p>For now my app is running in the us-east region, anyway, because ec2onrails AMI that I use (AMI is a server &#8220;template&#8221;) is not available in Europe yet. I was a bit surprised that one cannot access public AMIs across the regions, but that&#8217;s the way it works &#8211; regions are very self-contained.</p>
<p>Side note 1: I deployed my app successfully over the weekend, upgrading ec2onrails image to rails 2.2.2 and doing some other modifications. Hooray!</p>
<p>Side note 2: that said, the app currently is able to only display &#8220;come back later&#8221; page without any errors:)</p>
<p>Side note 3: I wish I had a place to write about more geeky stuff, I don&#8217;t like writing them here because my friends would find them hard to digest, while having another side blog never worked for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/12/22/you-can-now-run-ec2-servers-in-europe-how-faster-it-is/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vanishing point</title>
		<link>http://www.owczarek.com.pl/blog/2008/11/09/vanishing-point/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/11/09/vanishing-point/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 18:05:23 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Private]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[ogito]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=400</guid>
		<description><![CDATA[So much for the healthier lifestyle: last month I&#8217;ve been working 7 days a week, eating junk food and outputting spaghetti code (hopefully my coding is getting better with time). In contrast, I had no time for yoga, fresh air and friends. And of course blogging. But blogging is already dead according to Nick Carr, [...]]]></description>
			<content:encoded><![CDATA[<p>So much for the healthier lifestyle: last month I&#8217;ve been working 7 days a week, eating junk food and outputting spaghetti code (hopefully my coding is getting better with time).</p>
<p>In contrast, I had no time for yoga, fresh air and friends.</p>
<p>And of course blogging. </p>
<p>But blogging is already dead according to Nick Carr, so maybe it doesn&#8217;t matter so much.</p>
<p>I&#8217;ve been trying fanatically to reach certain milestone that I set for October, but unfortunately, in the course of work, the milestone became a sort of vanishing point.</p>
<p>(side note/explanation: I am currently working on an Internet application that I want to reach some usable state beginning next year)</p>
<p>As expected, setting for a real work allowed to stress-test the initial concept. Some changes proved to take a lot of time. For example, I thought I would be able to classify the objects that I work with into a neat set of categories. It didn&#8217;t work with the real cases, though, and I had to change the data model to allow necessary flexibility.</p>
<p>On the other hand, number of smaller issues that emerge in the process and have to be taken care of is astonishing (and quite scary).</p>
<p>Start of new year is a mid-term milestone that I will use to see where I am, after 3 months of work.</p>
<p>What I find optimistic, though: I still very much look forward to reaching the target I aim for. The road up is steep, no surprises here, but I believe that it&#8217;s worthwhile the more the further I go. I prefer it this way rather than the other.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/11/09/vanishing-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m going to try Rails on EC2</title>
		<link>http://www.owczarek.com.pl/blog/2008/09/19/im-going-to-try-rails-on-ec2/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/09/19/im-going-to-try-rails-on-ec2/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 18:58:45 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Startups]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[ogito]]></category>
		<category><![CDATA[poland]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=370</guid>
		<description><![CDATA[I&#8217;m not exactly in a stage of getting into technical details, but I already kind of decided that I will switch to Ruby on Rails for development of the current project. Reasons: learning rails would probably be no harder than staying with PHP and learning framework like Zend, which is where I stopped last time. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not exactly in a stage of getting into technical details, but I already kind of decided that I will switch to <a href="http://en.wikipedia.org/wiki/Ruby_on_rails">Ruby on Rails</a> for development of the current project. </p>
<p>Reasons: learning rails would probably be no harder than staying with PHP and learning framework like Zend, which is where I stopped last time.</p>
<p>And RoR promises much improvement with time-to-market.</p>
<p>Having sort of decision on rails, I wanted to have an initial idea of available hosting options, also for the needs of a &#8220;back of an envelope&#8221; business case. </p>
<p>I&#8217;m very happy with my current provider, <a href="http://progreso.pl/">progreso</a>, but sadly they don&#8217;t support rails on shared servers, yet. If I wanted to host with them, I would have to buy a dedicated server anyway.</p>
<p>But as far as dedicated servers are concerned, Amazon&#8217;s <a href="http://www.amazon.com/gp/browse.html?node=201590011">EC2</a> looks much more attractive (at least at a first glance). </p>
<p>As for pricing, basic virtual servers are cheaper than in case of progreso (like, $70 a month excluding bandwidth and additional storage).</p>
<p>Additionally, path to hosting Rails applications on EC2 seems already well-beaten. For example here: <a href="http://ec2onrails.rubyforge.org/">Deploy a Ruby on Rails app on EC2 in five minutes</a>. There are even Polish startups (<a href="http://shoptrix.pl/">shoptrix</a>) who chose this solution.</p>
<p>And of course the most advertised benefit of using EC2 is the ability to increase capacity on pay-as-you-go basis, by easily launching new virtual servers when necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/09/19/im-going-to-try-rails-on-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second blog</title>
		<link>http://www.owczarek.com.pl/blog/2008/01/03/second-blog/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/01/03/second-blog/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 22:28:37 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[ogito]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/2008/01/03/second-blog/</guid>
		<description><![CDATA[Dear readers. With some hesitation I would like to inform you that you might also want to check a second blog, which I update from time to time. In fact, usually more frequently than this one. It&#8217;s at http://blog.ogito.eu/. Ogito is a draft blog for whatever next-big-idea I am currently chasing. Why keep blogs separate? [...]]]></description>
			<content:encoded><![CDATA[<p>Dear readers. With some hesitation I would like to inform you that you might also want to check a second blog, which I update from time to time. In fact, usually more frequently than this one. It&#8217;s at <a href="http://blog.ogito.eu/">http://blog.ogito.eu/</a>.</p>
<p>Ogito is a draft blog for whatever next-big-idea I am currently chasing.</p>
<p>Why keep blogs separate? Sometimes it is indeed awkward, but more often I don&#8217;t want notes (often quite technical) from constantly changing ideas to hit this personal blog. Also, switching idea every month might not look serious, so I want to keep it somehow aside:)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/01/03/second-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

