Archive

Cleaning my laptop..

I love Dropbox. :D I’ve been cleaning my laptop and trying to organize all of my files, but moving them first to my desktop (~2TB’s of storage :P ).

Dropbox has been great so far since it works on Windows, Macintosh and Linux. I’m only using it for Windows and Ubuntu at the moment, but it works the same for both and it’s very efficient with a fast connection.

My goal is to clean my hard drive on my laptop back down to the bare bones size (just the Windows and Program Files folders taking up space).

I’ve let my hard drive pile up far too long, so I’m going to clean it and uninstall software I’m not using anymore. I have a bad habit of holding on to things and software that you never use anymore is just wasteful.

All of this just to get better boot up times and general performance improvements in Windows XP on my laptop, haha.

After running Registry Mechanic on my computer earlier it found over 1,500 problems, so I fixed them and optimized the registry and I can already tell some improvement. ;)

I’m hoping that disk cleanup and defragmenting after all of my files are transferred will give a noticeable boost.

Anyone have any other suggestions?

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

Opera 9.61 released


Hot on the heels of 9.60, we had to release Opera 9.61 to address problems in Opera Link. Alone, each issue we discovered was miniscule and shouldn't have caused any problems, but together, and coupled with some server issues, it turned out to be more serious than we thought.

If you've been using Opera Link and has had problems with Opera freezing, getting duplicate bookmarks from nowhere, eternal syncing or other problems, you should upgrade to 9.61, especially since it also has some security fixes.

Opera 9.61 update

Opera Software released Opera 9.61 today, which addresses a few security and stability issues. This release is a recommended security update for all those running the previous stable releases.

See the changelog for more information.

Download Opera 9.61

Google Translator v2.4pre1

I’ve spent some time today improving my Google Translator widget for Opera. You can find the changelog here, but I’ve uploaded a screenshot of the tab changes that I made.

Basically, I just made it follow the layout of the Google Chrome browser a little more closely. In version 2.3 I was going for more of a Gmail design with the folder style, but it was difficult to work with since I had to make it hide a little to make more room. This change will actually help me with my next big feat…making the widget resizable.

Here is the screenshot comparing v2.3 to v2.4pre1:

I’ve had a lot of good feedback on this widget with over 114,000 downloads (currently at 114,174). The one feature request that continually comes up is for a resizable version.

Unfortunately it’s not as easy as one might think so it’s taken some time to change my code. It’s been completely rewritten for a third time now as each time it becomes more and more optimized and fluid.

I’m hoping to satisfy everyone with v2.5 which should be the first resizable build so stay tuned.

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

Opera 9.61: To be released soon, try it now

It looks like Opera is about to do a follow-up release of 9.61 to fix a couple of bugs that made it into 9.60. The International install file is dated 10/20/2008 01:31:00 PM on the ftp server.

I’ve uploaded Windows and Macintosh builds of Opera 9.61 to my “Old Versions” of Opera download page.

While Opera 9.61 is not official until it has been published on the front page and the official Opera download page, it’s usually a good sign when builds for Windows, Macintosh and Unix have all been built and are waiting on the servers. :D

So you can either go to my download page or you can browse through the files on Opera’s ftp server (if you don’t trust my files :P ).

Or if you’re not ready to install it yet and would prefer to wait until it’s officially released then you should expect to see an update notification possibly within the next couple of days.

I do not have a definite list of the changes since 9.60 (yet). However, I think there will be a fix for the Opera Link bug that created multiple duplicate copies of bookmarks on the end users computer after synchronizing each time.

UPDATE (2008-10-21):
Opera 9.61 has been released. See the changelog here.

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

The eyeballing game

I love time waster games. This one, “The eyeballing game,” is pretty fun and it’s a true test to how well you pay attention to detail.

My score ended up being fair. I’m sure if I took it again I could score higher, especially with some form of aid to measure on screen. :P

I scored a 4.43 on the game. Lower is better. I didn’t come close to others though. See how well you can do!

It runs you through the set of tests three times and takes the average of them as your score. The list of tests include measurements with:

  • Parallelogram
  • Midpoint
  • Bisect angle
  • Triangle center
  • Circle center
  • Right angle
  • Convergence

