File Partitioner version 2.0 released!
December 11th, 2006A newer version of File Partitioner is out today.
It now features its own setup program, improved performance and a much better interface.
A newer version of File Partitioner is out today.
It now features its own setup program, improved performance and a much better interface.
Almost ready (the first 90% is done, I’m working on the next 90%), this is the screensaver you will be impatient to show your friends!
The screensaver is completely 3d rendered and will require a 3d video card to run (early geforce models or better, the kind of video card any computer bought in the latest four years should have).
It will feature multiple clock models, so you can change your virtual clock every day, depending on your mood ![]()
Right now it’s still in production phase: it needs a little more polish, a decent installer and some kind of documentation. I am also modeling some new clock model, just to be sure you will have enough styles to choose from ![]()

By the way, this screensaver will also need the Microsoft .net framework version 2.0, so you might as well start downloading it.
A new version of FontViewer has been released today.
As always, if you have any trouble or suggestion, feel free to leave a comment to this post.
This time I am giving you a peek of what’s coming in the next version of gljakal’s To Do. Here is a list of the features you will find in the new version:
As always, this is still a beta release, so please report anything that’s not working properly or that you wish to have in the next version, either by comment to this post or by mail.
Here is a new beta setup for Clock.
Main features of the new version:

A small note: this is beta software, so strange things can happen!
Please report any issue or problem you have with the new version either as comments to this post or by mail. “Thank you” messages are also appreciated
While the new release of Clock is on the way, I have decided to release the version I am currently using, so you can preview some of the new graphical features.
The main new feature is Antialiasing. I think that for a program like Clock, whose main feature is being nice to see, this is a very important feature. And it’s not that cpu-consuming
.

The next important feature in this version is the new “transparent - click-thru” mode, which is perfect if you find that Clock gets in your way too often. Do not forget that you can still right-click the tray icon to interact with clock! This feature works only on windows 2000/XP.
Finally, three more skins have been added, named “Clean white”, “Clean red” and “Clean orange”. These three skins are especially suited to the “transparent - click-thru” mode.
One thing I really loved about Opera (the browser), is that you can launch a google search simply by typing the letter g followed by your search phrase in the address bar: so, for example, if I’m searching for free task management software, I can just type “g free task management software” in the address bar and I’ll be taken to the google results page for my search phrase. This is an incredibly nice feature to have, because it greatly speeds up any web search.
Firefox users will surely love to learn that their favorite browser has an even better approach to the same feature. Not only Firefox comes with an array of quick searches (for example, “google” searches on google, “wp” searches on wikipedia and so on), but these searches are totally configurable!
For example, let’s try to add a quick search for Google Images, so that when I want to search for an image of a cat I can just type “i cat” in the address bar.
First, we have to go to the google images page.
Next, we need to right click inside the text box and choose “Add a keyword for this search”.
The “Add Bookmark” window pops up. Let’s use “Google Images” as the bookmark’s name and “i” as the bookmark’s keyword.
I usually save my quick searches inside a folder named “Quick Searches”.

Press Ok and you’re done! Now, any time you want to search for an image you just need to type the letter i followed by your search terms in the address bar and you will be taken to the google images results page.
With over 20000 downloads (just in 2006…), Clock! is surely my most successfull program.
This is a screenshot showing one of the new features coming in the new version: smooth (antialiased) clock hands!
You can also see a new theme, wich should be easier to read.
What do you think? I’d love to hear your comments
A lot of people don’t know this, but you can greatly enhance the appearance of the text displayed on your screen by turning on ClearType.
Cleartype is a new feature introduced in Windows XP that uses a technique known as “sub-pixel font rendering” to “round up” the text displayed.
While the “cleartyped” text may be a little too blurry on normal CRT monitors, it becomes more readable and pleasing to the eye on laptop monitors.

Cleartype is enabled by right-clicking on your desktop, selecting [Properties], then on the [Appearance] tab clicking on [Effects] and finally enabling “use the following method to smooth edges of screen fonts”. You can choose [Standard] or [Cleartype]. The difference between standard and cleartype is that the standard setting smooths only big-sized text, thus making it more suitable to CRT displays.
You can also change your Cleartype settings with ClearTweak, a free software from ioIsland.com.
If you’re getting an “unknown runtime error” in internet explorer while using the javascript method object.innerHTML=”…some html”, here is a hint to put you on the right track: you’re probabily trying to put a block-level element inside an inline element.
For example, given the html code:
<p id="the_container">Hello</p>
<script type="text/javascript">
<!--
var obj=document.getElementById('the_container');
try
{
obj.innerHTML='<ul><li>List item 1</li><li>List item 2</li></ul>';
}
catch(ex)
{
alert(ex.message);
}
//-->
</script>
In internet explorer, a dialog will pop up complaining about an “unknown run-time error” (Thanks Microsoft for your helpful error messages). The solution (if you really can’t force your users to use Firefox :)) is to sobstitute the parent element with a block-level one, such as a DIV:
<div id="the_container2">Hello</div>
<script type="text/javascript">
<!--
var obj=document.getElementById('the_container2');
try
{
obj.innerHTML='<ul><li>List item 1</li><li>List item 2</li></ul>';
}
catch(ex)
{
alert(ex.message); // never displayed
}
//-->
</script>