• Type exercise for go language

    Tags:

  • 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.

    Tags:

  • 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도 참고할만 합니다.

    Tags:

  • Coders at Work

    Joel on the Software의 논란의 중심에 있는 글 Duct tape programmer를 읽으면서 읽어봐야겠군이라고 생각만하고 있다가, Coding Horror 에서 극찬의 글을 보고 결국은 사지 않을 수 없었던 책, Coders at Work. 프로그래밍 팁에는 이제 서서히 질렸고, 새로이 나타나는 프레임워크도 심드렁하고, programming.reddit.com에는 온통 헤스켈이나 Erlang, D 아니면 상위에 랭크되지 않는다는 현실로 인해 슬프고, 괜찮은 명품 블로그들이 모두…

    Tags:

  • SQLAlchemy: Python ORM

    http://www.sqlalchemy.org/ SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. It provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. reddit도 이걸로 돌린다는군요.

    Tags:

  • Sprite

    http://spriteme.org/ Background images make pages look good, but also make them slower. Each background image is an extra HTTP request. There’s a fix: combine background images into a CSS sprite. But creating sprites is hard, requiring arcane knowledge and lots of trial and error. SpriteMe removes the hassles with the click of a button.

    Tags:

  • Introduction to Information Retrieval

    Introduction to Information Retrieval This is the companion website for the following book. Christopher D. Manning, Prabhakar Raghavan and Hinrich Schütze, Introduction to Information Retrieval, Cambridge University Press. 2008. You can order this book at CUP, at your local bookstore or on the internet. The best search term to use is the ISBN: 0521865719. The…

    Tags:

  • Academic Earth

    Academic Earth Free academic video courses from leading universities.

    Tags:

  • Statistical data mining tutorial

    Statistical Data Mining Tutorials – Tutorial Slides by Andrew Moore

    Tags:

  • Javascript lazyload technique

    Gmail for Mobile HTML5 Series: Reducing Startup Latency Javascript lazy load 를 하는 세가지 테크닉. 1. DOM Tree에 script element를 on the fly로 만든다. 2. XHR(XmlHttpRequest)의 응답을 eval() 한다. 3. 모바일 기기에서는 bandwidth는 좋지만 roundtrip 시간은 길다. 따라서 자바스크립트 파일을 하나로 모으고 스크립트를 전부 커멘트 처리한다. 자바스크립트 파일을 가져온다음 on the fly로 필요한 코드 부분의…

    Tags: