Woohoo The Simpsons Movie

I Just got back from watching the Simpson’s movie. I went with a number of friends and family. After a 30 minute wait in line and 20 minutes of ads it started.

And I have to say it was well worth going to see, with non-stop laughs from start to finish, and some great animation. The first 30 minutes were as Mr Burns would say, Excellent. If the film had carried on like that, it would have been the greatest Simpson’s episode ever. But towards the end, it seemed to tie things up a little to quickly in my opinion.

The Simpsons Movie

My biggest disappointment with the movie is that Sideshow Bob appears nowhere in the film. All throughout the movie I was expecting Sideshow Bob to appear and help homer save the day, or more likely be the very man behind the plot to destroy Springfield. But it never happened – I even waited until after the credits, with no luck.

Other than the absence of Bob, the Simpson’s movie was a great first film, lets hope the Sequel is even better.

Replacing Silicone with Carbon

A key discovery at Rensselaer Polytechnic Institute could help advance the role of graphene as a possible heir to copper and silicon in nanoelectronics. Researchers believe graphene’s extremely efficient conductive properties can be exploited for use in nanoelectronics.

Graphene, a one-atom-thick sheet of carbon, eluded scientists for years but was finally made in the laboratory in 2004 with the help of everyday, store-bough transparent tape. This research is an important first step, For developing a way to mass produce metallic graphene that could one day replace copper as the primary interconnect material on nearly all computer chips.

Zune Arts Video Dogfight

Not a fan of the Zune, I prefer my iPod more, But I do like the Zune Arts videos their really artistic. The latest edition to the Zune Arts gallery “Dogfight” has some great animation in it, enjoy.

You can check the rest of the videos out at zune-arts.net.

WordPress Blogger’s beware

Today I found that some one had registered on Shellscript with the username: poset97qq & email: petersmith97@gmail.com, over the last couple of days I’ve had a massive influx in spam comments. And because the username looked a little too random, I was slightly weary of the new subscriber.

After googling the username I came across a number of blogs complaining about the very same subscriber. It seems like it could be the same bot with the username: xdfsd45oi & email: johnsmithuswe@gmail.com that tried to delete a number of blogs a while back, due to a word press bug that has since been fixed. The best thing to do if any of these users register on your blog is to delete them and make sure you have the latest version of word press installed.

How Superman Should Have Ended

Browsing youtube again, I came across this funny spoof on the original superman movie. The way it should have ended seems to make more sense than the original ending did – for one he stops both rockets before they hit their targets, after all he is Superman. Even Batman makes an appearance. Classic.

For more animations like this check out www.howitshouldhaveended.com

IPCop 1.4.16 Released

Looks like its time for an update.

From the IPcop website: This release fixes some bugs, update glibc, Net::DNS and capi for security reasons. Upgraded packages are squid, snort, e100, r1000… As usual, this version can be installed as an update from previous v1.4.x versions or with a ready-to-go ISO or usb bootable images or pxe for a fresh install. Files are available on ‘IPCop’ package at Sourceforge.

Read the rest of the release for further details.

Shell Script Online Offline Online!

Shellscript.co.uk has been on and offline constantly for the last seven days due to a faulty Internet connection, after an upgrade on the connection took place just over a week ago. It has been difficult to get a connection to the Internet for more than a few minutes at a time. For 3 hours yesterday, it remained connected, so I was able to get shellscript transferred to an offsite web server – which I had planned on doing in a few weeks time despite this problem. The transfer was just in time because 10 minutes after, the Internet connection died again. Fortunately, ShellScript is now back online and all seems to be well again.

GNU General Public License 3 Released

The final version of the GPLv3 was officially released yesterday on the 29th June 2007, by the Free Software Foundation (FSF). You can check out the final text version here. For more information visit the GPL FAQ, it has recently been updated for the release of the new GPL.

