Sunday, January 31, 2010


This is a small AutoHotKey script that opens a command prompt window at the same location as the folder you are browsing in Windows Explore. 

[BONUS: Open the explorer with current directory from command prompt]

Simply hit the Ctrl+Alt+H shortcut key sequence while the explorer or the command prompt is in focus.
Here is the code to register the shortcut:

; Opens a command prompt with the current folder 
; when you press Ctrl+Alt+H in Explorer
; or the command prompt

^!h::
if WinActive("ahk_class CabinetWClass") 
or WinActive("ahk_class ExploreWClass")
{
 ClipSaved := ClipboardAll
 Send !d
 Sleep 10
 Send ^c
 Run, cmd /K "cd /D `"%clipboard%`""
 Clipboard := ClipSaved
 ClipSaved =
 return
}
else if WinActive("ahk_class ConsoleWindowClass") 
{
 Send ^c 
 Sleep 10
 Send explorer .{Enter}
 Sleep 10
 return
}
exit





Inspired by this, with bug fixes.

1 comment

Tuesday, January 26, 2010

Has it ever annoyed you when you drop a music folder into iTunes and all your files get scattered instead of becoming a single album. If yes, read ahead..

iTunes is incapable of handling music files that are not tagged properly. This annoyed me to the extend that I wrote this small tool that converts your music folder into an album for iTunes.

iFoAl - iTunes Folder to Album Convertor

Here is a screencast (less than a minute) that shows how it works:



Download iFoAl (~1 MB):








PS: iFoAl might crash if you don't have Microsoft .NET Framework installed. Download it here.

9 comments

Monday, January 26, 2009

Today I am going to talk about an incredibly useful Firefox plugin: Read It Later

Ever stumbled over a site and thought - “Ahh.. this seems to be interesting, but maybe I'll read it sometime later”. The simplest thing to do then would be to just go ahead and bookmark it. A downside that I see to this approach is that, you might be working on multiple computers and the next thing you know you don’t even remember which browser it was. (People handling more than one computer at a time will get me).

Read It Later is a wonderful plugin and not only bookmarks your favourite pages but also can be easily synced on multiple computers.

Read It Later allows you to save pages of interest to read later. It eliminates cluttering of bookmarks with sites that are merely of a one-time interest.

The main features of the plugin:

Save multiple links on a page by turning on save mode (alt + M)

Sort your reading list by date, site, tags, etc

If you want to save the link for later reference, you have an option to save it to any of the popular bookmarking site.

You can also save all opened tabs in Firefox in a single click.

You can read the list from any computer using the RSS feed or viewing it at http://readitlaterlist.com

If all that was not enough, you can even save all these pages for offline viewing in a single click.

This video sums up pretty much everything:

Try out Read it Later -

 http://tinyurl.com/6fe87g

2 comments

My Logs Feeds rss About Me

Shashi Kant Sharma
I'm a technology enthusiast and love to read and learn about tech news, startups, gadgets, new releases, etc

Subscribe feeds via e-mail
Subscribe in your preferred RSS reader

Link List

Labels