##Power of g in pentadactyl##
Pentadactyl is vim inspired interface to firefox and similar to vimperator.
like vim (:g) , g is a power key in pentadactyl
some examples:
| command | ... |
|---|
| # Chef-Zero | |
| # | |
| # VERSION 0.0.1 | |
| FROM base | |
| MAINTAINER Paul Czarkowski "[email protected]" | |
| RUN apt-get update | |
| RUN apt-get install -y ruby1.9.1-dev build-essential |
| time python -c "from os import listdir; print len(listdir('some dir'))" |
| var collectionNames = db.getCollectionNames(); | |
| for(var i = 0, len = collectionNames.length; i < len ; i++){ | |
| var collectionName = collectionNames[i]; | |
| if(collectionName.indexOf('foo') == 0){ | |
| db[collectionName].drop() | |
| } | |
| } |
| RewriteEngine On | |
| RewriteCond %{REMOTE_ADDR} !^100\.212\.123\.XX$ | |
| RewriteCond %{REMOTE_ADDR} !^XX\.XX\.XXX\.XX$ | |
| RewriteRule ^/foo - [F] | |
| RewriteRule ^/foo http://example.com/foo?bar=qux [P,QSA] |
| io.configure(function () { | |
| io.set("transports", ["xhr-polling"]); | |
| io.set("polling duration", 10); | |
| }); |
##Power of g in pentadactyl##
Pentadactyl is vim inspired interface to firefox and similar to vimperator.
like vim (:g) , g is a power key in pentadactyl
some examples:
| command | ... |
|---|
| redis-cli keys "*" | xargs -I {} redis-cli del "{}" |
| netstat -ant | awk '{print $6}' | sort | uniq -c |