Revive lost numeric keypad on newer Mac keyboards

May 29th, 2010

I recently switched from the large white Apple Keyboard (A1048) to the compact Apple Wireless Keyboard (A1314).

I was really happy with the new one, except for one thing – on my old keyboard I made heavy use of the numeric keypad, so I realised that neither the new keyboard nor the Macbook Pro keyboard itself offer a feature which was there on my older PowerBook G4: the availability of a numeric keypad equivalent by pushing the fn-key and 789/UIO/JKL/M.

Fortunately, I ran into a nice software by Takayama Fumihiko – KeyRemap4MacBook. It will activate the old functionality, and what is more, it has to offer all kinds of custom key remappings as well as customisation of key repeat rates and whatnot, just in case you need …

Conway/Kochen: The Free Will Theorem

March 1st, 2010

John Conway together with Simon Kochen in 2006 put forward and proved a theorem that (very) roughly says this: “If human beings have free will, then elementary particles have free will.”

Abstract:
On the basis of three physical axioms, we prove that if the choice of a particular type of spin 1 experiment is not a function of the information accessible to the experimenters, then its outcome is equally not a function of the information accessible to the particles. We show that this result is robust, and deduce that neither hidden variable theories nor mechanisms of the GRW type for wave function collapse can be made relativistic. We also establish the consistency of our axioms and discuss the philosophical implications.

http://arxiv.org/abs/quant-ph/0604079

On that topic, Conway held six instructive and entertaining lectures at Princeton:

http://paw.princeton.edu/issues/2009/07/15/pages/6596/index.xml

OpenCV and Mac OS X 10.6 Snow Leopard

September 20th, 2009

The changes in OS X 10.6 basically broke OpenCV’s Quicktime/Carbon GUI functionality.

There is a workaround/patch which allows building Macport’s OpenCV 1.0.0 on 64bit architecture, however, without any QT/Carbon support.

See here on the issue:
http://trac.macports.org/ticket/21014
http://tech.groups.yahoo.com/group/OpenCV/message/65895

A ticket is filed at OpenCV on Sourceforge, too:
http://sourceforge.net/tracker/?func=detail&aid=2859071&group_id=22870&atid=376677

Update:
#21014: OpenCV 1.0.0 does not build on snow leopard
——————————————-+——————————–
Reporter: grundmann.matthias@… | Owner: ryandesign@…
Type: defect | Status: closed
Priority: Normal | Milestone:
Component: ports | Version: 1.8.0
Resolution: fixed | Keywords: LP64
Port: opencv |
——————————————-+——————————–
Changes (by ryandesign@…):

* cc: stante@… (added)
* status: assigned => closed
* resolution: => fixed

Comment:

Updated and fixed in r64069.

Secret Twins 2

September 16th, 2009

Dan DeLuca
“The Wire”-stickybeak Dan DeLuca
Dr. Nick
“The Simpsons”-stickybeak Dr. Nick

Secret Twins

September 16th, 2009

Citröen HY
Tati-movie star Citröen HY

Darth Vader
Space mascot Darth Vader

Mac OS X 10.5 Server and the Server Monitor App

July 22nd, 2009

The last couple of days I began setting up a new server for the small network that I administrate. Sadly, I ran into a mind-boggling problem right after the installation:

Adding the freshly set-up server to Server Monitor only produces the following error messages:

“Software not installed properly on server”
and
“CANNOT_LOAD_BUNDLE_ERR”

There are some posts about this issue on the web, so I wanted to let you all know what I found out.

One reason for the error can be a faulty DNS configuration. Check this by entering
$ sudo changeip -checkhostname
in your terminal. This might tell you if there’s a DNS problem. You might then refer to the Network Services Administration document on the Apple website, which gives some basic but useful information about DNS configuration.

Another reason might be the following: The Server Monitor tool only works together with a Mac OS X Server operation system that is installed on an XServe. It won’t work with an OS X Server installed on different hardware (as a Mac Pro, which turned out to be the problem in my case).

Please leave a comment.

Morton Shumway – What Makes The Possible Real? (Getting The Story Straight 002)

July 11th, 2009

