Wednesday, August 15, 2012


I use Google Chrome most of the time at home and on other computers, so it is nice to be able to log into chrome and see all your bookmarks, and have the ability to start up a session just like you left at home.
Let me know if I missed anything cool/fun/useful.


Extensions :
FlashBlock - Stops flash stuff from running until you click on it, helps speed things up
 MuteTab - Allows you to mute any tab you want.
SMEStorage Cloud Dashboard - One place for Dropbox, Box.net, Skydrive, etc....
TabCloud - Allows you to save all your tabs.. Useful if you change computers, or have different "profiles/common tab sets" for specific tasks, It can really cut down on distraction when working or whatnot.
Google Voice - Call, SMS
Add-Ons:
Weather Channel & Full Screen Weather 
Subsonic  - Since I have a subsonic server, it is nice to have.
JoilCloud - Fun to play with
Bloxorz - Really fun puzzle game
IsoBalls 3 - Like the old school marble madness of my c=64 daze...


Skydrive in Ubuntu 12.04


I now am happy with my 12.04 mostly xubuntu system, I just wanted a way to mount Skydrive.. Turns out it is easy with the SME packeage. Very easy to install, let you link to 3 storage providers (including Skydrive!!) plus they give you 5gigs from their own service... not too bad.. 
Just go to smestorage.com and get the package for you.. If you have problems installing sudo apt-get -f install should fix you right up.

Went to wordpress for awhile.... I like blogspot better, so I am going to transfer by posts from there over here.
 


Saturday, January 29, 2011

I just got an old Dell Latitude C600 (P-III 750 512mb, 60GB, DVD-RW) -with a good battery for the total sum of $30! Yeah! - The only downside is that it had a european keyboard or something so a few keys are in different spots.

Here is what I did w/it.


Not really sure what I am going to do w/it, but I will probably use is as a document display in conjunction w/synergy most of the time.


Wednesday, December 15, 2010

Using apt-fast to speed up Ubuntu installs

When setting up your Ubuntu system and installing lots of programs, you might want to consider using this really neat utility called apt-fast. It gets your download from multiple sources to increase your download speed and therefore speed up the install process, best of all it supports the upgrade and dist-upgrade options!


Using Ubuntu, just drop to a command line and do the following...

sudo add-apt-repository ppa:tldm217/tahutek.net
sudo apt-get update
sudo apt-get install apt-fast

Now when you install just use apt-fast instead of apt-get and you should see a big improvement.


Scott





Friday, December 10, 2010

I just set up my netbook with 10.10 server edition, LXDE and cairo-dock, all I had to do to make it just right for me was remove lxpanel and pcmanfm. Now I have a nice clean desktop without all the extra crap installed I will never need. The only thing missing was a wallpaper changer, so I threw together a little script to display a random one. Be sure you have FEH installed and are not using pcmanfm to manage your desktop. Just save it somewhere, chmod +x it, and add it to ~/.bashrc (I start a terminal at login) with a & at the end of the line and you are good to go.


#change wallpaper randomly
#by scott goodgame 2010

#! /bin/bash
WALLPAPER_DIRECTORY=~/DesktopStuff/wallpaper
INTERVAL=300 # number of seconds to keep each wallpaper
FILES=($WALLPAPER_DIRECTORY/*)

while true; do
feh --bg-fill ${FILES[RANDOM%${#FILES[@]} ]}
sleep $INTERVAL
done

Irvverter in Ubuntu 10.10 Meerkat

My favorite conversion software for my ematic mp3/video player, iriverter, dosent work when installed from the repository. Here is how to install it..

Go to http://iriverter.thestaticvoid.com/ and download the latest version.

Drop to a command prompt and change to the directory you downloaded it to, then type sudo /usr/lib/jvm/java-6-openjdk/bin/javaws iriverter.jnlp

Enjoy

Scott