Office Communicator under Ubuntu 12.04

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 »

PostgreSQL 9.2 released

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 »

Windows 7 Library Icon

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 »

jboss-web.xml validated with its dtd

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 »