Skip to content

Category Archives: howto

Java 3d in a NetBeans Platform Application

12-Nov-11
Share

If you want an excellent introduction into Java 3D, look no further than here. I was following the tutorial I found there to get started with what looked to me as the perfect way of spending a Friday evening, when, somewhere at the end, it told me that: (…) it does not mix very well [...]

Installing Arch on an Asus U36JC Notebook

20-Oct-11
Share

Last weekend, I bought an Asus Pro36s notebook, also known as a U36JC. It features a quad core 64 bit Intel Core i5-2410M CPU at 2.3 Ghz, 4 GB DDR3 RAM, a 500 GB hard drive and an Nvidia GeForce GT 520M video adaptor. It weighs less than 1.5 kilos (that’s including batteries) and is [...]

Native look and feel for Swing under Linux

19-Apr-11
Share

This one is not really an eye-opener, but I use this blog to record and archive stuff I find out at some point, so here’s a post about getting NetBeans Platform Applications use GTK instead of Metal. Since the Swing Application Framework (SAF) has been deprecated and developing NetBeans Platform Applications (NPA) is the new [...]

Deploying EJB3 In Action code examples in NetBeans

25-Mar-11
Share

I’m currently learning Enterprise Java Beans 3 using Debu Panda et al.’s book EJB3 in Action. The material is not very hard but there’s lots of stuff to memorize, and the best way to do that is by running the code examples and trying to change it (and break it). The easiest way to do [...]

Scry and eregi deprecation

09-Feb-11
Share

One of the downsides of using software that is not being maintained anymore, is that when dependencies change, its users have to adapt the software. Scry, my favorite photo album software, is running in PHP, which makes that a dependency. Scry makes use of the PHP functions eregi() and eregi_replace(), which scan strings for pattern [...]

Diaspora on Arch

16-Sep-10
Share

I have some kind of a love/hate relationship with Facebook. I like being up to speed on what people I know or once knew are up to and the network site allows to me to conveniently stay in contact with people without any effort on my part. That said, Facebook has a questionable reputation where [...]

KDevelop 4: first steps

25-Aug-10
Share

This will be one of those blog entries that I write primarily to document for myself some stuff I found out after some effort, but that might also be useful for others. When developing applications, I primarily use Java, mostly because it will do everything I want and it’s the language I’m most familiar with. [...]

X Forwarding and sudo

05-Jun-10
Share

I administrate a remote linux machine of someone I know who now and then needs me to help him out. To find out if applications actually work, I use X forwarding. To do that, the remote box has X forwarding enabled, by having this line in its /etc/ssh/sshd_config: X11Forwarding yes Then I use: me@localbox:~$ ssh [...]

Lucid breaks Firefox Flash plugin (+solution)

05-May-10
Share

After upgrading their Ubuntu 9.10 machine to 10.4 (Lucid Lynx), someone in my neighbourhood noticed that Flash had stopped working in Firefox. Googling around didn’t provide me with a solution, but reinstalling the plugin did the trick: # sudo apt-get remove flashplugin-nonfree flashplugin-installer # sudo apt-get install flashplugin-nonfree flashplugin-installer

Netbeans ignores class (+ solution)

03-Mar-10
Share

The weirdest thing happened while I was programming with my favorite IDE, Netbeans 6.8, today. When I work on big applications, I usually split them in two or three projects (usually model, view, controller). Then I import the projects in the main application project. At some point Netbeans suddenly told me it couldn’t find a [...]