Here is my first paper as a part of my master’s degree in software engineering at BOUN
Category Archives: stuff
Well the title has a lot of product names in it some which might not be familiar to all of you, so i’ll try to give short descriptions
Groovy: An agile programming language inspired by ruby that compiles to Java classes, works on the JVM and integrates with existing Java libraries. A must use for agile [...]
Acegi JdbcDaoImpl for logins
06-May-09Acegi is a great security framework that I’m using at a project at work. If you checked out the tutorial on the site, they use a user.properties file to store the user names, passwords and the authorities of the users. This is o.k for an example but in real world applications you need a database, [...]
One of the primary goals of weblaster was to have a fast javascript based application to manage a media collection.
The amount of data we are talking about is an array with around 35.000 elements that contain something like this:
{
“id”:”10098″,
“track_name”:”Sarah Yellin’”,
“album_name”:”Live Away From The Sun”,
“artist_name”:”3 Doors Down”
}
that’s around 110 bytes per element times 35K nearly 400K [...]
Gnome Terminal default size
21-Mar-09I was sick of having to resize the gnome terminal after each launch, so here’s a way of changing the default size permanently
sudo vim /usr/share/vte/termcap/xterm
change the line
:co#80:it#8:li#24:\
to
:co#120:it#8:li#50:\
if you want a1 20×50 terminal.
Not that I need it but just to squeeze every penny from my mac book pro 4,1 (Penryn):
First enable the MacTel repositories in your
/etc/apt/sources.list
file:
deb http://ppa.launchpad.net/mactel-support/ubuntu intrepid main
then a
apt-get update
and finally install the hal-applesmc for the mactel stuff.
Now add the applesmc to your
/etc/modules
file to load the module at boot time or just
modprobe applesmc
to [...]
Screencast for TOBO – Usage
23-Feb-09Here’s a short screencast demonstrating the usage of tobo.
tobo the jabber todo bot from deniz dizman on Vimeo.
TOBO – The Jabber Todo bot
21-Feb-09The GTD method application contains an interesting paradox:
Instead of GTD you spend much time learning GTD applications.
So the key feature of a GTD application must be: easy of use. Nothing complicated.
Add items, delete items, list items and search items. Anything other than this will prevent you from GTD.
Also you never know when something will pop [...]
Todo Jabber bot
21-Feb-09Just created a jabber bot to manage my todos on the go and from my pc.
Check it out:
http://tobo.dendiz.com
Posted via web from Deniz’s posterous
Groovy HTTPBuiler
05-Feb-09Groovy is a very cool language that supports functional programming goodies such as closures etc and compiles to Java classes that integrate seamlessly with the JVM. It can also make full use of existing classes and libraries of the Java environment. One of these libraries that I wanted to use was the Apache Commons HTTP [...]