JavaScript の Date の扱いが面倒という話。
個人的には
結局中身は UTC の unixtime ですよと言われれば、あーなるほどという感じ
かなと思うんだけど、一方で以下の部分がつらいなと思った。
JavaScript の Date の扱いが面倒という話。
個人的には
結局中身は UTC の unixtime ですよと言われれば、あーなるほどという感じ
かなと思うんだけど、一方で以下の部分がつらいなと思った。
#! /bin/sh | |
SRC=$1 | |
DEST=`basename ${SRC} .svg`.png | |
resvg --dpi 350 --zoom 2 --background '#ffffff' $SRC $DEST |
#! /bin/sh | |
asciidoctor -r asciidoctor-diagram --backend docbook --out-file - $1 | \ | |
pandoc --from docbook --to docx --reference-doc simple-doc.docx --output `basename $1 .adoc`.docx |
実際の「評価」になるとこの中のレベル2とレベル3の中がかなり細分化される。
レベル | 習得スキル(ツール寄り) | 習得スキル(業務寄り) | メモ |
---|
#! /usr/bin/awk -f | |
# | |
# Usage: | |
# markuplint -f simple --no-color 2>&1 | awk | |
# | |
BEGIN { | |
filename = "" | |
} |
Jekyll 側は lib/jekyll/site.rb で
def initialize(config)
# Source and destination may not be changed after the site has been created.
@source = File.expand_path(config["source"]).freeze
@dest = File.expand_path(config["destination"]).freeze
#! /bin/sh | |
target_version=2017 | |
main () { | |
config_file=$1 | |
if [ -z "$config_version" ]; then | |
cat <<EOD | |
eslint config file not specified |
module.exports = () => { | |
const plugins = [ | |
// Sass独自の _ スコア始まりのファイル名や glob 対応 | |
require('postcss-easy-import')({ | |
extensions: ['.css', '.scss'], | |
prefix: '_' | |
}), | |
// Sass独自の `//' コメントを削除 | |
require('postcss-strip-inline-comments'), | |
// Sassのコンパイル |
document.readyState: interactive | |
Stimulus.Controller: connect | |
document: DOMContentLoaded | |
document.readyState: complete | |
window: load | |
window: pageshow |