タグ

2014年6月6日のブックマーク (3件)

  • Embeddable Common-Lisp

    View content from 2023-09, 2021-02, 2020-04, 2017-12, 2017-07, 2016-12, 2016-11, 2016-06, 2016-04, 2016-03, 2016-02, 2015-11, 2015-09, 2015-05, 2015-03, 2015-02, 2013-10, 2013-05, 2013-01, 2012-12, 2012-11, 2012-08, 2012-07, 2012-06, 2012-05, 2011-05, 2011-01, 2010-07, 2010-06, 2010-03, 2009-10, 2009-07, 2009-06, 2009-04, 2008-12, 2008-10, 2008-08, 2008-04, 2007-12, 2007-05, 2007-01, 2006-09, 2006

    shuzo_kino
    shuzo_kino 2014/06/06
    C実装のCommon Lisp環境。ELF形式に対応し、FFIによりC言語の埋め込みも可能であるため組み込み機器に対応可能(白目
  • HerokuのAPIデザイン

    Herokuが自ら実践しているAPIデザインガイドをGithubに公開した. “HTTP API Design Guide” このガイドは些細なデザイン上の議論を避けて,ビジネスロジックに集中すること目的としている.Heroku特有なものではなく,一般にも十分適用できる知見となっている. 最近は,モバイル向けにAPIをつくることも多いため,勉強もかねて抄訳した.なお内容は,HTTP+JSONのAPIについて基的な知識があることが前提となっている. 適切なステータスコードを返す それぞれのレスポンスは適切なHTTPステータスコード返すこと.例えば,“成功"を示すステータスコードは以下に従う. 200: GETやDELETE,PATCHリクエストが成功し,同時に処理が完了した場合 201: POSTリクエストが成功し,同時に処理が完了した場合 202: POSTやDELETE,PATCHリク

    shuzo_kino
    shuzo_kino 2014/06/06
    返すデータの構造以外にもHTTPステータスコード、URI自体の設計等々。気にする事は案外多い
  • Buildpacks | Heroku Dev Center

    Buildpacks are responsible for transforming deployed code into a slug, which can then be executed on a dyno. Buildpacks are composed of a set of scripts, and depending on the programming language, the scripts will retrieve dependencies, output generated assets or compiled code, and more. This output is assembled into a slug by the slug compiler. Heroku’s support for Ruby, Python, Java, Clojure, No

    Buildpacks | Heroku Dev Center
    shuzo_kino
    shuzo_kino 2014/06/06
    C言語やCommon Lisp、Go言語はともかく...Emacs(Elnode)やSphinxがあるのは一体どういう事なのだぜ?