http://www.martinfowler.com/bliki/FluentInterface.html 2005/12/20 数ヶ月前、Eric Evansと一緒にあるワークショップに参加した。 そこで彼がとあるインターフェースのスタイルについて語ったのだが、 我々はそれを「流れるようなインターフェース(fluent interface)」と名づけることにした。 一般的なスタイルではないが、もっと評価されるべき代物だ。 おそらく例を示したほうがいいだろうから、そうしてみることにする。 一番簡単な例は、EricのtimeAndMoneyライブラリだろう。 時間の間隔を作るには、通常は、以下のようにする。 TimePoint fiveOClock, sixOClock; ... TimeInterval meetingTime = new TimeInterval(fiveOClock,
Welcome to Hoogle Links Haskell.org Hackage GHC Manual Libraries Hoogle is a Haskell API search engine, which allows you to search the Haskell libraries on Stackage by either function name, or by approximate type signature. Example searches: map (a -> b) -> [a] -> [b] Ord a => [a] -> [a] Data.Set.insert +bytestring concat Enter your own search at the top of the page. The Hoogle manual contains mor
Table of ContentsI. SDL GuidePrefaceAbout SDLAbout SDLdocCredits1. The BasicsIntroductionInitializing SDL2. Graphics and VideoIntroduction to SDL VideoUsing OpenGL With SDL3. Input handlingHandling JoysticksHandling the Keyboard4. ExamplesIntroductionEvent ExamplesAudio ExamplesCDROM ExamplesTime ExamplesII. SDL Reference5. GeneralSDL_Init -- SDLを初期化します。SDL_InitSubSystem -- サブシステムを初期化します。SDL_QuitS
This pipe is designed to use eBay's RSS API to find items within a certain price range. Created by Ed Ho (show me) This pipe is designed to use eBay's RSS API to find items within a certain price range. Created by Ed Ho (show me) About Pipes Pipes is a powerful composition tool to aggregate, manipulate, and mashup content from around the web. Like Unix pipes, simple commands can be combined togeth
■ はじめに 前回の記事では Windows のイベントをフックする方法についてお話しましたが、特定の Windows API 呼び出しををフックするにはどうすればよいでしょう? それを考えるためには、まずどのような仕組みでプログラムが API を呼び出だしているのかを調べておく必要がありそうです。 ご存知の通り、Windows API は、所定の Windows プログラムから呼び出すことの可能なエクスポート関数として OS 環境の DLL(Dynamic Link Library) 群に格納されています。そして、あるプログラムの実行に必要な API を含む DLL は、実行ファイル起動時の初期化時にプロセスへリンクされ、その後は所定の API を透過的に呼び出すことができるようになります。 DLL をプロセスへリンクするには、実行形式をビルドする際に所定のインポートライブラリをリンクし
Lingr will be back. It was a sad event that we had to shut down Lingr, which was originally created by Danny Burkes, Chris Boone, Satoshi Nakagawa and me. But now, since Infoteria kindly handed over the ownership to me, Lingr has been reincarnated as my personal project, with a bunch of new features. It's totally rebuilt from the ground up, so it has become again under "beta" state, which means it
買った。良本。 UI部品の名前が分からなくて困る、ってことが多かったのですが色々載ってて参考になる。基本的に英語の表記も載ってるのですが、たまに日本語しか書いてない箇所があるので、原書も買っといた。 Hello, my name is Jonathan and I am trying to get hold of the person who created the Pure JavaScript QRcode generator as I wish to know how to use the script. I am a fourth Student at Aberdeen Univeristy studying Computing Science and hope to use this script for part of my project. Thank-you.
mixi ミュージック、すごくいいよね!!! もうずっと前から Last.fm をずっと使っていたので、正直なところ「いまさら mixi ミュージックなんて、どうなの?」とか思ってたりもしてたんだけど、まったくの思い違いでした! 聴いている曲を公開・集計する機能はもちろん、mixi ならではのコミュニティとの連携、好きな曲やアーティストによるユーザ同士の新たなつながりの発見、また、アーティスト情報をユーザが拡充できるようにしている点もステキ!!今後ますます盛り上がっていけば、それこそ日本のミュージックシーンに大きな影響をもたらし得るコミュニティになり得るのではないでしょうかっっ!!! さて、いかにもとってつけたかのような前置きはさっさと切り上げて、以下、本題。いや、mixi ミュージックの今後にはほんとに期待しているのだけどw もうかなりと前の話になるけど、mixi ミュージックのプレミア
NAME Net::Amazon - Framework for accessing amazon.com via REST SYNOPSIS use Net::Amazon; my $ua = Net::Amazon->new( associate_tag => 'YOUR_AMZN_ASSOCIATE_TAG', token => 'YOUR_AMZN_TOKEN', secret_key => 'YOUR_AMZN_SECRET_KEY'); # Get a request object my $response = $ua->search(asin => '0201360683'); if($response->is_success()) { print $response->as_string(), "\n"; } else { print "Error: ", $respons
Amazon ECS is now named Amazon Associates Web Service. See the announcement for more details. Amazon Associates Web Service (API Version: 2008-08-19) This release introduces the HomeImprovement search index in the DE and UK locales, new values for the ReviewSort ItemSearch parameter, the SizePerPearl variation dimension, new sort parameters in DE, three new operations and ten new response groups
May 16 2006 security blanket Back when del.icio.us launched APIs to let users work directly with their data, standard HTTP Auth seemed like a good idea. It’s quick and easy to work with, and since all the data was publicly available on the site itself it provided a level of security that was sufficient for the situation. Now that we have private data in the system, we want to take steps to make
ITmedia エンタープライズ:Google TalkのAPIとソースコードのリリース http://www.itmedia.co.jp/enterprise/articles/0601/18/news003.html https://sourceforge.net/projects/libjingle/からダウンロードできます。 Googleのコードを読むといえば、JavaScriptは読んだことがありますがC++のコードは初めて。 Mona以外で他人の書いたC++のコードを読むのはなかなかない機会なので読んでみようと思います。 ぱっと見た感じの感想を適当に列挙 拡張子は .ccなのね。 namespaceちゃんと使っている 初期化リストちゃんと使っている メンバー変数名は 後ろに_をつけている defineよりもconst使っている bytebuffer.ccとか、僕も作ったなぁとか
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く