I'll be fine

技術ブログ

2012-08-21から1日間の記事一覧

【Ruby on Rails】Double render errorのデバッグ

and return をつける render :index and return

【Ruby on Rails】railsでtwitter bootstrapを使う

Gemfileに以下を追記 gem 'twitter-bootstrap-rails'以下のコマンドを実行 $ bundle $ rails g bootstrap:install

【C言語 MPI】MPIでのデバッグ

コンパイル時に-ltmpe -lmpeオプションをつけるとMPI関数をトレースしてくれる。 mpicc -o mpi mpi.c -ltmpe -lmpecould not reference to pow could not reference to floor could not reference to ext などのエラーが出た場合は、-lmオプションを付けると…