Category: Software

Seashore: Open-source Paint for Mac

By , 2010-10-05 21:55

Download Seashore.

Coming from Windows, the one thing I miss most (apart from Solitaire) is Paint. Today I stumbled across a neat little open-source Mac-native app called Seashore. Effectively, it’s Paint, for Mac, with a dash of Photoshop/Gimp added for good measure.

Download it from the link above.

Enable Desktop Effects in Kubuntu 10.10 using radeon driver

By , 2010-09-28 21:33

Just installed Kubuntu 10.10 on my old ThinkPad T43p. It has an ATI FireGL V3200, which is similar to the Radeon X600. The latest fglrx driver doesn’t support this card anymore, however the open-source ‘radeon’ driver does. The driver is enabled by default in a fresh install of Kubuntu maverick, however KDE desktop effects are not enabled. After some research, I found that “KWin has detected that your OpenGL library is unsafe to use, falling back to XRender.”

The solution then is to force Kwin to enable desktop effects and stop complaining.

Edit ~/.kde/share/config/kwinrc

add

DisableChecks=true
OpenGLIsUnsafe=false

to the

[Compositing]

section

http://kubuntuforums.net/forums/index.php?topic=3113529.msg240826#msg240826

Thanks to Rog131 of kubuntu forums.

Add static route on Mac OS X

By , 2010-09-28 10:39

sudo route add 192.168.13.0 netmask 255.255.255.254 gateway 172.29.247.250

http://www.canadacomputers.com/product_info.php?cPath=14_203&item_id=030833&sid=mrbbq02dsilbfapnes0u0ie904

By , 2010-09-27 09:20

AC’97 Audio in Snow Leopard

http://www.insanelymac.com/forum/index.php?showtopic=230356

By , 2010-09-13 10:34

Message from syslogd@proxmox at Sep 13 10:32:46 …
kernel:You probably have a hardware problem with your RAM chips

Message from syslogd@proxmox at Sep 13 10:32:46 …
kernel:Uhhuh. NMI received for unknown reason a0.

Message from syslogd@proxmox at Sep 13 10:32:46 …
kernel:Dazed and confused, but trying to continue

AppleWorks on Snow Leopard

By , 2010-07-26 01:12

I am happy to report that AppleWorks 6 for Mac OS X runs perfectly on Snow Leopard using Rosetta.

Just be sure to get the latest update from http://support.apple.com/downloads/AppleWorks_6_2_9_for_Mac

Also, if you have problems running the update (hang/freeze), try running it with all network connections disconnected.

DVD playback in XBMC on Ubuntu

By , 2010-07-17 17:15

To get DVD playback to work properly in XBMC on Ubuntu, disable nautilus’ automount feature

-> gconf-editor
apps->nautilus->preferences
Uncheck “media-automount”

http://www.pubbs.net/201002/opensuse/27474-opensuse-disable-automount-for-dvd-drive.html

Making a SOCKS proxy transparent

By , 2010-07-07 15:43

Finally, after about an hour of googling, I found a program that allows a SOCKS proxy to be made transparent. Installed on a router/gateway, this can force all LAN users’ traffic through the proxy.

http://darkk.net.ru/redsocks/

via http://wiki.przemoc.net/tips/linux#making_socks_proxy_transparent

HOWTO: Easily modify dependencies of a .deb file – Ubuntu Forums

By , 2010-06-28 10:35
#!/bin/bash
 
if [[ -z "$1" ]]; then
  echo "Syntax: $0 debfile"
  exit 1
fi
 
DEBFILE="$1"
TMPDIR=`mktemp -d /tmp/deb.XXXXXXXXXX` || exit 1
OUTPUT=`basename "$DEBFILE" .deb`.modfied.deb
 
if [[ -e "$OUTPUT" ]]; then
  echo "$OUTPUT exists."
  rm -r "$TMPDIR"
  exit 1
fi
 
dpkg-deb -x "$DEBFILE" "$TMPDIR"
dpkg-deb --control "$DEBFILE" "$TMPDIR"/DEBIAN
 
if [[ ! -e "$TMPDIR"/DEBIAN/control ]]; then
  echo DEBIAN/control not found.
 
  rm -r "$TMPDIR"
  exit 1
fi
 
CONTROL="$TMPDIR"/DEBIAN/control
 
MOD=`stat -c "%y" "$CONTROL"`
vi "$CONTROL"
 
if [[ "$MOD" == `stat -c "%y" "$CONTROL"` ]]; then
  echo Not modfied.
else
  echo Building new deb...
  dpkg -b "$TMPDIR" "$OUTPUT"
fi
 
rm -r "$TMPDIR"

via HOWTO: Easily modify dependencies of a .deb file – Ubuntu Forums.

Ralink 3090 driver : Markus Heberling

By , 2010-06-25 22:33

ppa:markus-tisoft/rt3090

via Ralink 3090 driver : Markus Heberling.

Driver for the cheap Ralink wireless in the Acer Aspire Revo.

Custom theme by me. Based on Panorama by Themocracy