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

ソーシャルボタン

ツイートボタン http://twitter.com/goodies/tweetbutton likeボタン http://developers.facebook.com/docs/reference/plugins/like/ google +1 http://www.google.com/webmasters/+1/button/ mixiチェック http://developer.mixi.co.jp/connect/mixi_plugin…

OGP メタタグ

The Open Graph protocolフェイスブック、ミクシィ、グリーで使われている OGP (Open Graph Protocol) とは何か - IT戦記 Google+1 http://stackoverflow.com/questions/6536213/are-there-tags-to-specify-the-google-1-story-format-in-google-like-og-met…

postgres トリガ

42.9. トリガプロシージャポストグレスSQLメモ(Hishidama's PostgreSQL SQL Memo)トリガ一覧 select * from pg_trigger;トリガーに割り当てられている関数の名称は、以下の様なSQLで知ることができる。 select tgname,proname from pg_trigger t, pg_proc f …

postgres 名前

* _pkey primary key 主キー制約 * _seq sequence シーケンス _idx index インデックス _ukey unique key UNIQUE 制約 _gin gin index GINインデックス

後方参照が不要なグループ化「(?: )」 - 後方参照 - Ruby正規表現の使い方 /color is (?:RED|red)/

Opera 11.50

osx

ブックマークがバックグラウンドタブで開く。バグ It is a known bug that will be addressed in the next release. The only workaround available is using the context-menus to open links.Home | Opera forums 過去バージョンのダウンロード Download O…

文字列の出現回数を調べる

文字列の出現回数を調べる - パンプキンスパイスラテ select ( select (length(カラム名) - length(replace(カラム名, 'キーワード', ''))) / len('キーワード') ) as CNT from テーブル名