14,897 reputation
11231
bio website hjkl.me
location Guangzhou, China
age 24
visits member for 2 years
seen 2 hours ago
stats profile views 483

Simplicity is the ultimate sophistication. — Leonardo Da Vinci

٩(-̮̮̃-̃)۶ ٩(●̮̮̃•̃)۶ ٩(͡๏̯͡๏)۶ ٩(-̮̮̃•̃).

The basic problem is actually very complicated.

It's amazing that computers only use 0 and 1.

less is more

# echo auto-completion
_echo() { COMPREPLY=("'$(fortune -sn42 | tr -d \')'"); } && complete -F _echo echo

# generate lib dependency graph
$ for i in `find /lib -maxdepth 1 -type f -name '*.so*'`; do echo -e "\n${i##*/}"; readelf -d $i | awk '/NEEDED/{print $5}'; done | awk 'BEGIN{RS=""; print "digraph so {"}; {gsub(/-|\+|\[|\]|(\.\w*)/, ""); x=$1; $1=""; printf("\t%s -> {%s};\n", x, $0)}; END{print "}"}' | dot -Tpng | display -

# generate random shape
$ gnuplot -e 'set term dumb; set nobor; unset tics; p "<seq 10 | shuf" u 1:(rand(0)) w l not'

# generate #include dependency graph
$ awk '
> BEGIN{
>     print "digraph G {"
>     print "node[shape=box]"
> }
>
> /^#include/ && NF==2{
>     printf("\"%s\" -> \"%s\";\n", FILENAME, gensub(/[<>\"]/, "", "g", $2))
> }
>
> END{
>     print "}"
> }' *.{h,cpp} | dot -Tsvg | display

# 'A' in binary format
$ dc <<<16i2o$(printf A | xxd -p)p

# find all ascii-only files
$ grep -rLP '[^\x00-\x7f]' .

# calculate total reputation
$ curl -s 'http://stackexchange.com/users/11683/jon-skeet?tab=accounts' | sed -n 's/^.*account-number[^[:digit:]]*\([[:digit:],]*\)[^[:digit:]]*reputation.*$/\1/p' | tr -d ',' | awk '$0>=200{t+=$0};END{print t}'

# calculate total reputation(firefox bookmarklet)
javascript:alert($('.account-number').filter(function(){return%20$(this).next().text()=='reputation'}).map(function(){return%20parseInt($(this).text().replace(',',%20''))}).get().reduce(function(x,y){return%20x+y}))

.vimrc

hi! link Comment Ignore

set colorcolumn=80

hi ColorColumn ctermbg=3

com! CD :lcd %:h

com! DT :exe "normal i<C-R>=strftime('%Y-%m-%d %H:%M:%S')<CR><ESC>"

com! -nargs=1 -complete=help H :tab help <args>

com! SYN :echo synIDattr(synstack(line('.'), col('.'))[0], 'name')

others

( ₳ ฿ ₵ ¢ ₡ ₢ ₠ $ ₫ ৳ ₯ € ƒ ₣ ₲ ₴ ₭ ℳ ₥ ₦ ₧ ₱ ₰ £ ₹ ₨ ₪ ₸ ₮ ₩ ¥ ៛ )

http://chart.apis.google.com/chart?chs=450x200&cht=p3&chtt=Browser+Usage+on+Wikimedia&chl=IE%2834.2%%29|Firefox%2823.6%%29|Chrome%2820.6%%29|Safari%2811.2%%29|Opera%285.0%%29|Android%281.9%%29|Other%283.5%%29&chd=t:34.2,23.6,20.6,11.2,5.0,1.9,3.5

·中国程序员·


431
× 201
141
× 78
267
× 139
136
× 73
228
× 106
88
× 45
191
× 98
73
× 52
160
× 97
49
× 27
Stack Overflow Stack Overflow 14,897 rep 11231
Super User Super User 1,446 rep 211
Unix and Linux Unix and Linux 326 rep 7
Ask Ubuntu Ask Ubuntu 237 rep 17
Code Golf Code Golf 121 rep 4
all time   by type  
282 up 73 question
12 down 221 answer