Wednesday, February 23, 2011

Dexpot, undoubtedly the best virtual desktop solution for Windows...

When first introduced to Linux, things that excited me most are virtual desktop and semi transparent terminal. However due to my lack of knowledge on Linux makes me a person who wish that one day these features will be available on Windows.

Fast forward nine years later. Things that makes me eager to learn Linux again was virtual desktop (this time with cube via compositing window manager) and an alternative solution to avoid virus. Now I'm a Linux user at home. For work however, I'm still bond to Windows.

Used to worked in a company that provide me desktop with dual 19" widescreen monitor makes me a happy camper for Windows. Unfortunately, at my current working place I've been given a laptop with 13.3" screen. Struggling for months adjusting my eyes to the small desktop working area.

Desperately looking for virtual desktop solution for Windows (freeware). Came across to VirtualWin and mDesktop. A powerful tools and sufficient enough to do the job. However after using it for couple of months, it felt like I'm back in 90s where 4 boxes act as a deskstop switcher.

I want something similar to modern Linux. Something with animation. Google for best virtual desktop managers and found Dexpot. Finally, a dream come true (though not officially came from Microsoft, but who cares...). Virtual desktop manager for Windows with cube and wall effect as plugins. Not as perfect as Compiz on Linux but I'm happy with it on Windows.

Desktop Cube


SevenDex


Desktop Preview


Plugins and Extras settings


The sheer number of options can be a little overwhelming, but they are all neatly organized in a way that best befits this tool. You can setup shortcuts (but the defaults of Alt-1, Alt-2, etc. are about as fast and convenient as shortcuts get).

Information
Current version: 1.5.8 Build 1434
Download size: 3.89 MB
Release date: December 13th 2010
Platform: Windows 2000/XP/2003 and Vista/2008/7 (incl. x64)

Disable Touchpad while typing in Windows 7...

For Ubuntu / Linux Mint there's a built-in function to disable touchpad while typing. Unfortunately this feature is unavailable in Windows 7, after did some googling I've found one great and handy tool called TouchFreeze. Problem solved :)

Tuesday, February 22, 2011

Visual Studio 2005 compatibility issue with Windows 7...

After installing VS 2005 on Windows 7, I got this error message when try to run it for the first time

"Visual Studio 2005 SP1 requires an update for Windows Vista"

Solution:
Download SP1 Update here: http://go.microsoft.com/?linkid=6366078 and run the installer in administrator mode.

Tip:
If you are trying to debug web projects, you need to make sure that you go to the Add/Remove Windows Components in Control Panel and install the IIS6 Compatibility with IIS7 option, otherwise you won’t have much luck.

Note:
Tested on Windows 7 Professional 32bit

Sunday, February 20, 2011

How to rip an mp3 audio from YouTube video...

Packages required, ffmpeg and libavcodec-extra-52
$ sudo apt-get install ffmpeg libavcodec-extra-52
The easiest way is to run the command below. Note that -ab is an option for audio bitrate
$ ffmpeg -i uverworld.flv -ab 192k uverworld.mp3
If you prefer GUI, you can use VLC. Below is a step by step screenshots

Click save item in playlist


Select mp3 profile and click Start button


If you want to change audio bitrate, click edit profile button, set bitrate, Save changes and Start the process


Note:
Tested on Linux Mint 10 64-bit.

Thursday, February 17, 2011

How to change Windows 7 logon background image (no regedit)...

Custom background


1) Go to Start menu and in the search box type gpedit.msc, then press enter

2) Once the window with title "Local Group Policy Editor" appear, on the right side panel, click Computer Configuration -> Administrative Templates -> System -> Logon

3) Double click on "Always use custom logon background" and set it to Enabled, then click OK button

4) Now open Windows Explorer, go to C:\Windows\System32\oobe

5) Create new folder and rename it as Info

6) Create a subfolder for Info and rename it as backgrounds. You should have a structure like below
C:\Windows\System32\oobe\Info\backgrounds

7) Copy your favorite image file to this folder and rename it as backgroundDefault. Image must be in JPG format and the size should be less than 256 KB.

8) Restart your machine

Note:
Tested on Windows 7 Professional 64bit and Windows 7 Ultimate 32bit with 1920x1080 dimension image.

Monday, February 14, 2011

How to download YouTube videos on Linux...

Package required, youtube-dl
    $ sudo apt-get install youtube-dl
Command to download
    $ youtube-dl [options] video_url
If you're getting an error as "ERROR: unable to download video (format may not be available)", get latest version of youtube-dl from github.

Set execute permission
    $ chmod +x youtube-dl-latest
Execute the latest version script to download video
    $ ./youtube-dl-latest [options] video_url
Note:
Tested on Linux Mint 10 64-bit.

Update (13/03/2011)
Found out an easy way. Install video download helper addon for Mozilla Firefox. Works perfectly on both Linux and Windows.

Saturday, February 12, 2011

*NSync Linux and Robocop Windows...

A command line to copy a folder while excluding some of it subfolders
rsync (brain mapping to nsync) in Linux
    rsync -IrW --stats --exclude=.svn /path/to/project/dir/ //testsrv/whatever
robocopy (brain mapping to robocop) in Windows
    robocopy \path\to\project\dir \\testsrv\whatever /MIR /XD .svn
copied from Rizal's blog post.