2012-07-01から1ヶ月間の記事一覧
ちょっとわかりにくいですが、httpでの接続時に yamitzky.com ├── index.html ├── sub_repo1のpublicディレクトリ │ ├── images │ └── index.html └── sub_repo2のpublicディレクトリ ├── images ├── index.html └── stylesheets └── site.cssみたいな感じに…
https://github.com/yamitzky/render-qrcodeTo use the plugin, first, you have to load javascript like the following; <script type="text/javascript" src="render.qrcode.min.js"></script> then, you have to make an element a QRcode appended to. <div id="qrcode-element"></div> finally, call qrcode() functi…
作ったんじゃなくてパクったんじゃないかな、っていうね! https://github.com/yamitzky/render-qrcode使い方は簡単で、 <script type="text/javascript" src="render.qrcode.min.js"></script> とかやってプラグインを読み込みます。書き込む要素を <div id="qrcode-element"></div> とかやって作っておきます。 document.getElementById('qrcode-element').qrco…
crontab は、事前に設定されたShellで、設定されたPathを通した上で、実行されます。 つまり、現在使っているShellや、SSHで接続しているShell、もしくは.bash_profileに書かれているようなPathは、全無視されます。上手くいかないときは/etc/crontab を編集…
Rubyだけでなく、他の言語でも(多分)使えるやりかたです。 (他にCで試してみましたがオッケーでした。pythonだとprint文で上手く行かないので、他の関数を使うといけるかも?)単純に、文字列中に"\e[数字m"と書いてあげるとオッケーです。数字は color_dict …
http://d.hatena.ne.jp/nantekkotai/20110909/1315582529のようにコンパイルオプションで対応するのでもいいのですが、 Railsやmiddlemanなど、自動でコンパイルするのでコンパイルオプションを与えられない時のために。クラス定義をしているファイルの最後…
@model.save :validate => false でオッケーですよhttp://api.rubyonrails.org/classes/ActiveRecord/Validations.html