As I’m still making changes to the design of my blog, I wanted a plugin to retrieve and cache my tweets and let me customize the widget without digging into their files. Normally, I create my own widgets for this sort of thing since most widgets you find for WordPress are either coded poorly or [...]
In *nix, you can make multi-lined commands using the backslash (\), like this: $ rm -rf \ > file1.txt \ > file2.txt \ > file3.txt But, that doesn’t work in Windows. Thankfully, someone has already asked the question over at Stack Overflow. In Windows, the caret (^) is used in the same fashion: > del [...]