- はじめに的なやつ https://developers.google.com/web/fundamentals/primers/service-workers/?hl=ja
- Mozillaのドキュメント https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API
- 関連機能もここから辿れる
This file contains 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
#!/bin/zsh | |
case "$1" in | |
test) | |
TYPE=$1 | |
;; | |
clean) | |
TYPE=$1 | |
;; | |
*) |
This file contains 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
#!/usr/bin/env perl | |
use sanity 'sane'; | |
my $ok = { | |
var1 => 'foo', | |
var2 => 'bar', | |
var3 => 'baz', | |
items => [ | |
{ subvar1 => 'foo' , subvar2 => 'bar' , } , |
This file contains 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
package bla | |
import ( | |
"io" | |
"html/template" | |
"path/filepath" | |
"strings" | |
) | |
// folder structure |
更新: | 2021-05-23 |
---|---|
作者: | @voluntas |
バージョン: | 2021.1 |
URL: | https://voluntas.github.io/ |