Saturday, June 2, 2007

DeepFish

Looks like MS wants to please me these days or somehing :) After awesome test of PupFly I got to test DeepFish.

What DeepFish is is basicly a new way to browse the web via mobile device. The technology is somewhat similar to SnapPreview. When you want to navigate to some page, the request is sent to their web-service, the web-service generates a preview JPEG image and sends it back to you. The JPEG is way smaller than the actual page, so obviously it will take far less time to load it. Then you can zoom in and out on the page to read stuff etc. You can also use forms (it loads the actual page segment when you request it to).

Basicly - DeepFish is an awesome idea. But it's on a very early stages yet. Not everything is working, and obviously not the best user expirience. I bet when they are finish with this it will rock everybodies mind! :)

Thursday, May 31, 2007

Got my invitation to PopFly!!!!

Wow!!! This think totaly rocks!! I'm moving boxes around like a child here! I think I'm going to move my blog to that place!!!

ttyl!!

Friday, May 25, 2007

PopFly (WOW)

Just a quick note on my evaluation of PopFly - a new Microsoft's service based on Silverlight. I did not even have the invitation yet, but even watching videos and looking around made me wow lots of times. Go check it out! http://popfly.com/

Good job here Microsoft. Let's what Adobe has ;)

Sunday, May 20, 2007

Officially a WTF

Just seen my getTrue WTF was submitted on theDailyWTF.com. Fills good ;) Check it out!

http://worsethanfailure.com/Articles/Seeking-the-Truth.aspx

Friday, April 20, 2007

Radio station added

Just added a radio station to the top of the blog. You can come back here and listen to it whenever you want;)

Sunday, April 15, 2007

Optimize for happiness

Recently I came across the idea of happiness optimization. It basicly says something like - do what you like to do - that way the product will be better, and you wil be happier.


I never concidered my self a great programmer. That is true. I never liked programming contests, as I'm not really sure what are those for. I beleive that a good programmer is a happy programmer. And that is it. Which is why I've decided to optimize for happiness.

Maybe I'm too much motivation driven, but I really think that satisfaction from the job is obligatory.

I really think that programmers should have life. If you ever read Douglass Coupland's "Microsofters" I think you'll know what I mean. By life I mean girlfriend, parties, trips, friends, etc. This is mandatory. Ofcourse there are nightly shifts etc, but programmer is a human beeing, and he/she should be able to have fun. Code shouldn't be the meaning of the life. Life should. I don't see the reason to write a good code by sacrificing even the smallest peace of your own life. Maybe opensource commnity will strongly disagree with me on that :).

I remember some interview with Linus Torwalds, where he was describing his first steps in programming. Oh common - who can think now programming on machine language can be fun? Obviously he can. I remember it was something like: "And look, I change this bit - and it moves! wow! cool!". Didn't we all had a simiar feeling? Don't we all love the possibilities thos machines give us in controlling themselves? Isn't THAT fun? Isn't THAT art or whatever you call it? Isn't THAT why we all are so into it?

One of the reasons I've started programming was to get more into various audio stuff, as I was keen of producing music. And it was really something - to hear those lines of code producing sound. That was my wow. That is my inspiration. I hate working without inspiration and I actually don'r remember if I ever did. I really don't know what was "wow" for those programmerв who love Database programming - that is like fata morgana to me. Man is that boring?


So this is my current position as to what should the work look like - work should be fun. Otherwise it's not yours and you will do a great favor to yourself and others by turning around and looking for something more suitable for you. I'm pretty sure this will change in future, when I will be a bit older and would like to have a static home and job. Right now that is not for me, so I've decided to quit SoftServe and register as an enterpreneur with a state.



Thanks to all of SoftServe employees for being patient to my weirdness that was bugging them sometimes;).

Wednesday, April 11, 2007

installed XPCOM components list

If anybody wants to list all XPCOM components installed on his/hers Mozilla platform - here is a small script. Embed it on the page and it will do the rest. It took me a pretty lng while to figure this out (I'm not very good with javascript and Mozilla), and in the end it appered to be so freaking simple!.. so maybe it will be useful for somebody like me.


Here it goes:
var numOfObjs = 0;
for (tmp in Components.classes)
{
document.write(tmp + "
");
numOfObjs++;
}
document.write("Found objects: " + numOfObjs + "
");



Same you can do for interfaces:


var numOfObjs = 0;
for (tmp in Components.interfaces)
{
document.write(tmp + "
");
numOfObjs++;
}
document.write("Found objects: " + numOfObjs + "
");



It still did not help me to get my registered class though - it appears to be not registered, but at least I see my interface..