
Handmade. Here's the comic and here's the technology.















java -jar PassGen.jar in console.
When I'm gonna have some spare hundred thousands euros or somebody would like to donate some hundred thousands euros to me I'm definitely gonna buy all these or the up-to-date versions if these become old. I hope it won't take me too long to become a billionaire. :)

Quite an advanced communicator with 520MHz processor inside, VGA screen, QWERTY keyboard, two cameras, FM radio, TV out and WiMAX and HSDPA support. For all these features I can even stand Windows Mobile 6 it is running.

Thin and stylish with 2.6Ghz dual-core processor and 2GB of memory on board running Unix-based operating system which heavily borrows from BSD with all the standard Unix facilities available from the command line interface. Isn't it every geeks's dream?

Photography is something I've always wanted to pursue but I've never had a proper camera for that. I used to have Canon PowerShot S30 which wasn't that bad and had manual and several semi-automatic modes and even could take RAW pictures but this one is a way better anyway.

I'm not that much into gaming and I've never been but I wouldn't mind having such to kill time sometimes or play some media. I can also install Linux which is officially supported.

The quickest BMW ever produced with more than 500 horse powers under the hood with programmable engine power, gear transmission speed as well as Dynamic Stability Control and Electronic Damping Control. Who wouldn't want such?
Permanently here. Will be updated when I figure out something else.{foreach from=$posts key=id item=post}
<h1>
{$post.title}<br />
{if $lang == 'en'}
{atom_convert_date date=$post.published}
{else}
{rss_convert_date date=$post.pubdate}
{/if}
</h1>
<div class="post">
{if $lang == "en"}
{$post.atom_content}
{else}
{$post.description}
{/if}
<div class="comments">
{if $lang == "en"}
<a href="{$post.link}" target="_blank">
{blogger_comments_number comments=$post.replies_title}
</a>
{else}
<a href="{$post.link}" target="_blank">
Комментарии
</a>
{/if}
</div>
</div>
{/foreach}$posts is assigned with parsed feed object which can be either parsed RSS feed of my Russian blog or parsed Atom feed of my English blog. I defined three custom template functions: atom_convert_date, rss_convert_date and blogger_comments_number to parse the dates and number of comments supplied in the feeds. The code is included to the page skeleton using {include file=$include} statement where $include variable indicates whether parsed feed or just text should be included. The whole page is generated the following way:$template = new DmitryFi();
$template->assign('lang', $lang);
$template->assign('title', $title);
$template->assign('feed', $feed);
$template->assign('balloon', 'Have a job to offer?<br/>Check my <a href="/cv.xhtml">CV</a>!');
$template->assign('label', $label);
if($posts = @fetch_rss($feed['url']))
{
$template->assign('include', 'feed.tpl');
$template->assign('posts', $posts->items);
}
else
{
$template->assign('include', 'text.tpl');
$template->assign('text', 'Unable to parse the feed. Please try again later.');
}
$template->display(TEMPLATE.'.tpl');
I thought this happens just in States. Obviously not. This text was in guy's YouTube profile:Sturmgeist89
Name: Pekka-Eric Auvinen
Age: 18
Male from Finland.
I am a cynical existentialist, antihuman humanist, antisocial socialdarwinist, realistic idealist and godlike atheist.
SI VIS PACEM, PARA BELLUM! JUSTITIA SUUM CUIQUE DISTRIBUIT! SIC SEMPER TYRANNIS!
I am prepared to fight and die for my cause. I, as a natural selector, will eliminate all who I see unfit, disgraces of human race and failures of natural selection.
You might ask yourselves, why did I do this and what do I want. Well, most of you are too arrogant and closed-minded to understand... You will proprably say me that I am"insane", "crazy", "psychopath", "criminal" or crap like that. No, the truth is that I am just an animl, a human, an individual, a dissident.
I have had enough. I don't want to be part of this fucked up society. Like some other wise people have said in the past, human race is not worth fighting for or saving... only worth killing. But... When my enemies will run and hide in fear when mentioning my name... When the gangsters of the corrupted governments have been shot in the streets... When the rule of idioracy and the democratic system has been replaced with justice... When intelligent people are finally free and rule the society instead of the idiocratic rule of majority... In that great day of deliverance, you will know what I want.
Long live the revolution... revolution against the system, which enslaves not only the majority of weak-minded masses but also the small minority of strong-minded and intelligent individuals! If we want to live in a different world, we must act. We must rise against the enslaving, corrupted and totalitarian regimes and overthrow the tyrants, gangsters and the rule of idiocracy. I can't alone change much but hopefully my actions will inspire all the intelligent people of the world and start some sort of revolution against the current systems. The system discriminating naturality and justice, is my enemy. The people living in the world of delusion and supporting this system are my enemies.
I am ready to die for a cause I know is right, just and true... even if I would lose or the battle would be only remembered as evil... I will rather fight and die than live a long and unhappy life.
And remember that this is my war, my ideas and my plans. Don't blame anyone else for my actions than myself. Don't blame my parents or my friends. I told nobody about my plans and I always kept them inside my mind only. Don't blame the movies I see, the music I hear, the games I play or the books I read. No, they had nothing to do with this. This is my war: one man war against humanity, governments and weak-minded masses of the world! No mercy for the scum of the earth! HUMANITY IS OVERRATED! It's time to put NATURAL SELECTION & SURVIVAL OF THE FITTEST back on tracks!




