アニメ、ドラマ、音楽、読書、プログラミングのメモ等 (随時加筆) Follow @fulcanelli448
(本ページはプロモーションが含まれています)
好きなアニメ: 響け!ユーフォニアム、ちはやふる
他
アニメ、ドラマ、音楽、読書、プログラミングのメモ等 (随時加筆) Follow @fulcanelli448
(本ページはプロモーションが含まれています)
好きなアニメ: 響け!ユーフォニアム、ちはやふる
他
訪問者数: 合計: 今日: 昨日:
Ruby 2.4から Fixnumが非推奨になっている。FixnumとBignumがIntegerに一本化される為
p 1.class == Fixnum warning: constant ::Fixnum is deprecated true
Python (Python2.7)
Ubuntu 20.04.1 LTS に pip をインストールし、 xlwtとxlrdをインストール
$ curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py $ sudo python get-pip.py $ sudo pip install xlrd $ sudo pip install xlwt
ruby-pg(1.2.0)でPGconnが使えなくなっている。 PGconnの箇所を修正したくない場合は PGconnというクラスを作成する。
class PGconn include PG def self.connect host,port,pgoptions,pgtty,db,user,pass PG.connect(host,port,a,b,db,user,pass) end end
プロを目指す人のためのRuby入門 言語仕様からテスト駆動開発・デバッグ技法まで Software Design plus