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

·中国程序员·
|
|
Stack Overflow | 14,897 rep | 11231 |
|
|
Super User | 1,446 rep | 211 |
|
|
Unix and Linux | 326 rep | 7 |
|
|
Ask Ubuntu | 237 rep | 17 |
|
|
Code Golf | 121 rep | 4 |
| Yearling × 2 | Excavator |
| Fanatic | Nice Answer × 5 |
| Good Answer × 2 | Popular Question × 2 |
| bash | sed |
| awk | python |
This user has no active bounties
| all time | by type | ||||
|---|---|---|---|---|---|
| 282 | up | 73 | question | ||
| 12 | down | 221 | answer | ||