2016년 12월 26일 월요일

CORSAIR STRAFE keyboard


[ CORSAIR STRAFE keyboard ]

2016년 10월 19일 수요일

Remove all files created before a certain date


http://unix.stackexchange.com/questions/102752/remove-all-files-created-before-a-certain-date

Using find is still the preferred way of deleting files. See http://mywiki.wooledge.org/UsingFind for more.

One way of doing this is to create a file with the time-stamp in it. e.g

$ touch -t 201311220000 /tmp/timestamp

Now delete the files GNUfind (assuming in the current directory) that match the time-stamp e.g:

$ find . -type f ! -newer /tmp/timestamp -delete

or non GNU find

$ find . -type f ! -newer /tmp/timestamp -exec rm {} \;

2016년 10월 18일 화요일

2016년 4월 18일 월요일

Dev Conferences

1. Google IO (every year in May, usually)
   https://events.google.com/io2016/
2. OSCON Oreilly Conferences (May and October)
   http://conferences.oreilly.com/oscon
3. Google Chrome Dev Summit
   https://developer.chrome.com/devsummit
4. Intel Developer Forum (Twice a year, Shenzhen and San Francisco)
   http://www.intel.com/idf
4. Big Android BBQ (Android and Apps)
   http://www.bigandroidbbq.com