“It is all around us!” – this kicks the whole thing off ground, or rather grounds it, as we find polyphonic realspace handclapping from ra.h’s deep-dry ‘Fall of Justice’ which we might think can only exist in our living rooms – isn’t there something hiding in the woods, or is it just common hausmusik? The scope of this mix is not genre, but differences in music, feeling and life that become visible by a conscious selection of interesting material, throughout contextualised by voice samples that make me wonder what electronic music is actually about. Not with an interest in bastard pop eccleticism, but with a feel for beauty, it all ending in the sparkling scenario of an end-of-the-night taxi ride through downtown Chicago.

LISTEN HERE

Connecting to IRC via Colloquy using Tor and Socat

May 14th, 2009

Colloquy does not have a proxy function implemented yet. Still, it is possible to realise a connection to an IRC chat via a Tor server. There are some post on this issue over the web, but if you’re not an advanced computer user, it’s hard to understand, as the descriptions are not very explaining, and leave out important things. This is what I wanted to fix.

Still, this is not easy to realise. I will try and explain it as clearly as possible, so that anyone should arive at getting it to run. However, you should be familiar with the shell (called ‘Terminal’) – if not, start reading about it now.

So lets do it. What we need is four pieces of software. The first is Colloquy (http://colloquy.info/, which we install just the usual way in our GUI environment). Second, we need Macports (www.macports.org, which is just a software managment software. We only need it to download and install the following two programs). Third, Tor (https://www.torproject.org/, the software for connecting to proxy mixes). Fourth, Socat (http://www.dest-unreach.org/socat/, which is a software that can act as a network connections interface between other programs).

What we will build might look like the following:
(Colloquy) — (Socat) – (Tor) – (Tor Proxy)
The first three brackets show software which will run on our computer. As you can see, Socat will establish the connection between Colloquy and Tor, which will then connect to the Tor proxies on the web.

Now to the installing, configuring and running:

1. Get Macports and install it. You can get helpful info here: http://guide.macports.org/.

2. Via the shell, install Tor and Socat using Macports:
:~ sudo port install tor
:~ sudo port install socat

Both installation processes will take a while.

3. Configure and run Tor: See whether there is a file /opt/local/etc/tor/torrc. If there only is one called torrc.sample, copy it to the name of torrc:
:~ cp torrc.sample torrc
Then, run Tor:
:~ tor
The process should tell you something like:
“Tor has successfully opened a circuit. Looks like client functionality is working.”
Leave that terminal window open and get another one (cmd-n). You can stop the Tor process by ctrl-c.

4. Run Socat by entering:

:~ socat TCP4-LISTEN:6666,fork SOCKS4A:localhost:SERVERNAME:6667,socksport=9050

At the place of SERVERNAME, you have to enter the name of the IRC server you want to connect to.
Leave that terminal window open, too. You can stop the socal process by ctrl-c.

5. Configure Colloquy
Right-click in the Connections window to make a new connection. For the server name, enter ‘localhost’, and 6666 as the port number.

6. Chose that connection and click ‘Connect’. Now you should connect to the required server. Go into any room (or open one yourself), right-click on your user name and click ‘get info’ to make sure your IP and hostname are those from the Tor proxy you use (i.e. not those ones that your ISP provides you with).

See info on this issue on the web:
http://www.learnsecurityonline.com/index.php?option=com_mamboboard&Itemid=69&func=view&id=997&catid=41
http://blog.oneinsane.net/?p=14
https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ#head-1793e1e8a4701ba463b5b82b33f59e787ff752f9

Haidinger’s Brush

March 9th, 2009

I can see Haidinger’s brush. A few minutes ago I did not even know that I could, nor that something like this existed, but now I can clearly see it! Or rather, I always wondered why my LCD screen never seemed to be as white as it seemed to be …

Can you see Haidinger’s brush?
http://en.wikipedia.org/wiki/Haidinger’s_brush

Reminds me of birds using skylight polarisation for navigation: Skylight Polarization Patterns and the Orientation of migratory Birds

Schema Theory as a Framework for Studying the Brain Mechanisms of Action, Passion, and Language

October 14th, 2008

flyer lecture

Workshop “The Mirror System Hypothesis: On Being Moved”

October 14th, 2008

flyer workshop