Launchy is a handy tool that can help you when you have messy folders and want to quickly find and open application, document or play the mp3 song. With it you can forgot about desktop, quicklaunch or start menu for starting applications. Iit’s free and makes your desktop life a lot easier. Try it!
General
desktop, keyboard, tip
http://ejohn.org/apps/learn/ - A really good advanced javascript tutorial.
If you want to be able to understand the code below, than this tutorial is the right thing.
1
2
3
4
5
6
7
8
9
10
| // The .bind method from Prototype.js
Function.prototype.bind = function(){
var fn = this,
args = Array.prototype.slice.call(arguments),
object = args.shift();
return function(){
return fn.apply(object,
args.concat(Array.prototype.slice.call(arguments)));
};
}; |
Javascript, Links
advanced, Javascript, tutorial