Sunday, 22 June 2014

Earn A Little Extra Money Online - With Virtually No Effort



That sounds a little too good to be true but I promise you that for once, it isn't. Qmee is a search add-on that'll pay you just for searching the web. No strings attached. All communications are encrypted and Qmee doesn't change the actual results you see: it just presents a sidebar with other relevant results (like above) and you'll get paid a couple of pennies if you click one of them.

It's not megabucks and it won't be enough to feed a family of four but it's an extra one or two pounds a week for doing I already do for free. I've been using it for months now and I'd recommend it to anyone.

You can download Qmee here.

Thursday, 19 June 2014

Flash Won't Work in Firefox - "Flash Player 11.3.300 Required"

So I was messing about on Betfair, hoping to net a tidy profit on some of the World Cup matches (not likely!) when I noticed they'd given me some free spins on their Live Casino service. Not likely to pass up the chance to win some risk-free money, I promptly headed on over there only to find my version of Flash was not up to their high expectations.



After doing a bit of forum browsing, I'd read that Adobe had stop putting out usable updates for Firefox in uBuntu a while back. Thankfully there is a solution. I suspect there is a better way but what is most certainly the quickest and easiest way is to download and install Google Chrome (Note: not Chromium that is installed via the Software centre).

This shouldn't take more than five or ten minutes and when running, Chrome comes with the latest version of Flash installed so every Flash application should run smoothly.

Monday, 2 June 2014

How to Extract/Unrar a File from an Incomplete Rar File

So you've a rar file which is about 99% complete but you can't find the 1% and aren't bothered about missing it - however you can't extract the file. What you need is to extract the archive while keeping the broken file. This can be done with a simple command line prompt:

unrar x -kb (path to file)

The broken file should then appear in your home directory.

Thursday, 10 April 2014

Create a Custom Keyboard Shortcut

Very quick and simple bit of advice on how to create custom keyboard shortcuts.

1. Menu -> Keyboard

2. Go to the Shortcuts tab.

Then you can create custom shortcuts for more or less every aspect of uBuntu.

My personal favourite is to set shortcuts for each workspace to allow me to flick back and forth between different tasks quickly. As you can see below they're set so CTRL+1 takes me to workspace 1, CTRL+2 takes me to 2 and so forth.


Friday, 28 March 2014

Make Icon Sizes Specific to Folders

Recently I've found that I've wanted to change the default icon size in one specific folder purely for aesthetic reasons (I have custom icons that I want to see full size every time).

Unfortunately I've not been able to do it in Nautilus as when you change the default size... it changes it universally, not just for the one folder which is what I want.

The good news is it does work in Nemo, an alternative file browser which is available from the software centre.

Or in terminal:

sudo add-apt-repository ppa:gwendal-lebihan-dev/cinnamon-stable
sudo apt-get update
sudo apt-get install nemo

Even if you're not interested in folder specific icon sizes, I've always found its helpful to have a secondary browser just in case.

Thursday, 20 March 2014

Block Website Using Hosts in uBuntu

If you’ve ever wanted to block a website more comprehensively than a Firefox add on then this might be for you.

1. Hit Alt + F2 to bring up Run.

2. Type the command:

gksu gedit /etc/hosts

3. To block the website add 127.0.0.1 then the website. Tab to create the space, if you were wondering.

127.0.0.1 facebook.com

127.0.0.1 http://www.facebook.com

4. Save and you’re done. Obviously, you can always go back and remove those lines if you want to use those sites again.

Monday, 26 August 2013

Change Hostname on uBuntu - Quick & Easy

Here's a quick and simple four step guide to changing your computers hostname on uBuntu.

1. In the terminal enter:  

sudo gedit /etc/hostname  

2. The file should be an empty text file. Save the file with the hostname you'd like to set.

3. In the terminal enter:  

sudo /etc/init.d/hostname.sh start  

4. Reboot.