#!/usr/bin/env python
import dbus
import time
import commands
try:
purpleObject = dbus.SessionBus().get_object("im.pidgin.purple.PurpleService", \
"/im/pidgin/purple/PurpleObject")
purple = dbus.Interface(purpleObject, \
"im.pidgin.purple.PurpleInterface")
except dbus.exceptions.DBusException:
print "Unable to connect to Pidgin! Make sure it is running."
exit(1)
class Track:
__message = ""
def setMessage(self, message):
currentStatus = purple.PurpleSavedstatusGetCurrent()
currentStatusType = purple.PurpleSavedstatusGetType(currentStatus)
currentStatusId = purple.PurplePrimitiveGetIdFromType(currentStatusType)
accounts = purple.PurpleAccountsGetAllActive()
saved = purple.PurpleSavedstatusNew("", currentStatusType)
purple.PurpleSavedstatusSetMessage(saved, message)
purple.PurpleSavedstatusActivate(saved)
def update(self):
if commands.getoutput('audtool playback-status') == 'playing':
artist = commands.getoutput('audtool current-song-tuple-data performer')
title = commands.getoutput('audtool current-song-tuple-data track_name')
message = artist + " - " + title
else:
message = ""
if self.__message != message:
self.__message = message
self.setMessage(message)
track = Track()
while True:
time.sleep(1)
track.update()
#!/usr/bin/env python
import os
import time
import commands
def update():
status = commands.getoutput('audtool playback-status')
if status == 'playing':
artist = commands.getoutput('audtool current-song-tuple-data performer')
title = commands.getoutput('audtool current-song-tuple-data track_name')
os.system('purple-remote "setstatus?status=available&message=' \
+ artist + ' - ' + title + '"')
else:
os.system('purple-remote "setstatus?status=available&message="')
while True:
time.sleep(5)
update()

The frame under the doors was quite dirty before and became even worse. It was covered with stains and they added quite a thick layer of polishing dust. It's hard not to notice such so they just didn't bother to clean it. All the gaps outside are filled with dust and polishing paste leftovers. They didn't bother to clean them either. Bumpers seems untouched and it's still dirty around the gas tank cover. Too low to bend to wash and polish probably. The windows weren't just left dirty. They were covered with stains after polishing and waxing. They didn't bother to clean even them. Is it worth 100€? I don't think so.