There's an echo in my head

日々のメモ。

2013-07-01から1ヶ月間の記事一覧

選択されたタブの背景色を消す

デフォルトでは選択されたUITabBarのタブには青い背景色が付くけど、これはselectionIndicatorImageに透過画像を指定することで消すことができる。 aTabBar.selectionIndicatorImage = [UIImage imageNamed:@"transparent.png"];

UINavigationControllerDelegateのnavigationController:willShowViewController:animated:で直前に表示されていたUIViewControlleを参照する

Persistent rightBarButtonItem Property of UINavigationItemに書かれていることがやりたくてUINavigationControllerDelegateのnavigationController:willShowViewController:animated:を使おうとしたんだけど、navigationController.visibleViewController…

ImageMagickでLittle CMSを扱った処理を行うために

こんなエラーが出たとき、Little CMSのライブラリに対応できていない。 convert: delegate library support not built-in `/path/to/jpg' (LCMS) @ warning/profile.c/ProfileImage/565. 対応しているdelegateは次のコマンドで確認できる。 $ convert -list …

PostgreSQLで開発用の適当なユーザを作る

Rails+MySQLだとrootユーザが適当に指定されているのでそれを使ったりするけど、PostgreSQLだと初期状態でそういう適当なユーザはいない。なので自分で作る。 $ createuser -d -s root -dでデータベースを作る許可を、-sでsuperuser権限を付与する。

RDSの新規インスタンスを立ち上げた時に作れるDBはキャラクタセットがLatin1になる

MySQLの場合。

Alfred+Dashの設定

Alfredのworkflowの設定を毎度忘れるので画像でメモ*1。 Alfredにrb hogeとするとDashでruby:hogeと検索してくれる。 Inputs → Script Filter: コマンドは./dashAlfredWorkflow "ruby:{query}。 Actions → Open URL URLは dash://{query} dash-workflow-call…

ImageMagickでpdfをjpegに変換しようとしたらGhostscriptでpdfinflt.psが必要になった話

pdfをjpegに変換しようとしたらこんなエラーが出た: $ convert -limit memory 512 -density 600 -quality 80 -resize 800x /path/to/001.pdf /path/to/001.jpg **** Error reading a content stream. The page may be incomplete. **** Error reading a cont…

このブログに出てくるコードスニペッツは、引用あるいは断りがない限りMITライセンスです。