Over the last weeks I’ve become a huge fan of Snarl, which is a Growl-like notfication system for Windows. With the appropriate plugin, applications like Firefox or Miranda can display user messages through Snarl, which only opens small “bubble” message boxes that close itself after a certain period of time. This way the desktop isn’t cluttered with message windows that the user has to close by hand.

So far, the number of extensions/plugins that are available for Snarl is still small, but with the software below I’m doing my part to increase it :-)

Online Comics

May 27th, 2008

nichtlustig.de

Unter http://www.nichtlustig.de gibt es wunderschöne Comics über depressive Elefanten, ängstliche Zebras, kreative Lemminge, sowie viele andere skurrile Alltags- und Nicht-Alltagssituationen. Absolut sehenswert!!!

Already a little while ago Robert postet some example code on how add meta data to images using the relatively new WPF.

After playing around with the code for a while, I got some weird exceptions thrown at me, e.g. “A first chance exception of type ‘System.Runtime.InteropServices.COMException’ occurred in PresentationCore.dll“. Now, the only thing I had changed was letting the tagging routine run in a seperate thread:

[STAThread]
static void Main()
{
Thread t = new Thread(writeMetadata);
t.Start();
Application.Run(new Form1());
}
static void writeMetadata()
{
// write the metadata to the image here
}

What if you’re implementing an application in .NET (C#) that is supposed to automatically update itself once a new version comes out? Well, you have multiple options, some of which cost a lot of money, while others are free but come with certain restrictions, like being only compatible with an ISS or solely running in user space like ClickOnce apps.

Contact Alarm v0.2

March 26th, 2008

image

Today I released an updated version of my Skype plugin “Contact Alarm“. It introduces a new setting, which will let you replace the default alarm sound with one of your own .wav files. In addition, the license bug was (hopefully and finally) resolved.

So if you experience any problems, or if you have any questions or suggestions for the next release, feel free to let me know in the comments or drop me an e-mail.

Get it from Skype Extras

If you consider a donation (which would make me happy:-)), you can do so with the button below.

Virales Marketing

February 4th, 2008

In der letzten Zeit habe ich viel über virales Marketing gelesen und gehört, speziell von einem Freund, der in diesem Bereich seine Diplomarbeit schreibt. Heute morgen ist diese neuartige Vermarkungswoge bis in die Wrangelstraße, genauer gesagt in meinen Briefkasten geschlagen. Dort fand sich ein gefütterter Umschlag, der nach dem Öffnen ein schmales Holzkästchen zu Tage förderte. Selbiges enthielt neben einer Lochkarte, welche auf der Rückseite die Beschriftung “THE FINAL MILL INC.”/”SERIES AAB” trug, einen Zettel mit folgender Info: “To execute these commandments you’ll have to find the properly gifted fellows.” Der Poststempel besagt, dass der Umschlag in Frankfurt aufgegeben wurde.

Contact Alarm - Skype Plugin

January 30th, 2008

Update: In the meantime beta version 0.2 of this plugin has been published. Go here.

image

As already noted in one of my previous posts, I have been looking for a Skype plugin that will let me set individual status notifications for my contacts. Although Skype has a build-in option for notifying you, when your contacts’ status changes (by little fade-in windows), this option affects ALL of your contacts. This can get quite annoying, especially if you have more than 10 buddys.

This was going to be a whole post about the advantages and disadvantages of both (or the four), but luckily someone already summed it up and included a whole bunch of valuable sources in his post. However, most of them are more than one year old, which is why I’d like to have your comments and of course your vote below. What do you use to develop your GUIs?

SWT or Swing?

View Results

Loading ... Loading …

For GUI Development: Eclipse or NetBeans?

View Results

Loading ... Loading …

It’s accomplished! As of now I can officially call myself “M.Sc. in Applied Computer Science” with a key qualification in media and communications. Thanks again to everyone, who gave me their support over the last 6 month (thesis). I won’t forget!

Since I may have to do some PHP programming in the near future, I have been looking for a nice IDE over the last week. For syntax highlighting and simple editing, Notepad++ has been doing the job so far, but I’m getting sick and tired of having to use the print() command to output variables I need to check. Thus, code debugging was one of the mandatory features I was aiming for in my conquest for an IDE. As of yet, I have been using Eclipse for my Java programming, being very satisfied with its feature list as well as its GUI and the fact that it’s supported by a huge community. Furthermore, it’s open-source (therefore freely available) and easily extensible through hundrets of plugins, available via the Eclipse-internal software update mechanism.