<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-14875814</id><updated>2011-12-15T03:34:56.884+01:00</updated><title type='text'>Rstless - everyday news for Internet marketeers</title><subtitle type='html'>Fresh insights into Technology, Gadgets, Marketing, Domain industry, Hosting Services, Webdesign and SEO delivered directly to your browser of choice. Hopefully Firefox. And if you asked: the letter we omitted is E.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-14875814.post-114767441263559491</id><published>2006-05-15T08:24:00.000+02:00</published><updated>2006-05-15T08:26:52.646+02:00</updated><title type='text'>302 Permanently Moved!</title><content type='html'>We're now at &lt;a href="http://trixnews.com"&gt;trixnews.com&lt;/a&gt;. Please update your links. This blog will not be updated anymore.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114767441263559491?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114767441263559491/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114767441263559491' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114767441263559491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114767441263559491'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/05/302-permanently-moved.html' title='302 Permanently Moved!'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114657694038672971</id><published>2006-05-02T15:00:00.000+02:00</published><updated>2006-05-02T15:35:40.816+02:00</updated><title type='text'>Happy deployment with Capistrano and Rails 1.1</title><content type='html'>Today is busy as always but I have some info I want to share :)&lt;br /&gt;&lt;br /&gt;We have finally migrated to our new co-located server (on 4Gbit/s  connection yeah!) and started to prepare it for our incoming app. It's being built on Rails. Our setup is almost typical:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Apache2 as a reverse proxy to Lighttpd&lt;/li&gt;&lt;li&gt;Lighttpd&lt;/li&gt;&lt;li&gt;FCGI listeners running independently from Lighty (with spawner/reaper)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Rails (1.1/Edge) app deployed with Capistrano&lt;/li&gt;&lt;li&gt;MySQL 5.0&lt;/li&gt;&lt;li&gt;etc.&lt;/li&gt;&lt;/ul&gt;Everything is working almost out of the box. However one thing was tricky to set up: Capistrano deployment and spawner/reaper. There is no spinner i Rails 1.1 (I don't remember when it disappeared) but spawner can respawn fcgi processes if they die.&lt;br /&gt;&lt;br /&gt;The problem is that spawner writes pid files into the tmp/pids directory of your current deployed version of app. When you deploy new version, you want to invoke reaper script to restart fcgi listeners, but the pid files are now in the previous release (yes it sounds complicated).  We don't want to kill poor spawner and his beloved kids. We want them to live forever! So the trick is to copy pid files from previous release to current one (simple huh?). Below is a custom Capistrano restart task:&lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;desc "Restarts fcgi listeners"&lt;br /&gt;task :restart, :roles =&gt; :app do&lt;br /&gt;  puts "Restarting fcgi listeners..."&lt;br /&gt;  run &lt;&lt;-CMD     &lt;br /&gt;    cp -r #{previous_release}/tmp/pids #{current_path}/tmp/ &amp;amp;&amp;amp;                  &lt;br /&gt;    #{current_path}/script/process/reaper   &lt;br /&gt;  CMD &lt;br /&gt;end &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;One thing that annoyed me (not any more) was the fact fcgi processes listen on wildcard ip address (0.0.0.0) which is not wanted for obvious reasons (we are on a single machine). This is another custom Capistrano task which is invoked only on so-called "cold_deploy":&lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;br /&gt;desc "Starts fcgi listeners"&lt;br /&gt;task :spawn, :roles =&gt; :app do&lt;br /&gt;  puts "Starting fcgi listeners..."&lt;br /&gt;  run "#{current_path}/script/process/spawner -r 5 -s \"/usr/bin/env spawn-fcgi -a 127.0.0.1\""&lt;br /&gt;end&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Although on a single machine now, we're prepared for moving application servers to another box if the demand for our services grows beyond expectations (and we hope it will!).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114657694038672971?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114657694038672971/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114657694038672971' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114657694038672971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114657694038672971'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/05/happy-deployment-with-capistrano-and.html' title='Happy deployment with Capistrano and Rails 1.1'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114574434108434450</id><published>2006-04-22T23:58:00.000+02:00</published><updated>2006-04-26T09:38:41.153+02:00</updated><title type='text'>Ruby on Rails and Unicode (Nothing is perfect)</title><content type='html'>Unfortunately Ruby on Rails (and Ruby in general) does not support Unicode out of the box. This sucks.  It is possible to use Unicode in Rails projects as shown on &lt;a href="http://wiki.rubyonrails.com/rails/pages/HowToUseUnicodeStrings"&gt;Rails Wiki&lt;/a&gt;. After 2 hours of testing I've found that almost everything works good. I even asked &lt;a href="http://live.julik.nl/"&gt;Julik&lt;/a&gt; (author of &lt;a href="http://julik.textdriven.com/svn/tools/rails_plugins/unicode_hacks/"&gt;unicode_hacks&lt;/a&gt; plugin) if it's true what the wiki says about bugs triggered by these hacks. He told me to be careful around ActionMailer. I instantly did some testing and found it works ok (besides I had to explictly set base64 encoding for email body, but it's ActionMailer problem).&lt;br /&gt;&lt;br /&gt;One thing that annoyed me was Google WSDL driver (by soap4r) which no longer works. This issue is connected to $KCODE variable which is set to 'UTF8' to make all this Unicode stuff work. When it's set GoogleSearch doesn't work. I tried to set &lt;a href="http://dev.ctor.org/soap4r/browser/trunk/sample/wsdl/googleSearch/wsdlDriver.rb"&gt;proper soap envelope options&lt;/a&gt; but it didn't work so I've come with this ugly hack:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt; begin&lt;br /&gt;   # utf-8 workaround&lt;br /&gt;   kcode = $KCODE # no longer needed&lt;br /&gt;   $KCODE = "" # Updated: no longer needed&lt;br /&gt;   driver = SOAP::WSDLDriverFactory.new("http://api.google.com/GoogleSearch.wsdl").create_rpc_driver&lt;br /&gt;&lt;br /&gt;   # UPDATED: following line is no longer needed&lt;br /&gt;   #driver.options["soap.envelope.use_numeric_character_reference"] = true&lt;br /&gt;   #driver.wiredump_dev = STDOUT&lt;br /&gt; rescue&lt;br /&gt;   puts "Error creating rpc driver: " + $!&lt;br /&gt;   return&lt;br /&gt; ensure&lt;br /&gt;   $KCODE = kcode # Updated: no longer needed&lt;br /&gt; end&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;I don't  like it. If you know the better way, let me know.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;UPDATE:&lt;br /&gt;&lt;br /&gt;I turned off unicode_hacks and now everything works. Soap4r was broken because of overriden versions of String methods. So now I have SOAP, ActionMailer and Rails in general working. Only things (but essential!) that left are broken (unicode-unaware) String methods (I live with jcode).&lt;br /&gt;&lt;br /&gt;The reason why all was broken before, was unicode versions of String methods provided by Julik's unicode_hacks (among others tweaks). They're used deeply in the code of Soap4r (which is anyway aware of existence of Unicode) despite these methods don't know anything about multibyte characters.&lt;br /&gt;&lt;br /&gt;Don't get me wrong: unicode_hacks are the only way if you want to do some serious work with multibyte character strings. You can also take a glance at Unicode Library  for Ruby by  Yoshida Masato.&lt;br /&gt;&lt;br /&gt;I have to do more tests but my recommendation for today is:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;read &lt;a href="http://wiki.rubyonrails.com/rails/pages/HowToUseUnicodeStrings"&gt;HowToUseUnicodeStrings&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;set $KCODE = 'UTF8' (shorthand version: 'u')&lt;/li&gt;&lt;li&gt;put encoding: utf8 to your database.yml&lt;/li&gt;&lt;li&gt;set your db of choice to use utf-8 to store data&lt;/li&gt;&lt;li&gt;use jcode / Unicode library if you need&lt;/li&gt;&lt;/ul&gt;Note: I assume you're livin' on the EdgeRails or at least Rails 1.1.0.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114574434108434450?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114574434108434450/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114574434108434450' title='Komentarze (3)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114574434108434450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114574434108434450'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/04/ruby-on-rails-and-unicode-nothing-is.html' title='Ruby on Rails and Unicode (Nothing is perfect)'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114520441545579775</id><published>2006-04-16T17:57:00.000+02:00</published><updated>2006-04-16T18:25:52.096+02:00</updated><title type='text'>Track keywords in Ruby on Rails using Google API</title><content type='html'>Below is essential part of code which tracks ranks of keywords in Google. As almost always in Ruby world, this source code is self-explanatory. It was partially inspired by &lt;a href="http://www.sitepoint.com/article/track-rank-google-api"&gt;this Bernard Peh's article&lt;/a&gt;. If you are PHP developer and willing to become &lt;a href="http://www-128.ibm.com/developerworks/java/library/j-ruby/"&gt;programming language polyglot&lt;/a&gt;, compare length of relevant code and its readablity. If you think this snippet sucks in any way, comment on! Some variables in the code are defined outside of its scope, but it's not hard to find which.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Bonus tip: Ruby SOAP translates Google API field URL from resultElement structure to method uRL!&lt;/span&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;  def update_link_rank(iterations = 10)&lt;br /&gt;    # sanity chceck&lt;br /&gt;    iterations = 10 if iterations &lt; 1 || iterations &gt; 100&lt;br /&gt;    &lt;br /&gt;    require 'soap/wsdlDriver'&lt;br /&gt;&lt;br /&gt;    begin&lt;br /&gt;      driver = SOAP::WSDLDriverFactory.&lt;br /&gt;new("http://api.google.com/GoogleSearch.wsdl").create_rpc_driver&lt;br /&gt;    rescue&lt;br /&gt;      puts "Error creating rpc driver: " + $!&lt;br /&gt;      return&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    for i in (0...iterations) do&lt;br /&gt;      begin&lt;br /&gt;        result = driver.doGoogleSearch(&lt;br /&gt;user.google_api_key, anchor, 0 + i, 10 + i, true, "", false, "", "", "")&lt;br /&gt;      rescue SOAP::FaultError&lt;br /&gt;        puts "Got Fault: " + $!&lt;br /&gt;        return&lt;br /&gt;      end&lt;br /&gt;      &lt;br /&gt;      partial_rank = 0&lt;br /&gt;      for resultElement in result.resultElements do&lt;br /&gt;        partial_rank += 1&lt;br /&gt;        if resultElement.uRL.include? href then&lt;br /&gt;          value = i * 10 + partial_rank&lt;br /&gt;          rank = LinkRank.new&lt;br /&gt;          rank.link = self&lt;br /&gt;          rank.value = value&lt;br /&gt;          rank.save&lt;br /&gt;          return value&lt;br /&gt;        end&lt;br /&gt;      end&lt;br /&gt;&lt;br /&gt;      # shorter than 10 means no next result&lt;br /&gt;      return if result.resultElements.size &lt; 10 &lt;br /&gt;    end&lt;br /&gt;  end&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114520441545579775?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114520441545579775/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114520441545579775' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114520441545579775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114520441545579775'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/04/track-keywords-in-ruby-on-rails-using.html' title='Track keywords in Ruby on Rails using Google API'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114484697856178413</id><published>2006-04-12T14:27:00.000+02:00</published><updated>2006-04-12T15:42:46.370+02:00</updated><title type='text'>Ruby on Rails served by Lighttpd behind reverse proxy on Apache 2.0</title><content type='html'>&lt;span style="font-style:italic;"&gt;Summary: If you want Apache 2.0, PHP and Rails, do yourself a favor, use reverse proxy and Lighttpd.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After few unproductive hours spent fighting FastCGI and Apache 2.0 and far too much coffee drunk, I was forced to make a decision.&lt;br /&gt;&lt;br /&gt;Our Apache server hosts PHP applications for a dozen of our clients and needs to work very stable and uninterruptedly. There is also an urgent need to host Rails applications on the same server, namely the same IP and in some cases simultaneously in the same URL namespace with PHP applications. This is a bit tricky but useful setup if you take the possibilities into account.&lt;br /&gt;&lt;br /&gt;O.K. Lets get to work. We have the Apache server (btw. on Debian, so we will do it Debian way). We want to minimize changes in its configuration. We definitely need to enable mod_proxy:&lt;br /&gt;&lt;pre&gt;a2enmod proxy&lt;/pre&gt;&lt;br /&gt;Then we need to configure it, so we create file /etc/apache2/sites-available/lighty-rproxy and put some date in it:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;VirtualHost *&amp;gt;&lt;br /&gt;  ServerName example.com&lt;br /&gt;&lt;br /&gt;  &amp;lt;Proxy *&amp;gt;&lt;br /&gt;    Order deny,allow&lt;br /&gt;    Allow from all&lt;br /&gt;  &amp;lt;/Proxy&amp;gt;&lt;br /&gt;&lt;br /&gt;  &amp;lt;Location /&amp;gt;&lt;br /&gt;    ProxyPass http://localhost:81/&lt;br /&gt;    ProxyPassReverse http://localhost:81/&lt;br /&gt;  &amp;lt;/Location&amp;gt;&lt;br /&gt;&lt;br /&gt;  ProxyPreserveHost On&lt;br /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Here we enable this vhost:&lt;br /&gt;&lt;pre&gt;a2ensite lighty-rproxy&lt;br /&gt;/etc/init.d/apache2 force-reload&lt;br /&gt;&lt;/pre&gt; &lt;br /&gt;If you now point your browser to  configured domain (we use famous example.com) you should see information about "Bad Gateway". Don't panic. We have all under control. Inhale... Exhale... Yes. Like this.&lt;br /&gt;&lt;br /&gt;What we just saw was reaction of Apache which wanted to redirect everything inside exmaple.com to another http server on the same host (localhost) but on port 81. So now we need to put something there.&lt;br /&gt;&lt;br /&gt;We install Lighttpd: &lt;pre&gt;apt-get install lighttpd&lt;/pre&gt; and configure it. Below are excerpts from /etc/lighttpd/lighttpd.conf we need to change. First we enable mod_rewrite and mod_redirect:&lt;br /&gt;&lt;pre&gt;server.modules              = (&lt;br /&gt;            "mod_access",&lt;br /&gt;            "mod_alias",&lt;br /&gt;            "mod_accesslog",&lt;br /&gt;            "mod_rewrite",&lt;br /&gt;            "mod_redirect",&lt;br /&gt;#           "mod_status",&lt;br /&gt;#           "mod_evhost",&lt;br /&gt;#           "mod_compress",&lt;br /&gt;#           "mod_usertrack",&lt;br /&gt;#           "mod_rrdtool",&lt;br /&gt;#           "mod_webdav",&lt;br /&gt;#           "mod_expire",&lt;br /&gt;#           "mod_flv_streaming",&lt;br /&gt;#           "mod_evasive"&lt;br /&gt; )&lt;/pre&gt;&lt;br /&gt;Then we bind lighty to localhost:81 to correspond to Apache configuration:&lt;br /&gt;&lt;pre&gt;## bind to port (default: 80)&lt;br /&gt;server.port               = 81&lt;br /&gt;&lt;br /&gt;## bind to localhost only (default: all interfaces)&lt;br /&gt;#server.bind                = "localhost"&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;In file /etc/lighttpd/conf-available we have to comment fastcgi server definition for php (unless we have php4-cgi installed) and enable fastcgi in Lighty by invoking:&lt;br /&gt;&lt;pre&gt;lighty-enable-mod fastcgi&lt;/pre&gt;&lt;br /&gt;Last thing we need is our humble vhost configuration for Rails app which sits in /etc/lighttpd/conf-available/11-rails-app.conf and looks like this:&lt;br /&gt;&lt;pre&gt;var.app = "/home/necro/rails/linkpro"&lt;br /&gt;&lt;br /&gt;$HTTP["host"] == "example.com" {&lt;br /&gt;  server.document-root = var.app + "/public"&lt;br /&gt;  url.rewrite = ( "^/$" =&gt; "index.html", "^([^.]+)$" =&gt; "$1.html" )&lt;br /&gt;  server.error-handler-404 = "/dispatch.fcgi"&lt;br /&gt;  fastcgi.server = ( ".fcgi" =&gt;&lt;br /&gt;    ( "localhost" =&gt;&lt;br /&gt;      ( "min-procs" =&gt; 2,&lt;br /&gt;        "max-procs" =&gt; 2,&lt;br /&gt;        "socket" =&gt; "/tmp/app.fcgi.socket",&lt;br /&gt;        "bin-path" =&gt; var.app + "/public/dispatch.fcgi",&lt;br /&gt;        "bin-environment" =&gt; ( "RAILS_ENV" =&gt; "development" )&lt;br /&gt;      )&lt;br /&gt;    )&lt;br /&gt;  )&lt;br /&gt;}&lt;/pre&gt;&lt;br /&gt;As you can see this configuration is pretty simple but works and is a good start for more complicated setups where you separate application server from http server or create other sophisticated configurations. Just remember to properly set rights to log and tmp directories in your Rails app. Lighty needs to write to them. I overlooked this at first and lost some time so you don't have to.&lt;br /&gt;&lt;br /&gt;Feedback strongly appreciated.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114484697856178413?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114484697856178413/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114484697856178413' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114484697856178413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114484697856178413'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/04/ruby-on-rails-served-by-lighttpd.html' title='Ruby on Rails served by Lighttpd behind reverse proxy on Apache 2.0'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114401166363261296</id><published>2006-04-02T22:50:00.000+02:00</published><updated>2006-04-02T23:01:03.666+02:00</updated><title type='text'>Sunday, bloody sunday</title><content type='html'>To name a few, I've installed and partially tested and tuned the configuration of this software (for security reasons):&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;apache 2&lt;/li&gt;&lt;li&gt;mysql 4.1&lt;/li&gt;&lt;li&gt;php 4.1&lt;/li&gt;&lt;li&gt;phpmyadmin&lt;br /&gt;&lt;/li&gt;&lt;li&gt;cpan&lt;br /&gt;&lt;/li&gt;&lt;li&gt;vhcs 2&lt;/li&gt;&lt;li&gt;nagios&lt;/li&gt;&lt;li&gt;snort&lt;/li&gt;&lt;li&gt;snoopy&lt;/li&gt;&lt;li&gt;trac&lt;/li&gt;&lt;li&gt;subversion&lt;/li&gt;&lt;li&gt;ruby&lt;/li&gt;&lt;li&gt;rails&lt;/li&gt;&lt;li&gt;etc.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;If you have any suggestions for software (and/or libraries) you'd like to use one our shiny hosting, drop us a note. We're here for you.&lt;br /&gt;&lt;br /&gt;We've (Tomek and me) also started translating vhcs into Polish because of our legacy base of customers. There are 1,000 strings to carefully translate so it will take one week at least.&lt;br /&gt;&lt;br /&gt;Today's question is: what software or feature would you like to have on your hosting plan of dreams served by Trix? Be creative answering this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114401166363261296?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114401166363261296/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114401166363261296' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114401166363261296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114401166363261296'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/04/sunday-bloody-sunday.html' title='Sunday, bloody sunday'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114397370207590773</id><published>2006-04-02T12:17:00.000+02:00</published><updated>2006-04-03T18:57:05.113+02:00</updated><title type='text'>News from the field</title><content type='html'>This one is about time and that's why is so short. As you probably know, we're moving the blog (and everything connected to Trix) somewhere else. First we thought to move it to our virtual server but now we're buying a dedicated server at hetzner.de. We can not stretch the time so it will take longer. We are testing now our server environment (read Debian) and next week will be deploying it on the shiny new dedicated server at hetzner. Stay tuned.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114397370207590773?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114397370207590773/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114397370207590773' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114397370207590773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114397370207590773'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/04/news-from-field.html' title='News from the field'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114310310413653812</id><published>2006-03-23T09:13:00.000+01:00</published><updated>2006-03-23T09:38:24.153+01:00</updated><title type='text'>Buffering...</title><content type='html'>If you click play on the video from last post you will not be happy. Your eyes will be given a black screen to watch and nice sentence to read: "This video is currently not available. Please try again later". Ain't cool, huh? &lt;a href="http://flickr.com/photos/jomatt/41157539/"&gt;WTF&lt;/a&gt;? I've clicked the video two days ago and watched it successfully. Apparently the one who uploaded this clip to &lt;a href="http://video.google.com"&gt;Google Video&lt;/a&gt; erased it later. How come? Well...&lt;br /&gt;&lt;br /&gt;It was this person's free choice. This is so Web2.0. You add content. You build smart mob, collective intelligence etc., finally, you have ability to erase content whenever you want. Content is yours. Google Video provides a platform. Nothing else.&lt;br /&gt;&lt;br /&gt;Hmmm... So what about &lt;a href="http://en.wikipedia.org/wiki/Permalink"&gt;permalinks&lt;/a&gt;? How to accept these two excluding &lt;a href="http://www.slis.keio.ac.jp/~irie/travels/egypt/images/pompeys-pillar.jpg"&gt;pillars&lt;/a&gt; of Web2.0?&lt;br /&gt;Can anybody tell me? Anyone?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114310310413653812?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114310310413653812/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114310310413653812' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114310310413653812'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114310310413653812'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/buffering.html' title='Buffering...'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114280055063372953</id><published>2006-03-19T21:31:00.000+01:00</published><updated>2006-03-19T21:35:50.646+01:00</updated><title type='text'>Who is really behind all this Web2.0 thing (watch the video)</title><content type='html'>&lt;embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?videoUrl=http%3A%2F%2Fvp.video.google.com%2Fvideodownload%3Fversion%3D0%26secureurl%3DpQAAAMdQ0NL4InNmNbZ9ut8xU4OnoieEVvFVpsaD8PWrPWtu8vamidtbcaZSrEQZSpPZaAPfqBw86gjtYMV1BZphQCrCYV9RPkCNkL5F0tWIpyliDGy-wic2z-7DAApoMq4c3BUMW5WPH9gcAiFawASquminJ6hv_JuP8-1ORkvkrYf_tLeTO1809EOVqBMich3svcGmHiqy3WkDY87RIGe55bk8mylxe9nnQnOhW5kbDw7I%26sigh%3Dlj9VLHVhIWx3uuQjM_l71uf2psk%26begin%3D0%26len%3D1822000%26docid%3D-7426343190324622223&amp;thumbnailUrl=http%3A%2F%2Fvideo.google.com%2FThumbnailServer%3Fcontentid%3Db2fac6518150c67%26second%3D5%26itag%3Dw320%26urlcreated%3D1142799238%26sigh%3DV8fiFS6j3TJ6Do6mhh0pKArrXBQ&amp;playerId=-7426343190324622223" allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL"  FlashVars="playerMode=embedded"&gt; &lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;Any comments?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114280055063372953?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114280055063372953/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114280055063372953' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114280055063372953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114280055063372953'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/who-is-really-behind-all-this-web20.html' title='Who is really behind all this Web2.0 thing (watch the video)'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114208741671732857</id><published>2006-03-11T15:28:00.002+01:00</published><updated>2006-03-11T18:52:42.440+01:00</updated><title type='text'>Wireless entertainment considered cool</title><content type='html'>I've just put PSPRadio on my PSP and I can listen to my favorite Frisky Radio virtually everywhere in my house, even in my backyard which is very practical considering incoming summer :) This is what I call technology. Great. I just need some PDF reader for my shiny PSP. Great work Raf! &lt;a href="http://rafpsp.blogspot.com"&gt;PSP Radio&lt;/a&gt; is great piece of software! Keep it up!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114208741671732857?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114208741671732857/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114208741671732857' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114208741671732857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114208741671732857'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/wireless-entertainment-considered-cool.html' title='Wireless entertainment considered cool'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114208172112432694</id><published>2006-03-11T13:54:00.000+01:00</published><updated>2006-03-11T13:55:21.193+01:00</updated><title type='text'>Just before the move aka migration</title><content type='html'>This saturday I'm finally going to finish my little blog engine in Rails. This was a busy week and I've had no time to write antyhing although so much happened. I hope I'll be able to write more as soon as we move to new domain and new engine. I know I could use some already well known blog engine, but hell, how would I learn anything?&lt;br /&gt;&lt;br /&gt;So be patient and enjoy the weekend!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114208172112432694?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114208172112432694/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114208172112432694' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114208172112432694'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114208172112432694'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/just-before-move-aka-migration.html' title='Just before the move aka migration'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114159934711371684</id><published>2006-03-05T23:55:00.000+01:00</published><updated>2006-03-05T23:55:50.126+01:00</updated><title type='text'></title><content type='html'>Short note only tonight.&lt;br /&gt;&lt;br /&gt;Our goals are more clear than ever. We are starting to see the essence. &lt;br /&gt;&lt;br /&gt;Good Luck and Good Night&lt;br /&gt;(This "blog item" was written using MacOSX Widget :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114159934711371684?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114159934711371684/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114159934711371684' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114159934711371684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114159934711371684'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/short-note-only-tonight.html' title=''/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114128765206184568</id><published>2006-03-02T09:01:00.000+01:00</published><updated>2006-03-02T09:53:44.020+01:00</updated><title type='text'>U. S. Patents BS (Balthaser case)</title><content type='html'>I just took a glance at the recently acquired &lt;a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;amp;p=1&amp;u=/netahtml/search-bool.html&amp;amp;amp;amp;amp;amp;amp;r=1&amp;f=G&amp;amp;l=50&amp;co1=AND&amp;amp;d=ptxt&amp;s1=Balthaser&amp;amp;OS=Balthaser&amp;RS=Balthaser"&gt;Balhaser's patent&lt;/a&gt; (which is valid in USA anyway)  and it made me laugh. It was filled in 2001 and they've just described normal process of developing and using desktop application with one exception: they've added this expression: "via Internet". I won't comment on this more because I have to fill my own patent form. I want to patent "Methods, systems and processes for the design and creation of emotion-rich applications via Internet". And I don't care about &lt;a href="http://en.wikipedia.org/wiki/Prior_art"&gt;prior act&lt;/a&gt;. Any comments? A little flame war?&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Update:&lt;/span&gt; I've just signed up for free version of Balthaser's "design system". It's just a website editor in Flash. It looks nice but it's closed and I doubt it will get wide acceptance. So I was quite right that they've just brought application development to your browser. They've embedded &lt;acronym title="Integrated Deleopment Environment"&gt;IDE&lt;/acronym&gt; in Macromedia Flash presentation. And indeed, prior art for their lame patent &lt;a href="http://www.actionscripthero.com/adventures/mobile/thread.php?topic_id=4331"&gt;exists&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114128765206184568?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114128765206184568/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114128765206184568' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114128765206184568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114128765206184568'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/03/u-s-patents-bs-balthaser-case.html' title='U. S. Patents BS (Balthaser case)'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114112998356863093</id><published>2006-02-28T12:29:00.000+01:00</published><updated>2006-02-28T13:40:52.446+01:00</updated><title type='text'>Extracting the essence</title><content type='html'>Recently I've been overwhelmed (Have you too?) by Web2.0 stuff. Clearly, I needed some time to aggregate and filter all the information on this exciting topic. So this post is my try to extract and enumerate the most important characteristics (at least for me) of the before mentioned topic and how to exploit them in a business way. (read: &lt;span style="font-weight: bold;"&gt;how to make money with Web2.0&lt;/span&gt;).&lt;br /&gt;&lt;br /&gt;Because the difference between "&lt;span style="font-weight: bold;"&gt;taxonomy&lt;/span&gt;" and "&lt;span style="font-weight: bold;"&gt;folksonomy&lt;/span&gt;", the very important thing was achieved: ease of building logical and searchable structure of user-contributed content. When you compare, let's say &lt;a href="http://dmoz.org"&gt;the biggest catalogue of Web1.0&lt;/a&gt;  (especially the way it's built) and possibilities of simple tagging (&lt;a href="http://del.icio.us"&gt;del.icio.us&lt;/a&gt;) from the point of view of average user, you will admit it's the brilliant way to exploit social nature of human.&lt;br /&gt;&lt;br /&gt;Nowadays, everyone and &lt;span style="font-weight: bold;"&gt;everything is going mobile&lt;/span&gt;, we want to use everything on the go. Personally, I read e-books on my way to work and back, take pictures and immediately send them to &lt;a href="http://flickr.com/photos/ncr"&gt;my flickr account&lt;/a&gt;, play games, call friends and co-workers, and so on. I try to use every moment spent alone to do something (even if it's having fun or resting actively). Before you ask, I am not some &lt;span style="font-weight: bold;"&gt;freaky geek without social life&lt;/span&gt;. I just don't like &lt;span style="font-weight: bold;"&gt;wasting my time&lt;/span&gt;. I took myself as an example of this trend which escalates among youth even faster. Implementing Web2.0 principles in mobile world we can further exploit all this "social thing". Possibilities here are enormous. I bet you can come with some &lt;span style="font-weight: bold;"&gt;bright ideas&lt;/span&gt; quickly (don't hesitate to comment on them).&lt;br /&gt;&lt;br /&gt;Today I've read article describing research on &lt;span style="font-weight: bold;"&gt;strength of Internet ties&lt;/span&gt; and the way Internet users socialize comparing to ones who don't use The Network at all. The results can be condensated into this sentence: &lt;span style="font-style: italic;"&gt;"People who use Internet are far more social beings"&lt;/span&gt;. They mention previous research results which imply something opposite, but are much older and I think just not fresh and thus irrelevant.&lt;br /&gt;&lt;br /&gt;The whole Web2.0 thing is about delivering easier, more useful ways to enrich our social lives by creating the infinite flow of information, knowledge, content, interaction etc. interconnected with links. And &lt;span style="font-weight: bold;"&gt;content is still the king&lt;/span&gt;.  Links are the base of The World Wide Web. Everyone (even my father) knows what link is. The Web2.0 is still about links. Links are still base of The Web.&lt;br /&gt;&lt;br /&gt;I think I'll need at least one more try to come with more clearer extract of business and social aspects of Web2.0 movement. This is for now. Comments are appreciated.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114112998356863093?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114112998356863093/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114112998356863093' title='Komentarze (5)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114112998356863093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114112998356863093'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/extracting-essence.html' title='Extracting the essence'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114104959230444086</id><published>2006-02-27T14:39:00.000+01:00</published><updated>2006-02-27T15:23:14.496+01:00</updated><title type='text'>Go 2.0</title><content type='html'>Almost every single aspect of The Web is going through two-dot-o hype. Now, with launch of &lt;a href="http://mobileglu.com"&gt;mobileglu.com&lt;/a&gt; we are going to "two-dot-o-ize" our cellphones with &lt;a href="http://flickr.com"&gt;flickr.com&lt;/a&gt; , &lt;a href="http://del.icio.us"&gt;del.icio.us&lt;/a&gt;, &lt;a href="http://upcoming.org"&gt;upcoming.org&lt;/a&gt; all mashuped (mashed up?) in a friendly and usable manner. If you know any other services interesting and innovative like mobileglu, let me know. As authors stated on their site, &lt;a href="http://www.mobileglu.com/node/27"&gt;they've worked one week&lt;/a&gt; to deliver first version of this application. Impressive.&lt;br /&gt;&lt;br /&gt;Notice, all applications they've combined in this mashup are branded with "Yahoo company" mark. The first thing I thought spotting this was: "War 2.0 is coming". I immediately googled after this term, but nothing emerged. It seems like there's no such thing (as the well-known rule says), fortunately. The only thing I stumbled upon was an article on "&lt;a href="http://www.roughtype.com/archives/2005/10/cold_war_20.php"&gt;Cold War 2.0&lt;/a&gt;" which somehow made me happy about the fact I live in Poland and our government is still far behind these ideas of gaining more control over us by trying to control Internet.&lt;br /&gt;&lt;br /&gt;Generally it looks like Yahoo wants to get back to the shape they used to have and compete with Google. It's getting interesting when you add Microsoft IE7 to the mix, which is (from what I heard and read) pretty lame and just try to follow Firefox.&lt;br /&gt;&lt;br /&gt;Any predictions on how popular and profitable will mobile2.0 be?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114104959230444086?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114104959230444086/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114104959230444086' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114104959230444086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114104959230444086'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/go-20.html' title='Go 2.0'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114055808460278721</id><published>2006-02-21T22:10:00.000+01:00</published><updated>2006-02-21T22:54:25.270+01:00</updated><title type='text'>Structured Blogging, Web2.0 essence</title><content type='html'>Some time ago I've read an article. It was full of terms such as &lt;span style="font-weight: bold;"&gt;semantic web&lt;/span&gt;, intelligent content and other buzzwords. I have to admit I've not understood a word. It was so blurry then. I don't really remember when it was - one or two years ago? Sounds probably. One thing I remember is this (famous now) &lt;span style="font-weight: bold;"&gt;Web2.0&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Today, after 2 hours of brainstorming with one of my friends (a very good marketer) we've begun to ask ourselves what is the essence of Web2.0 and how Web2.0 looks or will look like.&lt;br /&gt;&lt;br /&gt;We are in the middle of making a list of features for our new product (hopefully killer app). Last months we've been moving around the concepts of &lt;span style="font-weight: bold;"&gt;Ajax&lt;/span&gt; and have used the term Ajax interchangeably with Web2.0.&lt;br /&gt;&lt;br /&gt;We were missing the point.&lt;br /&gt;&lt;br /&gt;Web2.0 is not about Ajax. It's about those buzzwords I stumbled upon last year ago. Semantic web is by far the more important one. &lt;span style="font-weight: bold;"&gt;Semantic stands for meaning&lt;/span&gt;. You may think: but the meaning is already here, in every sentence on the Web. It's true. But for machines it's not. They don't understand the meaning of sentences written in natural human readable form. They need something else. &lt;span style="font-weight: bold;"&gt;Hints&lt;/span&gt;. Decorating the content of the Web1.0 with hints for computers makes Web2.0 come true. &lt;a href="http://www.structuredblogging.org"&gt;Structured Blogging&lt;/a&gt; is the first place where you can read more on this topic and be finally enlightened. It's a good word considering the impact Web2.0 will have on Internet.&lt;br /&gt;&lt;br /&gt;My prediction is simple: &lt;span style="font-weight: bold;"&gt;Revolution comes&lt;/span&gt;. Don't sleep through this opportunity to make the world better (&lt;span style="font-style: italic;"&gt;and get rich&lt;/span&gt;).&lt;br /&gt;&lt;br /&gt;Any comments? Ideas on how to ehm.. get rich "using this tools and techniques"? (David Deangelo's beloved question)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114055808460278721?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114055808460278721/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114055808460278721' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114055808460278721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114055808460278721'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/structured-blogging-web20-essence.html' title='Structured Blogging, Web2.0 essence'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114047180591409284</id><published>2006-02-20T22:14:00.000+01:00</published><updated>2006-02-20T22:43:25.970+01:00</updated><title type='text'>Home sweet home</title><content type='html'>After approx. 13h of work today, I am finally home. 13h of pure adrenaline fighting with so called database. You guess, I will only tell that it sometimes  let you have &lt;span style="font-weight: bold;"&gt;the same value in unique column twice&lt;/span&gt;. I have witnesses.&lt;br /&gt;&lt;br /&gt;In few weeks this nightmare will come to an end. Let's hope to the happy end. And how this imaginary happy end looks like?&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;TCO&lt;/span&gt; is much lower than now.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Maintenance&lt;/span&gt; is easier.&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Stability&lt;/span&gt; of rock.&lt;/li&gt;&lt;li&gt;No &lt;span style="font-weight: bold;"&gt;licensing&lt;/span&gt; issues.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;No more 13h days at work.&lt;/li&gt;&lt;/ol&gt;I don't want more. This would be enough.  After the switch we finally will be free from expensive licensing although I don't consider this main reason this migration. I've just lost too many evenings like this one using this piece of software. It can be good, but not for our purposes. Our needs developed greatly and we have to move on. We will never miss you. Ever.&lt;br /&gt;&lt;br /&gt;Farewell,&lt;br /&gt;adieu,&lt;br /&gt;au revoir,&lt;br /&gt;ciao,&lt;br /&gt;adios,&lt;br /&gt;bye-bye,&lt;br /&gt;so long,&lt;br /&gt;see you later,&lt;br /&gt;see you,&lt;br /&gt;sayonara,&lt;br /&gt;bon voyage,&lt;br /&gt;cheers,&lt;br /&gt;toodle-oo,&lt;br /&gt;żegnaj&lt;br /&gt;&lt;br /&gt;Microsoft Access!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114047180591409284?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114047180591409284/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114047180591409284' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114047180591409284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114047180591409284'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/home-sweet-home.html' title='Home sweet home'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114027124144463105</id><published>2006-02-18T14:06:00.000+01:00</published><updated>2006-02-18T15:00:43.973+01:00</updated><title type='text'>Skype, MacOS X, Bluetooth headset. Holy grail?</title><content type='html'>I always wanted to work at home. To have the &lt;span style="font-weight: bold;"&gt;safety of being next to my bed&lt;/span&gt; and my computer at the same moment. To have the ability of taking a short nap every moment I want. Some of you may think it's hard to maintain discipline. And you're right.&lt;br /&gt;&lt;br /&gt;But let's go back to the topic. If you work at home you're obliged to have a rather &lt;span style="font-weight: bold;"&gt;good Internet connection&lt;/span&gt;. Lousy dial-ups won't do any good. 512Kb/s will satisfy almost all of your needs (except downloading these Oracle databases from production servers).&lt;br /&gt;&lt;br /&gt;Next thing you'll need is a very &lt;span style="font-weight: bold;"&gt;comfortable operating system&lt;/span&gt;. You have a choice. I use &lt;a href="http://www.apple.com/macosx/"&gt;MacOS X&lt;/a&gt; myself and find it excellent. You also have to set up all applications you use to work with. Sometimes it's can become tricky easily when you use very advanced and rare tools which are impossible to install on a typical home workstation but in most cases there is a solution.&lt;br /&gt;&lt;br /&gt;Then you will need some way to &lt;span style="font-weight: bold;"&gt;cooperate with your boss and co-workers&lt;/span&gt;. I would recommend here some of tools made by &lt;a href="http://37signals.com"&gt;37signals&lt;/a&gt;. Personally &lt;a href="http://basecamphq.com"&gt;Basecamp&lt;/a&gt; and recently created &lt;a href="http://campfirenow.com"&gt;Campfire&lt;/a&gt; are my favorites.&lt;br /&gt;&lt;br /&gt;Last thing you need is some &lt;span style="font-weight: bold;"&gt;voice instant messaging&lt;/span&gt;. &lt;a href="http://skype.com"&gt;Skype&lt;/a&gt; is the most popular one, but there's one catch. Windows versions are far more stable than MacOS X, and Linux versions. I used all of them. Linux and MacOS X versions are far behind considering functionality. I don't blame Skype programmers. They're have a business to run and Microsoft Windows users are the vast majority. To make Skype work &lt;span style="font-weight: bold;"&gt;you need some headset&lt;/span&gt; of course. I personally use Bluetooth headset from Logitech, but sometimes it drives me crazy. This is common to all wireless devices I know. Batteries will run out of energy only when you're speaking with your boss about the recent crash of your program or whatever you do to pay your bills. They also tend to loose connection without reason. &lt;a href="http://www.murphys-laws.com/"&gt;Murphy's Laws&lt;/a&gt; at their glory.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These would be all you need.&lt;br /&gt;&lt;br /&gt;I work in office mostly and at home partially, mostly Saturdays and when it rains too heavily. I think I am &lt;span style="font-weight: bold;"&gt;more productive&lt;/span&gt; working this way. Changing work conditions helps me to come with &lt;span style="font-weight: bold;"&gt;good and innovative ideas&lt;/span&gt; more often. And if I have worse day I can sleep longer and do my assignments later but &lt;span style="font-weight: bold;"&gt;more enjoyable&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you don't agree drop some comment, they're always read and answered.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114027124144463105?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114027124144463105/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114027124144463105' title='Komentarze (3)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114027124144463105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114027124144463105'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/skype-macos-x-bluetooth-headset-holy.html' title='Skype, MacOS X, Bluetooth headset. Holy grail?'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-114000093555786965</id><published>2006-02-15T11:19:00.001+01:00</published><updated>2006-02-15T12:04:17.513+01:00</updated><title type='text'>Airport successfully installed. Two screws left unused.</title><content type='html'>Yesterday, after long day at work I finally came home, ate dinner and unpacked mysterious package received that day. It was earlier ordered AirPort for iMac mini. The wrapping was tight, everything looked ok. &lt;br /&gt;I took my &lt;b&gt;two special iPutty knives&lt;/b&gt; and opened iMac. When looking inside I was wandering which screws should I remove to get to the motherboard. Of course I could google for some videocasts and tutorials on this topic, but my only computer at home was already dismembered. And besides who needs to RTFM? Last but not least I found three critical screws and after few seconds the motherboard was mine. On these &lt;a href="http://flickr.com/photos/ncr/tags/mac/"&gt;iMac mini photos&lt;/a&gt; you can see the finesse the motherboard was built with. Next, I removed the daughterboard with Bluetooth module, and installed AirPort module on it. Notice, now I got two daughterboards. One came with AirPort and the other was installed because of Bluetooth module. Someone wants to buy the spare daughterboard? Let me know. The most interesting and funny thing is Apple uses &lt;b&gt;sticky tape&lt;/b&gt; inside their computers widely. The AirPort chipset is taped to daughterboard, almost all cables are taped . I think it's ok, but somehow it doesn't fit to the trendy and sophisticated Apple design. Ok, back to AirPort. After reassembling iMac, I had &lt;b&gt;no blood on hands&lt;/b&gt; but &lt;b&gt;two screws left&lt;/b&gt;. And you know what? iMac works without them. So, besides I've upgraded this piece of hardware I've also improved the mobility by lowering overall weight. &lt;br /&gt;After those interesting moments with screwdriver I came with this conclusion: You can always remove some parts and a device will still be working fine. And you can use these parts to assemble some new &lt;b&gt;revolutionary hardware&lt;/b&gt;. Any questions?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-114000093555786965?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/114000093555786965/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=114000093555786965' title='Komentarze (2)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114000093555786965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/114000093555786965'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/airport-successfully-installed-two.html' title='Airport successfully installed. Two screws left unused.'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113986357295002143</id><published>2006-02-13T21:32:00.000+01:00</published><updated>2006-02-14T14:38:10.436+01:00</updated><title type='text'>Big Money research</title><content type='html'>A lot of people on SEO and e-marketing forums are not sure if AdSense "fraudsters" are really so successful as all the buzz implies. So we've come with a little experiment. We set up two AdSense accounts and on one of them we act ehical and  obey all the rules. On the second one we're not so saint. The experiment is about who will make more money in short and long term. We are of course conscious about breaking some rules (and laws!) on that second account and we know it can be blocked any minute. Of course we won't hire any Africans to click on our ads for 5c per hour. We will use some more advanced fraud techniques. After publishing results of this experiment we will donate all the money from the second not-so-saint account to some open-source project. Any suggestions are welcomed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113986357295002143?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113986357295002143/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113986357295002143' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113986357295002143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113986357295002143'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/big-money-research.html' title='Big Money research'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113977423572359118</id><published>2006-02-12T20:26:00.000+01:00</published><updated>2006-02-13T23:45:44.833+01:00</updated><title type='text'>We're moving to dedicated hosting soon.</title><content type='html'>Unfortunately, due to slow &lt;a href="http://blogger.com"&gt;blogger.com&lt;/a&gt; hosting and other issues and limitations, we're moving to dedicated hosting soon. Expect new blog engine, new design and of course more juicy news. Our next goal is to give you aproximately 5 news daily and one bigger article on a weekly basis.&lt;br /&gt;&lt;br /&gt;We expect the transition will be smooth, despite the fact we probably will use some new and unexplored tools by us. As some of you readers may guess we're moving to &lt;a href="http://rubyonrails.org"&gt;RubyOnRails&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Stay tooned!&lt;br /&gt;&lt;br /&gt;Update: If you know some affordable hosting companies selling RubyOnRails accounts, drop us a note.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113977423572359118?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113977423572359118/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113977423572359118' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113977423572359118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113977423572359118'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/were-moving-to-dedicated-hosting-soon.html' title='We&apos;re moving to dedicated hosting soon.'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113969961390874907</id><published>2006-02-12T00:08:00.000+01:00</published><updated>2006-02-12T00:13:33.963+01:00</updated><title type='text'>Thursday Trix meetings</title><content type='html'>Last thurstay we've initiated our weekly company meetings. We discuss all aspects of our work, present our brilliant ideas and drink famous polish beer. Everyone is invited. Feel free to come. Cafe Rene, Pszczyna, Poland.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113969961390874907?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113969961390874907/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113969961390874907' title='Komentarze (3)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113969961390874907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113969961390874907'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/thursday-trix-meetings.html' title='Thursday Trix meetings'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113965636581533238</id><published>2006-02-11T11:40:00.000+01:00</published><updated>2006-02-11T13:22:53.086+01:00</updated><title type='text'>Accidental ethernet cable disconnection testing</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.olympus.net/dsl/actiontecUpdates/images/eth8.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 171px; height: 171px;" src="http://www.olympus.net/dsl/actiontecUpdates/images/eth8.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Today we are testing update for our major software product. As always on saturdays, I'm at home skyping with boss. He's in Germany. We want to see how our application behaves when someone accidentally pulls the ethernet plug out. So, here's what I hear in my uber-cool bt headset:&lt;br /&gt;&lt;br /&gt;- Jacek, I'm going to pull the plug now.&lt;br /&gt;...&lt;br /&gt;- Yo, boss, are you there??? Hellll&lt;span style="color: rgb(255, 0, 0);"&gt;o&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;o&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;o&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;o&lt;/span&gt;&lt;span style="color: rgb(255, 153, 255);"&gt;o&lt;/span&gt;&lt;span style="color: rgb(51, 204, 255);"&gt;o&lt;/span&gt;!!!&lt;br /&gt;...&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;After five clicks he's skyping me again:&lt;br /&gt;- Jacek, I've lost Internet connection. Everything worked perfectly.&lt;br /&gt;&lt;br /&gt;Can you imagine? By pulling the plug out of the ethernet card you actually lose Internet connection. That's great. Now, the question. How can you make money using this "technique"?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113965636581533238?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113965636581533238/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113965636581533238' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113965636581533238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113965636581533238'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/accidental-ethernet-cable.html' title='Accidental ethernet cable disconnection testing'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113947523890855926</id><published>2006-02-09T09:53:00.000+01:00</published><updated>2006-02-13T23:46:38.623+01:00</updated><title type='text'>Camperaphones. Was it worth it?</title><content type='html'>&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt; &lt;a href="http://www.flickr.com/photos/ncr/97311609/" title="photo sharing"&gt;&lt;img src="http://static.flickr.com/23/97311609_549ef2dc41_m.jpg" alt="" style="border: 2px solid rgb(0, 0, 0);" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="margin-top: 0px;font-size:0;" &gt;  &lt;a href="http://www.flickr.com/photos/ncr/97311609/"&gt;A little shitty new nokia smartphone...&lt;/a&gt; &lt;br /&gt; Originally uploaded by &lt;a href="http://www.flickr.com/people/ncr/"&gt;Rstless&lt;/a&gt;. &lt;/span&gt;&lt;/div&gt;Notice the violet glare in the center of this flick. My old Agfa e-photo behaves much better and was bought few years ago.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113947523890855926?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113947523890855926/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113947523890855926' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113947523890855926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113947523890855926'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/camperaphones-was-it-worth-it.html' title='Camperaphones. Was it worth it?'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14875814.post-113947458629440163</id><published>2006-02-09T09:36:00.000+01:00</published><updated>2006-02-09T09:43:06.296+01:00</updated><title type='text'>More to come!</title><content type='html'>I will drop here some random sentences about healthcare. I hope Google AdSense will notice and show some relevant ads. We all know they pay more for "Pennis enlargement pills" ads.&lt;br /&gt;&lt;br /&gt;Liberator’s line of pillows will heighten your lovemaking -- literally. The new angles and elevations equal new possibilities for pleasure.&lt;br /&gt;&lt;br /&gt;Ehh, I think it's pointless anyway...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14875814-113947458629440163?l=rstless.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rstless.blogspot.com/feeds/113947458629440163/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14875814&amp;postID=113947458629440163' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113947458629440163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14875814/posts/default/113947458629440163'/><link rel='alternate' type='text/html' href='http://rstless.blogspot.com/2006/02/more-to-come.html' title='More to come!'/><author><name>Jacek Becela</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
