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
/* スコープを与える */ | |
var SlackDelFileApp = {} | |
/* SLACKのTOKENを読み込み */ | |
SlackDelFileApp.SLACK_ACCESS_TOKEN = PropertiesService.getScriptProperties().getProperty('SLACK_ACCESS_TOKEN');// slackで発行したTOKENをGASの環境変数に設定 | |
/* soundTricker/SlackApp を使うよりurlからAPI叩いたほうが早いらしいので */ | |
SlackDelFileApp.execute = function(method, params){ | |
if (params === undefined ) params = {'token' : SlackDelFileApp.SLACK_ACCESS_TOKEN}; | |
var options = { |
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
help: | |
@cat Makefile | |
NAME="pytorch" | |
SRC?="$(shell pwd)/:/app" #src directory | |
DOCKER=GPU=$(GPU) nvidia-docker | |
bash: | |
$(DOCKER) run -it -v $(SRC) --name $(NAME) -p 8080:8080 anibali/pytorch:cuda-9.0 bash |
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
/* | |
Edit this CSS file to change styles of the editor. | |
If you need to revert it back, use the "Reset" button. | |
*/ | |
/** | |
* Text Cell | |
*/ | |
.text-cell { |
OlderNewer