エンジニアリングにはほど遠い

iPhoneアプリとかサイトとかをつくっていくブログです。

2014-10-01から1ヶ月間の記事一覧

Clojureで同一キーでhash-mapのリストを作ろうとしたらハマった

下のはいける。 user=> (map #(hash-map :key %) [1 2 3]) ({:key 1} {:key 2} {:key 3}) でも、キーを引数化したら怒られる。 user=> (map #(hash-map %1 %2) :key [1 2 3]) IllegalArgumentException Don't know how to create ISeq from: clojure.lang.Ke…

CocoaPodsエラー diff: /../Podfile.lock: No such file or directory

iOS

以下のようなエラー。 diff: /../Podfile.lock: No such file or directory diff: /Manifest.lock: No such file or directory error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. Pods.d…