タグ

2009年1月31日のブックマーク (8件)

  • Mobile Orchard – Information at your fingertips

    With Christmas just around the corner we have been looking for ideas for DIY decorations. Christmas is the perfect opportunity to practice your artistic skills. … Read the Rest The assault bike is, to some, the ultimate torture machine – gruelling assault bike workouts push your physical limits to the max. When pedalling flat out, it leaves even the fittest of users without breath – but that’s exa

    paella
    paella 2009/01/31
    Xcodeに関するTips。色々役立つ記事、知らないことも多くてためになった。
  • iPhone Development

    Friday, October 31, 2008 Elvis has Left the Building I was just informed that the indexer is done and the last piece of the book is at the printers. I think this has to count as being "officially" done, although it won't feel real until I have a copy in my hand. By the way, the final cover was a grapefruit, and it looks good and matches well with the other books in the series that will be coming o

    paella
    paella 2009/01/31
    iPhone開発のブログ(英語)。技術的な情報が多いしサンプルコードもキチンと載っているので良いサイトだとおもう。、
  • invisiblefulmoon.net - invisiblefulmoon リソースおよび情報

    paella
    paella 2009/01/31
    iptablesを使ってトラフィックを計測、グラフ化する一連の記事。普通は/proc/netを使いそうなものだけれど、面白いアイデア。
  • The LEGO Turing machine

    Andnissen writes – A TV Shop themed demonstration of a Turing Machine made in LEGO Mindstorms. It was made as part of a project at computer science at Aarhus University.

    The LEGO Turing machine
    paella
    paella 2009/01/31
    LEGOによるチューリングマシンの実装。すごい!
  • オレンジのブレークポイントに怒り | X(ペケ)code Programming

    ある日突然、Xcodeの青いブレークポイントがオレンジになり、ブレークがかからなくなった。特にデバッグに関する設定をいじった覚えはない。 あっちこっち設定を弄って1時間経って解決せず、イライラが爆発寸前でこれはヤバい。 とりあえず、検索してみると、 http://www.innerexception.com/2008/05/in-xcode-orange-breakpoint-means-gdb.html に信憑性の高い書き込みが。 このサイトの著者曰く、オレンジの正体は、GDBがシンボルを解決できないのでブレークポイントがヒットしないのだろうと。で、彼の解決策は、 Xcodeの「環境設定」から、「デバッグ」タブを選択し、「シンボルの遅延読み込み」をアンチェックするというもの。 とりあえず、オレンジのブレークポイントが発生しなくなったようなので、遅延読み込みが原因のXcodeのバグなんでし

    オレンジのブレークポイントに怒り | X(ペケ)code Programming
    paella
    paella 2009/01/31
    デバッグタブの「シンボルの遅延読み込み」のチェック有無でブレークポイントが効かなかったりするそうだ。メモメモ。
  • class-dump - Steve Nygard

    This is a command-line utility for examining the Objective-C runtime information stored in Mach-O files. It generates declarations for the classes, categories and protocols. This is the same information provided by using ‘otool -ov’, but presented as normal Objective-C declarations, so it is much more compact and readable. Why use class-dump? It’s a great tool for the curious. You can look at the

    paella
    paella 2009/01/31
    Objective-Cのバイナリからシンボルを引き出し、ヘッダファイル風に出力してくれるツール。リバースエンジニアリングのお供に。っていうか、自分が晒された時のために命名には気をつけないと。
  • iPhoneネイティブアプリ開発 - 環境

    XCodeにはターゲットという機能があり、1つのプロジェクトで複数のバイナリをビルドできます。 それのなにがうれしいかというと、 無料版、有料版を1つのプロジェクトで作成できる 特定のクラスをテストするバイナリを作成できる 同じ機能でもリソースが違うバイナリを作成できる というようなことができることです。 初期の段階では1プロジェクト内に1つのターゲットがあり、ビルド時にはそのターゲットが使われます。 特に指定する必要もないので、その存在に気がついていない方が多いでしょう。 ターゲットには内包する下記の3項目があり、それぞれに必要なリソースやビルド対象のソースを指定してあげることでターゲットごとにリソースを変えたりすることができるというわけです。 バンドルリソースをコピー ターゲットでビルドするアプリにバンドルするリソースを指定 ソースをコンパイル ターゲットでビルド対象とする

    paella
    paella 2009/01/31
    Xcodeでターゲットを活用する方法。VSにもある機能で、職業プログラマには常識のように使われているけれど、念のためブックマーク
  • iPhoneでflickrAPIを扱う方法 - iPhone開発日誌

    1.CのAPIライブラリを使う Objcetive-CはC言語を内包しているのでflickrcurlライブラリ(http://librdf.org/flickcurl/ )で間に合うかもしれない。 利点 おそらく楽 flickcurlオブジェクトを作ってflickrcurl_set_api_keyしてほげほげするだけでいいみたい。実際にiPhone上で試してはいないが。 欠点 基的に同期的にしか動かない 特に写真という比較的大きなデータを使うので何の工夫も無く使うと大変 2.Objective-CのAPIライブラリを使う Objective-CならObjective-Cのライブラリを使いたい。ObjectiveFlickr(http://lukhnos.org/objectiveflickr/ )を使えるかもしれない。 利点 Ruby対応らしい Cocoaっぽく慣れ親しんだdelegat

    iPhoneでflickrAPIを扱う方法 - iPhone開発日誌
    paella
    paella 2009/01/31
    flickrcurlライブラリ(http://librdf.org/flickcurl/ )というCライブラリがあるらしい