Archive for the 'Uncategorized' Category

Postgresql: Resetting the Password on Windows

Posted by pebuchmann on 25 Jun 2010 | Tagged as: Uncategorized

I found this useful hint on how to reset the password for any postgres user on Windows: net user postgres postgres

Liferay Deployment Problem

Posted by pebuchmann on 17 Jun 2010 | Tagged as: Uncategorized

Explanation for the “Version …” conflict error message when deplyoing a portlet to liferay:

Symbolic Links on Mac OS X

Posted by pebuchmann_super on 29 Nov 2009 | Tagged as: Uncategorized

To create a symbolic link: ln -s /Volumes/Classic/ Classic results in: Classic -> /Volumes/Classic/ To get rid of the symbolic link: unlink Classic

Mac OS X: versions “Operation not permitted”

Posted by pebuchmann_super on 14 Sep 2009 | Tagged as: Uncategorized

This annoying error message when working with subversions is most likely due to locked files. To unlock files in a folder recursively use: chflags -R nouchg [files] More background information on the problem can be found at unlocking files on Mac OS X.

Ant with Flex Builder 3 on Mac OS X

Posted by pebuchmann_super on 12 Sep 2009 | Tagged as: Uncategorized

Found this great blog entry that explains the minutes of setting up an infrastructure on Mac OS X for working with the Apache build system.

Grails Google App Problem

Posted by pebuchmann_super on 05 Jun 2009 | Tagged as: Uncategorized

When generating a Google AppEngine complient web app in Grails, there is a mistake in the MyApplication/target/war/WEB-INF/datastore-indexes.xml file which causes the shell script $APPENGINE_HOME/bin/appcfg.sh from doing its job properly and eventually prevent you from deploying your application to the appengine. You have to go into the datastore-indexes.xml file and remove the following line: xmlns=”http://appengine.google.com/ns/datastore-indexes/1.0 Thats [...]

Connecting NetBeans 6.7 to SVN on Ubuntu

Posted by pebuchmann_super on 23 May 2009 | Tagged as: Software Development, Ubuntu, Uncategorized

These are the steps I had to take to establish a connection from within NetBeans 6.7 to my Subversion Repository via a https connection. Install svn -> sudo apt-get install svn Install an svn client, I chose RapidSVN -> sudo apt-get install rapidsvn In NetBeans select Team > SVN>Check out… and fill in the Form. [...]

Testing on Google’s Android Platform

Posted by pebuchmann_super on 19 May 2009 | Tagged as: Uncategorized

This is the first of a series of articles explaining how testing on Android works.

Installing OpenOffice 3 on Ubuntu 8.10

Posted by pebuchmann_super on 15 Mar 2009 | Tagged as: Uncategorized

Sadly, OpenOffice 3 didn’t make it into the official 8.10 release, but here is a link to a great tutorial on how to do the update.

JBoss Seam: @create= true and @Autocreate

Posted by pebuchmann_super on 06 Mar 2009 | Tagged as: Uncategorized

The difference between @create= true and @Autocreate in JBoss Sea,