Gnome-Shell Add Custom Launcher
First i installed alacarte and added my launcher as usual. Then I had to refresh the shell by pressing ALT+F2 and type r. After that my launcher appeared in the menu.
Gnome-Shell Add Custom Launcher Read More »
First i installed alacarte and added my launcher as usual. Then I had to refresh the shell by pressing ALT+F2 and type r. After that my launcher appeared in the menu.
Gnome-Shell Add Custom Launcher Read More »
moving the window buttons to the right has changed a bit since 12.04. Now you are able to use the following command to have the good old school button layout: gsettings set org.gnome.desktop.wm.preferences button-layout ‘menu:minimize,maximize,close’
Window Buttons right in Ubuntu 12.10 Read More »
Eclipse uses the system username by default. This is not always useful. Especially if you can’t choose the username on your own. To get around this just add “-Duser.name=Max Mustmann” (without quotes!) in your eclipse.ini somewhere after vmargs.
Set Author Name in eclipse.ini Read More »
I recently managed to connect to office communicator under linux. First I installed pidgin-sipe and configured my account. But something seemed to be wrong with the ssl communication. So I copied over all ssl certificates from pidgin: cd ~/.purple/certificates/x509/tls_peers && sudo find . -type f -exec cp {} /etc/ssl/certs/{}.pem ;; sudo chmod a+r /etc/ssl/certs/* Then
Office Communicator under Ubuntu 12.04 Read More »
see http://www.postgresql.org/about/news/1415/ for further information about the new features. To install it in ubuntu you could use Martin Pitt’s ppa under https://launchpad.net/~pitti/+archive/postgresql sudo apt-add-repository ppa:pitti/postgresql sudo apt-get update sudo apt-get dist-upgrade sudo apt-get install postgresql-9.2 postgresql-client-9.2 WARNING: This won’t upgrade your 9.1 if you’ve already installed that. Of course you could get rid of your database with apt-get
PostgreSQL 9.2 released Read More »
After a few weeks with a self signed SSL certificate I had a closer look at the site statistics and as thought before still lots of people don’t visit a site behind a self signed certificate. Because I don’t want to spend money for a certificate I made the whole site accessible via http instead
Conclusio self signed SSL certifacte Read More »
If you want to change the icon of your custom library in the windows 7 file explorer you have to edit a file with your favourite editor. I found the file under the following url: C:Users<username>AppDataRoamingMicrosoftWindowsLibraries<library-name> There I added <iconReference>C:usrlocaleclipse_indigoeclipse.exe</iconReference> after “<isLibraryPinned>true</isLibraryPinned>”
Windows 7 Library Icon Read More »
I tried to run openproj under ubuntu 12.04 with the latest jdk7 from oracle. Openproj complains that the java vendor should be sun instead of oracle. So simply use the zip or tar.gz version of openproj from sourceforge, extract the files and change the following line in openproj.sh: JAVA_OPTS=”-Xms128m -Xmx768m” to JAVA_OPTS=”-Djava.vendor=Sun -Xms128m -Xmx768m” Then
OpenProj 1.4 with Oracle JDK Read More »
I wanted to use the dtd of jboss-web.xml as code completion only works with a schema in eclipse and I don’t like warnings about missing schemas anyway. So here is an example jboss-web.xml that is validated with it’s dtd. <?xml version=”1.0″ encoding=”UTF-8″?> <!DOCTYPE jboss-web PUBLIC “http://www.jboss.org/j2ee/dtd” “http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd”> <jboss-web> <context-root>test</context-root> </jboss-web> You can also download the
jboss-web.xml validated with its dtd Read More »
I was just messing around with postgresql and table partitions and tablespaces. Here is a short SQL script that uses a virtual table that is partitioned by the modulus of the id column. Each partition lies on a different tablespace and in the schema partition. begin; drop table if exists partition.test_0; drop table if exists
PostgreSQL Table Partitioning Read More »