アニメ、ドラマ、音楽、読書、プログラミングのメモ等 (随時加筆) 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
resolvconfパッケージをインストール
sudo apt-get install resolvconf
/etc/network/interfacesを編集
auto enp2s0 iface enp2s0 inet static address xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx gateway xxx.xxx.xxx.xxx dns-nameservers xxx.xxx.xxx.xxx
パスワード設定
psql -c "alter user postgres with password '********'"
pg_dumpallでダンプしたファイルからリストア
psql -f ダンプファイル postgres
version指定 install
$ gem install gem名 -v ヴァージョン
gem list
$ gem list
プロを目指す人のためのRuby入門 言語仕様からテスト駆動開発・デバッグ技法まで Software Design plus