Tag: software
-
Google Browser Size
http://googlecode.blogspot.com/2009/12/introducing-google-browser-size.html Data on the browser size and the reach rate. Google also provides with a tool that’ll test your website. It’a amazing that this much precious information is shared with the general public.
-
Javascript lecture from Douglas Crockford
http://video.yahoo.com/watch/111593/1710507 Lecture from the guru. I’m going to watch this.
-
미 정찰기 해킹
“미 최첨단 무인 정찰기, 반군에 해킹”, KBS. KBS에서는 언급되지 않았는데 CNN에서는 고속의 영상 전송을 위해 암호화 하지 않았던 것으로 설명함. 암호화를 하고 싶었지만 데이터를 사방에 전송하기에는 암호화가 충분히 빠르지 않았던 것.
-
Softdelete in database
Building Scalable Databases: Perspectives on the War on Soft Deletes A가 a를 가지고 있었다는 사실을 알고 있었는데, 더이상 A가 a를 갖고 있지 않을 경우 (A,a)를 DB에서 지워버리는 경우를 hard delete, 데이터가 삭제되었다고 (A,a,isDeleted=True)표시하는 경우를 soft delete로 구분하고 그 장단점을 비교한 글. 출발점은 삭제했다고 그 데이터가 있었다는 사실까지 없어지면 불편하다는 것이고, 그래서 soft delete로 isDeleted=True로 해놓겠다는…
-
Object, Closure, Module practice in Javascript
Based on the code in ‘Javascript: The Good Parts’. Some doesn’t like the lambda-like structure, and it’s not still clear to me which is better between object oriented pattern like style(prototype) or module like style(the one at the bottom of code snippet below). It’s good that there is a great flexibility, but it’s not good…
-
Functions in Javascript
prototype and apply looks very interesting. It feels like some lego blocks that I can assemble with great flexibility.
-
Type exercise for go language
-
Enumerating properties of an Object in Javascript
output: stooge: [object Object] first_name: Jerome status: novice Based on the code of Chap 3. Objects in Javascript: The Good Parts.
-
Javascript: The Good Parts Techtalk
Yahoo의 Javascript architect인 Douglas Crockford의 techtalk입니다. Javascript lint: http://jslint.com Book: Javascripts: The Good Parts 최근 open source로 발표된 Google Closure도 참고할만 합니다.
-
Coders at Work
Joel on the Software의 논란의 중심에 있는 글 Duct tape programmer를 읽으면서 읽어봐야겠군이라고 생각만하고 있다가, Coding Horror 에서 극찬의 글을 보고 결국은 사지 않을 수 없었던 책, Coders at Work. 프로그래밍 팁에는 이제 서서히 질렸고, 새로이 나타나는 프레임워크도 심드렁하고, programming.reddit.com에는 온통 헤스켈이나 Erlang, D 아니면 상위에 랭크되지 않는다는 현실로 인해 슬프고, 괜찮은 명품 블로그들이 모두…