advertisement

Ubuntu 11.10 network shares to Os X lion with netatalk

I had quite some problems getting netatalk to run again after upgrading my server to ubuntu 11.10. This will explain the way I did it(also as a note for myself when I need it again). first I removed netatalk completly, you can make a backup of your /etc/netatalk if you want. Now I added a [...] [...]

Seven languages in seven weeks: My solutions for Io day 3

I just finished Io day 3 of the excellent book Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages (Pragmatic Programmers) Here are my solutions, and a general wrap up of my toughs on Io. Xml builder with indentation Basically we have to modify a given xml builder to use indentation. I [...] [...]

Seven languages in seven weeks: My ruby solutions – Day 2

In this post i will discuss my solutions to the selfstudy exercises of day 2 in the ruby chapter of the excellent book: Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages (Pragmatic Programmers) So lets get started: The exercises begin with some find exercises that basically let you search for ways [...] [...]

Seven languages in seven weeks: My solutions for Ruby Day 1

I finally got to start in Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages (Pragmatic Programmers) The following weeks i will post my solutions to the self-study exercises. I know a lot of people already blogged about their solutions, but i will misuse this opportunity to do so and exercise my [...] [...]

Integrating Google tasks with your ubuntu desktop

While I was looking for a desktop integration for google chrome i found the following to articles: http://www.brighthub.com/computing/linux/articles/36842.aspx which describes how to use alltray and prism to integrate google tasks with you gnome panel. and http://www.makeuseof.com/tag/5-ways-to-access-your-google-tasks/ which describe how to use chrome’s feature to create a desktop shortcut to a web-application. if you combine them [...] [...]

Loading environment specific spring configurations.

At my work we try to deploy locally on tomcat or glassfish and in production (and the other test environments) on webspere. For this we often need to overwrite a spring bean to implement it differently. For example we use jdni to loopup the datasource in the websphere environments, but we prefer to use a [...] [...]

Mirroring eclipse update sites

When you have resticted internet access at work, dealing with eclipse plugins can be a pain. A lot of plugins don’t make local-update archives anymore, so you have to look for other solutions. I had a look at epmt(http://code.google.com/p/epmt/) which is a nice, but not very stable application to mirror eclipse update sites. Unfortunately it [...] [...]

JSF: MultipleField Validations

At work we decided that we wanted all our validations on a page to happen within the validation phase of JSF. On trying this we got a lot of trouble from fields that had such a relation to other fields that you could only validate them as a whole. The problem here is that in [...] [...]