Sunday, February 25, 2007

Microsoft Word became crazy?

Searching around on the Internet I found this trick: Open an empty Word file (I have not tested it in Word 2007), type = rand (200,99) and press enter. Wait for 3 seconds and then a lot of pages will be filled with a repeating sentense (I use the Greek version of Word 2003 and the sentense that appears is part from a poem). As I released after, this is not a bug, it is an easy way to transfer text and Microsoft knows that it happens. If with a single line like this, Word could write down pages from my exercises, it would be for sure my favorite program to use.

Tuesday, February 13, 2007

Blogger navbar and Internet Explorer 7

As you may have noticed, if you use Blogger with a blogger template, Internet explorer 7 displays your blog with a problem on the top (Blogger nav bar is hiding part of the header). The solution for this problem is to put some html code into your template and hide the navbar (very few people use the nav bar, so it is better to hide it and have your site being displayed correctly). Between <head> and </head> tags paste the following code under the */layout*/ line. (everything between /*....*/ is comments and it does not affect your site, so be carefull to paste the code under the comment line).
#navbar-iframe {
height: 0px;
visibility: hidden;
display: none;
}
Save your template, view your blog and enjoy how Internet Explorer 7 displays it!