This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//※要:graphviz | |
//$ dot -Tpng mmt_graph.dot -o mmt_graph.png | |
// #ref: https://twitter.com/tacmasi/status/1131576218304753664 | |
digraph mmt { | |
graph[label = "国債発行による政府調達時の金融資産・負債の発生, 実物資産(製品)の移動\n参考: L.Randall Wray(2015) 'Modern Money Theory, 2nd edition',pp.95-96. 作成:tacmasi", | |
rankdir = TB, | |
labelloc = b, | |
bgcolor = "#343434", | |
fontsize = 12, | |
fontcolor = white, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gawk -V | |
GNU Awk 4.1.4, API: 1.1 (GNU MPFR 3.1.5, GNU MP 6.1.2) | |
(略) | |
$ echo " | |
|すき家|茨城県|すき家 イオンモール下妻店| | |
|すき家|岡山県|すき家 53号岡山IC店| | |
|すき家|岡山県|すき家 イオンモール津山店| | |
|すき家|沖縄県|すき家 イオン那覇店| | |
|すき家|岩手県|すき家 イオンモール盛岡南店| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./gdpget.sh | |
(略) | |
nominalgdp.csvへ名目GDPデータを保存しました | |
$ head -3 nominalgdp.csv | |
time,国内総生産(支出側),民間最終消費支出,家計消費,持家帰属家賃を除く家計消費,民間住宅,民間企業設備,民間在庫変動,政府最終消費支出,公的固定資本形成,純輸出,輸出,輸入 | |
1994/1-3.,12796.3,6829.3,6215.9,5617.9,984.4,2312.5,-480.9,1358.4,1191.5,-113.7,714.8,1249.3 | |
4-6.,12571.1,6713.6,6447.8,5747.1,320.7,1545.6,820.6,2182.0,672.2,31.8,284.6,1981.7 | |
$ tail -3 nominalgdp.csv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat /etc/debian_version | |
9.3 | |
$ ls /sys/class/power_supply/ | |
AC BAT0 | |
$ cat /sys/class/power_supply/BAT0/ | |
alarm cycle_count status | |
capacity device/ subsystem/ | |
capacity_level manufacturer technology |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp | |
wget https://julialangnightlies-s3.julialang.org/bin/linux/x64/julia-latest-linux64.tar.gz | |
tar zxvf julia-latest-linux64.tar.gz | |
su | |
mv julia-cce56c8797 /opt/julia | |
ln -s /opt/julia/bin/julia /usr/local/bin/julia | |
exit | |
julia | |
_ |