3
Nov
soapui 3.0.1 in linux
Posted in bees, linux, soapui | No Comments
When using soapui 3.0.1 on my linux-box I ran into the following error:
The program 'TuxPack GTK+' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
(Details: serial 1338 error_code 8 request_code 42 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
(Details: serial 1338 error_code 8 request_code 42 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
The fix is to add the following option to bin/soapui.sh:
JAVA_OPTS=".... -Dsoapui.jxbrowser.disable=true"
9
Sep
No sound in Ubuntu 9.04
Posted in bees | No Comments
If you get the following error:
ubuntu alsamixer: function snd_ctl_open failed for default: No such file or directory
Then add the line
options snd-hda-intel model=auto
to /etc/modprobe.d/alsa-base.conf and reboot.
Thanks to this guy.
18
Mar
Diablo’s Reign of Terror Continues
Posted in bees | No Comments
From Tada’s Revolution: http://tadasrevolution.wordpress.com/

Diablo (imitating a small wounded panda): Help! Help!
Baron: What happened here? Hold on little buddy!

Baron: What the…This is not a real panda. This is a mannequin panda!

Diablo: Hand over the keys!

11
Aug
Find multiple patterns, copy to directory
Posted in bees | No Comments
Search multiple directories, match multiple patterns, and copy to directory:
~/$ find src/ include/ -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.S" \) -exec cp {} build/ \;