Give it go!
http://woodgears.ca/eyeball/

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

I want this BMW M3..*drool*

I built this on bmwusa.com, oh so nice.

Build you own BMW M3 here:
http://www.bmwusa.com/Standard/Content/BYO/Byohome.aspx?NAModelCode=0937

Post your own pictures of how you would build it here:
http://www.bimmermania.com/viewtopic.php?f=2&t=254

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

Linux: Find and remove matching files

I frequently use find to find all files matching a pattern and then delete them. I catch myself searching for the proper syntax to using this so I’m now going to blog it so I can find it easily from now on.

Lots of times I will use this technique to remove all “Thumbs.db” files from an NTFS, you know…the little database files that Windows XP by default automatically creates in every single folder that contains an image. They annoy me, so I use methods like the ones listed below to remove them.

If you want to use this, if will find all matching instances from the directory that you are in and following sub-directories. It will not search in parent directories.

The examples below will search for all Debian packages. Examples: this.deb, that.deb, those.deb, etc. Notice that the * is a wild card expression.

One simple way of doing this is:

username@host:~$ find . -name ‘*.deb’ -exec rm -f \{\} \;

The most common way of doing this is to use xargs, such that you don’t spawn one command for each file to be deleted:

username@host:~$ find . -name “*.deb” -print | xargs rm

(Note: Yes I’m ignoring files with spaces in their names.)

Here is another method that I found online that seems to be less common, but it makes the most sense of all three:

username@host:~$ find . -name “*.deb” -delete

You can also just use the following method to list the files in the terminal to make sure that the results are correct and to make sure that you want to delete them before you accidentally delete the wrong ones. ;)

username@host:~$ find . -name “*.deb” -print

If the results are too long to fit in the terminal or you’d just like to have them in a text file then you can send the output to a text file instead by appending the following to the end of any command in the terminal.

> output.txt
(Here is an example)
username@host:~$ find . -name “*.deb” -print > output.txt

If you know of any other methods, please feel free to share them!

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

My own Ubuntu Personal Package Archive

I setup my own personal package archive today on LaunchPad. I plan on writing a few programs and porting some older programs that I’ve written to the Debian platform.

This will allow me to have a central place of serving the updates.

If you want to use my repository, you can add it using the following:

deb http://ppa.launchpad.net/kyleabaker/ubuntu intrepid main
deb-src http://ppa.launchpad.net/kyleabaker/ubuntu intrepid main

I currently have not added any packages, but you can keep an eye on my activity and also bookmark the following link so you can update the repository when you upgrade your system.
https://launchpad.net/~kyleabaker/+archive

I’d like to use this archive to publish snapshot builds of Opera, but unfortunately all published packages must be allowed to integrate with Ubuntu and since Opera is non-free I can’t do this. Oh well.

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]

Opera skin updates and Torrent stats

I’ve updated the Opera 9.5 Standard - Lite Compact skin as I mentioned that I would in my last post. You can find the changelog on the download page. Most of the changes were just to bring the skin up-to-date with the latest standard Opera skin and a couple tweaks to improve the appearance.

Also, I’ve been seeding the Opera torrent files for a few days now. I’m not using the them at all, because the torrent download page only offers Opera for Windows in English and International versions and then a Mac install. I’m not sure why the Linux/Unix installs are not seeded.

Anyhoo, I’ve been seeding these three torrents just to help make sure that people are getting good speeds and doing my part. ;)

Here is a screenshot of the stats so far:

That’s 908.5 MB’s that I’ve uploaded in nearly four days. I think I’ll leave it running for as long as possible and see if I can hit a Terabyte (TB), haha. :D

I might setup my own tracker and start seeding the Unix versions from here, so if you think that’s a good idea just let me know in the comments. If I can get a couple people thinking it’s a good idea to seed those then I’ll set it up. ;)

[Ask] [Bloglines] [del.icio.us] [Digg] [Facebook] [Feed Me Links] [Friendsite] [Google] [MySpace] [Reddit] [Rojo] [Shoutwire] [Slashdot] [StumbleUpon] [Technorati] [Windows Live] [Yahoo!] [Email]