GREEN HARMONY 手記
2020年12月15日 プログラミング、アニメ、小説(メモ) [長年日記]
☆ プログラミング
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