- USBメモリ
- Windows用 VirtualBox インストーラ
- Ubuntu 14.04 vhdファイル (.zipなら1.3GB程度。展開するとFAT16でフォーマットしたUSBメモリに入らない)
- Atom
- Ubuntu用
- OS X用
- WiMAXなどのWifiルータ
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
self.addEventListener('install', (event) => { | |
// install時に行われる処理… | |
}); | |
self.addEventListener('fetch', (event) => { | |
// fetch時に行われる処理… | |
}); |
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
if ('serviceWorker' in navigator) { | |
navigator.serviceWorker.register('/sw.js') | |
.then(function(registration) { | |
// 登録成功時の処理 | |
}).catch(function(err) { | |
// 登録失敗時の処理 | |
}); | |
} |
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
{ | |
"name": "pixiv chatstory", | |
"short_name": "chatstory", | |
"start_url": ".", | |
"display": "standalone", | |
"orientation": "portrait", | |
"icons": [{ | |
"src": "assets/imgs/logo.png", | |
"sizes": "512x512", | |
"type": "image/png" |
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
<link rel="manifest" href="/manifest.json"> |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "alt+cmd+p", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "alt+cmd+[", | |
"command": "workbench.action.terminal.focusNextPane", |