The GNU GPL is the most widely used free software license worldwide: almost three quarters of all free software packages are distributed under this license. Version 1 of the GPL was released in 1989, and version 2 in 1991. revision of the GPL for version 3 began In January 2006.

Creating Custom Grub Splash Image

I’ve not posted anything technical for a while, well if you can call this technical. I just thought I would write a quick ‘how to’ for creating your own custom grub splash images.

I am assuming that since you are trying to create a grub splash image that you are using some variation of Linux and have the gimp & gzip installed.

Creating The Grub Splash Image

To begin you need to either create your image or find one you like. Once you have an image, open it up with the gimp and resize it to 640 x 480. To do this go to Image > Scale Image and then enter the width 640px & the height 480px and then click scale. now you need to reduce the amount of colors used in the image to 14 to do this select Image > Mode > Indexed Colours and then where it shows maximum number of colors set this to 14 and click ‘ok’.

Now save the image with an .xpm extension by selecting File > Save As then entering the name of you new grub splash image followed by .xpm (mygrubsplash.xpm) or you can select the file extension from a list by selecting File > Save As then clicking Select File (Type By Extension) then just click save, but it is probably easier just to type the .xpm extension after you enter the file name.

The last step to creating your custom grub splash image is to gzip it. Just as long as you remembered where you saved it, if you are using Gnome (not sure about KDE) you should be able to right click on your new .xpm file and select create archive then select the .gz file extension from the drop down list and click create. If for some reason you are unable to do this, then you can do it all through the command line as a normal user, just make sure to change to the directory that your splash image resides in first.

$ cd /foo/bar/
$ gzip -c mygrubsplash.xpm > mygrubsplash.xpm.gz

Installing The Grub Splash Image

Now you can install it. All you have to do is move your .xpm.gz file to /boot/grub/, You can do this through the command line but you must be root, so either su - or sudo like so:

# su -
# mv /foo/mygrubsplash.xpm.gz /boot/grub/

or

# sudo mv /foo/mygrubsplash.xpm.gz /boot/grub/

You then have to edit a file called menu.lst which is located in the same directory /boot/grub/menu.lst and adding this line: splashimage=(hd0,0)/grub/mygrubsplash.xpm.gz to it where mygrubsplash is the name of your.xpm.gz file. first check to see if this is already present in your menu.lst file, if so just edit the name of the .xpm.gz bit to match your own.

I’m using Vi to edit the file, because it’s pretty much the default text editor for most Linux distros. Feel free to use a text editor you feel more familiar with.

# vi /boot/grub/menu.lst
splashimage=(hd0,0)/grub/mygrubsplash.xpm.gz

Quick tip if you have never used Vi to edit with, you must first press ‘i‘ to start editing and when you are done editing press the escape key in order to save the changes to the document you must press ‘:wq‘ that will save changes and exit the document. if you just want to quit without saving the changes press ‘:q!‘.

Also you may want to change the default background colour and text colour to better suite your new splash image. You can do so by adding the text below to your menu.lst.

foreground = ffffff
background = 000000

If you are using Debian like me, you may want to comment out the default colours first before you add your custom colours. You can comment them out using the hash ‘#’ symbol.

#Pretty colours
#color cyan/blue white/blue

Hopefully if you followed everything correctly you should have your custom grub splash installed and ready. You should now be able to view it the next time you reboot. Have fun ;) .

Most realistic Linux in I’m a Mac spoof

When Novell did their ‘I’m a Mac’ spoof, it was nice to see Linux for a change; but looking at that ad, we all know that’s not what Linux looks like or even sounds like. If Linux were a person it would probably look and sound just like the Linux in the following videos:

Upgrading:

Gaming:

Created by the guys at truenuff.com way before Novell did their version these have to be some of the funniest ‘I’m a Mac’ spoofs ever. They have recently made many more new additions since the two Spoofs above, which are around a year old now, You can check out the rest at http://tv.truenuff.com/mac/