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
# osx - https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails |
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 | |
7.6 | |
$ sudo apt-get update | |
$ sudo apt-get upgrade | |
# install dependencies | |
$ sudo apt-get install libssl-dev libavahi-client-dev libasound2-dev | |
# clone source |
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
jupyter==1.0.0 | |
pandas==0.21.1 | |
seaborn==0.8.1 | |
lxml==4.1.1 | |
html5lib==1.0.1 | |
beautifulsoup4==4.6.0 | |
requests==2.18.4 |
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
/** | |
* 任意のシートにkey-valueを保存する | |
*/ | |
class Variables{ | |
constructor (sheet_name="variables") { | |
let app = SpreadsheetApp.getActiveSpreadsheet(); | |
this.sheet = app.getSheetByName(sheet_name); | |
if (!this.sheet) { | |
//シートが存在しない場合は末尾に追加 | |
app.insertSheet(sheet_name, app.getSheets().length); |
OlderNewer