Skip to main content

Bloggers

Gert: blog
Mario: blog
Bert: blog
Guy: blog
Maarten: blog

Planet Open-Future

Tuesday, May 25, 2010 - 19:58

While checking the Google Analytics for gertschepens.be, I noticed someone ending up there with a “gish linux how to install” search. Since I don’t answer that anywhere (nor do the interwebs), I thought Id do a lil Q&A ;) This question isn’t really answered anywhere because its very straight forward!

The linux package is called gish153-1.tar.gz or something alike. You will of course need this to install the Gish! ;) Buy it at http://www.chroniclogic.com/gish.htm (its worth it!)

Installing it is pretty straight forward, as it is simply extracting the archive and putting it where you want to keep it. The .tar.gz (or .tgz) file is an archive file; a lot like the more known .zip or .tar files and extracting them is really simple.

You can extract the file in several easy ways

  • By double clicking it. This will open the file roller or whatever its linked to depending on what linux distro you have. Click extract, choose where you want to extract it and done.
  • By right clicking the file and selecting “Extract Here”; this will extract Gish in the map you have the archive in.
  • By navigating the commandline to the map where the Gish archive is and typing “tar -xvzf gish153-1.tar.gz”. If this doesnt work, check that the archive is in that map and check if the archive name in the command here is correct. This will extract the Gish archive in the map run the command in.

After extracting, you ll have a map with all the Gish files in. You can simply run the “gish” file to play. You can store this map anywhere you want, but do it somewhere logical because you ll navigate there every time you want to play it.

And thats how its installed. Simple, no ;)

Now, you ll probably also want to launch it from your Gnome menu and simply adding the link will have the Gish start without any graphics (this is because the paths are relative and the app as such doesnt find the files it needs.) You can create a new launcher using the menu editor under System > Preferences > Main menu; there select the Games menu and click “New Item”. You can quickly solve this by following the guide on their forums Gish Launcher in Ubuntu or by using the following starting link for your app menu launcher command (The command assumes you have the Gish installed in your home directory; for example “/home/yourname/gish153″. If this is not where you put it; change that ;) Bash will probably be in /bin but if it doesnt work, do check that too.)

/bin/bash -c “cd ~/gish153/ && ./gish”

The mechanics are that you have bash change the working directory to the right path and start the gish from there. Ill see about posting this to the forum thread too, but I honestly dont have the time right now to do the registration dance & all..

Id never have thought of writing this, but since there was a search hit for it, I guess its something people have questions about. I hope its of use to someone!

Edit: As blogs are a fleeting medium, this is maintained at gertschepens.be


Wednesday, May 12, 2010 - 12:46

True to tradition, the Bitmappers computer club (Hasselt) is hosting their 5th Ubuntu Meeting. This time, centered around the recently released Ubuntu 10.04 LTS – Lucid Lynx

Sunday May 16th, 10am till 6pm; @Cultuurcentrum, Genk.

Ubuntu meeting 2010 @ Genk

As one of the sponsors, Open Future has provided several speakers and as such, I will be there, talking about Games in Ubuntu; a revamped version of the talk I gave earlier, updated with amongst other things, a decent look at some indie games worth mentioning. And Virtualisation for Beginners; a talk about what virtualisation is, what do do with it and how to do it.

(And I promise to make at least one of them Really cool ;) )

So follow their updates via @UbuntuMeeting, check the details at ubuntu-meeting.be and come say hi!


Tuesday, April 27, 2010 - 20:44

I'm wondering what is wrong with the internet connection in Belgium

There are many complaints of non-working websites while other sites are working perfectly
This for several providers here (so not just mine)

My connection is @dommel and I had never problems with this connection, but sins a month (or more) I see more waiting cursors than I want
It is even unacceptable at this moment

websites like hln.be, destandard.be, linuxquestions.org (and many more) even some pages on the dommel.be site are not working well

If I debug those connections manually it looks slower than 28.8 or even nothing

For now I just placed a squid over vpn to my server in germany and I can surf very fast again :)

is Belgium trying to inspect the traffic? or is this just a slow peer on our Belgium net?


Saturday, February 27, 2010 - 22:03

This is my new backup solution

A sheevaplug computer running debian
And as storage an ICYBOX with a 500G sata disk

you don't get high bandwidths but for a backup storage this rules for home usage

At first I was trying to backup with rsync over ssh with blowfish
But this was to slow, I just get 50mbit
(ssh blowfish encryption was to heavy for this 1,2GHz arm processor)

so I decided to use rsync deamon
My backup is syncing now at 100mbit ;)
(I now rsync is not a backup, but I just want a copy in case of crash)

I also found that pulling the usb plug shuts down the harddisk
so I will check later to unload the usb after the backup has finished and when I got the time
It could save power


Wednesday, February 24, 2010 - 13:26

There, after spending a while figuring out why
if ( something.indexOf(select_groups[i]) == -1 ) {
threw an error; I was finally able to restore IE support. (poor misguided souls needn’t miss out on the Javascript goodies)

Apparently (Try to wrap your brain around this) the javascript version in IE doesnt support Array.indexOf()! All other browsers do, just not The Internet Explorer! (You can explore, but dont go in too far.) And I’m talking about IE8 here, not IE6..

More on that topic on this blog post “JavaScript Support and Array.indexOf in IE” (2008-08-13 – yes, 2008 and still its an issue!) The post also goes into the history; turning Mind boggling “WTF??” into “oh, MS is just being lazy”..


I did have to tinker slightly before it worked as expected; their solution returns nothing instead of -1 when no element was found. The solution is really simple
if (!Array.indexOf) {
Array.prototype.indexOf = function (obj, start) {
for (var i = (start || 0); i < this.length; i++) {
if (this[i] == obj) {
return i;
}
}
return -1;
}
}

and actually to be found in the last comment; though I only discovered that AFTER figuring this out myself. Took me a second to realize the code wasn't returning the -1 I needed for the rest of the code to do its jazz..


Premium Drupal Themes by Adaptivethemes