BBC documentary on the decay of Detroit:
I “grew up” with tcsh, but have lately switched to bash because it’s ubiquitous in the linux world (and I can’t be bothered trying to get tcsh installed on all the servers I use).
For almost a year I thought bash was without directory stack expansion: I’d read the directory stack section in various tutorials and docs, but all they mentioned were pushd, popd and dirs. I’d asked various long-time (albeit casual) bash users, and none knew about it. And my attempts at asking the search engines were not met with success (which was my inability to articulate what I wanted*, rather than the information not being available).
This frustrated me, almost to the point of my switching back to tcsh (or try another alternative).
…until I stumbled on the answer: tilde.
~N
The string that would be displayed by dirs +N
~+N
The string that would be displayed by dirs +N
~-N
The string that would be displayed by dirs -N
E.g.,
$ cd /etc/postgresql/8.3/
$ pushd ~/backup/
$ cp ~1/main/pg_hba.conf .
On the topic, I recommend the following aliases:
alias dirs=’dirs -v’
alias pd=’pushd’
alias po=’popd’
* I was searching for “bash counterpart to tcsh’s equals” or “complete directory stack items in bash” or “bash vs tcsh directory stack”
Manage multiple connections better in PuTTY
Yes, this is old, but I still haven’t watched it and don’t want to forget.
http://www.metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/
This guy does his evaluation based on his need to store key/value pairs, but it’s good to keep in mind for other uses too.
http://www.nytimes.com/2009/01/15/technology/personaltech/15basics.html?_r=1&pagewanted=1
…people who used two 20-inch monitors were 44 percent more productive at certain text-editing operations than people using a single 18-inch monitor…
http://startuplessonslearned.blogspot.com/2009/01/why-php-won.html
Why PHP has become the dominant language (and in fact, why some of its “shortcomings” are part of the reason it did)
http://wmd-editor.com/examples/splitscreen
This is great! I’ll need to incorporate it into the next cms/web-admin interface I work on.
Wonder if I can extend it with custom tags, such as embedding images from a custom asset manager (and still have them appear in preview)