July 8th, 2008
Yet again I am searching the net for aspnet_regiis. I tried various combinations including asp_iisreg and aspiis_reg, both of which return results in google. so it seems that I am not the only one who keeps forgetting how it is called. I decided to put it here for my own personal reference. This tool usually has to be run using the -i parameter if you install IIS after you installed Visual Studio and you want to do web service type things.
Posted in General | 1 Comment »
April 5th, 2008
Sidechain compression is not the only effect you can create in Reason using the MClass compressor. Those smart people at propellerheads were insigtful enough to give the MClass compressor a Gain Reduction CV out. Which you can use to control any parameter you like.

Here I am using the compressor to pump an RV7000 Reverb Start by creating a Combinator to host the RV7000 this allows you control parameters that would not otherwise be controllable using CV’s. I’ve put the compressor in the combinator too just to keep things tidy. The Gain Reduction CV output is connected to the Rotarty 1 input on the Combinator. This allows Rotary 1 to be routed to the Dry/Wet parameter of the RV7000.
The overall effect of this setup isn’t that great, but the point is that you can use sidechaining to control any parameter in Reason.
Posted in General | No Comments »
April 2nd, 2008
Here is how I do sidechain compression in Reason. In this example I am going to use a kick for the sidechain source, which can give the output of the compressor a bouncy catchy effect.
First of all you want to setup a default rack with a 14:1 Mixer, an MClass Compressor and a Redrum, make sure when you add the compressor its auto routed as an effect send to the mixer.
Now flip the rack and connect the Redrum’s Send 1 to the Left(mono) channel of the sidechain input on the compressor. Note that the sends from Redrum are mono outputs.
Program a basic 4/4 kick drum pattern into the Redrum device. You can add claps snares or anything else you like they will not be being sent to the compressor at this time until you turn the send knob for a particular Redrum channel.
Once the Redrum is setup how you like you can now send the kick drum to the sidechain by turning the send knob for the kick channel all the way to the right. Note that this doesn’t stop the kick from being sent to the mixer.
You can lower the compressors Threshold and raise its Ratio until you see the kick drum really pump the VU meter. Now that the compressor is pumping we need to give it something to compress. Add a synth to the rack and make sure its auto routed to the mixer. Turn up the aux send of the channel to which the synth was added.
When you play notes on the synth you will hear it go quieter when the kick drum is playing. This can be a useful way to make synth baselines fit better in the mix.
The advantage of using sends rather than using the single channel output of the Redrum are two fold. Firstly the kick drum is not muted and does not need further splitting using a Spider Audio Merger & Splitter. Secondly other elements of the beat can be sent to the sidechain in varying amounts. The advantage of using the compressor as a effect send is that many instruments can have the same compression added to them by altering the aux send of each channel.
Posted in Computers, Music | 1 Comment »
April 1st, 2008
This is a quick guide to creating a ‘Hello World’ Operating system that can be booted by Grub First of all you will need to create the assembly file the contains the entry point for grub. Call this ‘start.S‘
Read the rest of this entry »
Posted in Computers, Linux | No Comments »
March 17th, 2008

I am trying out Tony Buzan’s iMindMap I wanted a piece of software that could capture my thoughts quickly. Mind Maps seem like the best solution for this. iMindMap produces excellent mind maps very quickly, but the best thing is that the maps are visually appalling. This is good for presentations but also helps you to remember things if they are organic and colorful.
Posted in General | No Comments »
February 29th, 2008
Much better than Firefox or Sage is Flock, it integrates with social websites such as Facebook, YouTube, Flickr and others. It allows you to integrate the browser with your own hosted weblog, and create RSS aggregates.
Blogged with Flock
Posted in Computers | No Comments »
February 27th, 2008
I have finally given up and installed firefox again. I was a little disapointed that the ‘Live bookmarks’ feature was not as good at displaying news feeds as Internet Explorer, however I quickly rectified this situation by Installing Sage
Posted in Computers | No Comments »
February 25th, 2008
I recently went on holiday to the Lake District with Johanna, Our Australian friends Micheal and Melissa, Johanna’s sister Trish and her boyfriend Chris. We arrived in Backbarrow on Thursday afternoon unpacked, settled in, and had a really nice steak dinner that Mike cooked for us. On Friday we went for a boat trip on Lake Windermere. The boat took us from Lakeside to Browness. We walked around Browness village before having lunch in a local pub. We caught the boat back to Lakeside in the afternoon, and visited an aquarium in Lakeside. On Saturday we had to get up really early as we had booked an assault course activity day in Grizedale, it was quite an exhilarating experience. On Sunday, we packed our bags and said goodbye to the cottage in Backbarrow, and headed towards Ingleton. In Ingleton we went for a 5 mile Waterfall Trail walk, It was really nice to get some fresh air and strech our legs.
Posted in General | No Comments »
February 8th, 2008
I am now trying to run Mplayer on Tom Tom so that I can watch videos and drive anyone reading this to drink. I found however that Mplayer requires a lot of system resources that are being used by the Navigation application (ttn) So I needed a way to free up the memory and resources being used by the application. This should be as simple as just killing the application using
killall ttn
But the problem is that the ttn application is responsible for petting the dog. That is to say that there is a WatchDog Timer which resets the device after 15 seconds unless something continuously resets the timer.
All that was needed was a script to reset the timer instead, So here is my solution:
#!/bin/sh
killall ttn &&
while(true) do
echo '\0' > /dev/watchdog
sleep 10
done
The trick is to kill the ttn but also keep the Watchdog from reseting the device. The script also has to be invoked as a background job, so I used an ‘&’ after the command.
./free.sh &
Posted in Computers, Movies, TomTom | 5 Comments »
February 1st, 2008

I recently discovered how Hacker Friendly My Tom Tom is. Here is a screenshot of TomTom running a text console with on screen keyboard.
Posted in TomTom | No Comments »