Heroes never panic.

Deal of the day

Posted: March 29th, 2006 | Author: | Filed under: General | 1 Comment »

I think this one does not need comments …


When i grow up

Posted: March 25th, 2006 | Author: | Filed under: General | 6 Comments »

One day, when i grow up … i will “speak” all of these ;) )


Happy 2006

Posted: December 31st, 2005 | Author: | Filed under: General | Comments Off

I wish to all of you a great 2006!


Custom Gmail CSS

Posted: May 27th, 2005 | Author: | Filed under: General | 5 Comments »

That’s a nice one! :)
gmail-skinning
(via friendsofed)


Exams, exams, exams

Posted: April 9th, 2005 | Author: | Filed under: General | 5 Comments »

That time of year is slowly approaching.. What time of year, you may ask? Well, since last October, i am back to university (this time i am really finishing my BCS degree, honest) and the exams are round the corner :) I am actually enjoying studying more than i did years ago.. and (this sounds kinda scary, i know) i am kind of looking forward to the exams :) )

Anyway, the point of the post was something else: finally, after more than a year of thinking about it, i actually took the time to go and pass the Sun Java Programmer Certification exam… yes, i passed! w00t! (scored 83%)
So, here’s another certification to add to the collection: Sun Certified Programmer for the Java 2 Platform 1.4.
Next, please… ;)


Time to say MT goodbye

Posted: September 26th, 2004 | Author: | Filed under: General | 7 Comments »

For some time now i’ve been thinking of changing my blog engine (currently it is Movable Type) to something else.
Why? .. well, i don’t like the way you edit templates in MT and the comment-spammers are really annoying and i don’t think Todd will ever upgrade the current MT version (and, don’t worry Todd, i don’t even want to ;) )
So, while waiting for Todd to finish up his CF blogging system (and then pass it on to me ;) ) I have narrowed down my choice to two options: Textpattern and PyBlosxom.

I like Textpattern for its ease of use and configuration and being very flexible. On the other hand, PyBlosxom is written in Python and as such very appealing (oportunity to learn more Python! :D )
Does any of you know of other (possibly Python) blog systems worth taking a look?


Macromedia Goodies

Posted: September 25th, 2004 | Author: | Filed under: General | 6 Comments »

Thank you Macromedia for the very nice gift! :)
The Timbuk2 Laptop Messenger bag is great and my laptop fits perfectly :) … and it came just on time, as if MM knew that i have school starting in a week and was looking for a nice bag to carry my laptop around :D
Thank you also for the nice “Go to And Play” tshirt, the UI flash cards and the personaly signed letter from Mike Chambers.

The Fedex box arrived on Wednesday (unfortunatelly i had to pay 60 euros of taxes), but i wasn’t able to open it and see what’s inside till this Friday (i was away).

I would also like to thank Christian Cantrell for sending me the letter about Central 1.5 release.

I am not sure what i did to turn up on Macromedia “gift list” (this is not the first time i recieve a gift from MM) but i feel happy and honoured and glad :)
Thank you again!


CSS classes case sensitive?

Posted: September 23rd, 2004 | Author: | Filed under: General | 4 Comments »

I didn’t know this before: It appears that css classes are case sensitive, but you must declare a proper doctype in your html document for this to work (html 4.01 and above).

For example, this stylesheet:

// myStyle.css

.myclass{
	background-color: Aqua;
	width: 50px;
	height: 50px;
}

.MyClass{
	background-color: Fuchsia;
	width: 100px;
	height: 100px;
}

whit this html document:

//test.html
 
 

will apply to each div the proper class.
If you test this in Mozilla Firefox or Netscape 7.1 it works stright away. If you take out the xml declaration it works even in IE6. But if you delete the doctype declaration, then both divs will take the style of the latter class (MyClass in this example).
I should probably note, that this has been only tested on my local PC, so i don’t know if this is true for the Mac as well…


Facelift

Posted: July 4th, 2004 | Author: | Filed under: General | 6 Comments »

Just a little facelift … Don’t you just love css :)
… well.. apart from the footer that does not show right in IE :|


Leave the last test broken…

Posted: November 11th, 2003 | Author: | Filed under: General | 4 Comments »

Been reading Test driven Development at the moment (toghether with other 10 or so books, heh) and today i came accross this sentence that really got me.
It’s one of those things you want to write on a piece of paper and stick it on your monitor so you never forget.
Kent Beck says:
“How do you leave a programming session when you’re programming alone? Leave the last test broken.”

Basically he is saying that one should never leave the code for the next session in a perfectly working state. Before leaving, one should always make one last thing and make sure that that last thing does not work. …so that when you come back to the code, you then have an obvious place to start – “an obvious, concrete bookmark to help you remember what you were thinking”. This will also keep you away from just staring at the code and marvelling at how everything works, trying to think of what to work on next but not really starting it yet cos you don’t want to break anything so soon ;) .. or just trying to remember the mental state you were in and thus wasting a lot of time before finally getting back to typing.
(happens to me a lot of times!)

This does not work out well if you’re working with a team, though ;)