PuTTy Connection Manager: PuTTy with tabs. This is awesomely awesome. If I had to chose one feature a software was missing since mankind and software exist, I would have pointed this one. Now I can die happy :)
WordPress Snippet: add_meta_box()
To add custom content to the "Write" admin pages (where you write posts, pages or links), WordPress 2.5 introduces a new function set: add_meta_box() Simple plugin example : The catch here is to hook the function that add our "meta box" (here: add_some_box()) late enough so that the function it needs, add_meta_box(), has been defined. Hooking on 'admin_menu' is fine.…