- mitsuruog
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
/** @test {MyClass} */ | |
describe('MyClass', () => { | |
/** @test {MyClass#foo} */ | |
describe('MyClass#foo', () => { | |
it('should be ...'); | |
}); | |
/** @test {MyClass#bar} */ | |
describe('MyClass#bar', () => { | |
it('should be ...'); |
前提: 完成していて、比較的支持を集めていて、JavaScriptを中心にした書籍 (DOM APIよりは言語を中心とした内容)
追記: JavaScriptの入門書 #jsprimerを書いている
最初からES2015で学ぶことを前提にした初心者〜中級者向けのJavaScript本がなかったので書いてる。 ES2015でJavaScriptという言語のコア部分は大きく変わったので、それを前提とした内容にする予定。
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
#!/bin/bash | |
# ------------------------------------------------------------------ | |
# Deploy chef-repo.tar.gz of kirishima to S3 bucket | |
# ------------------------------------------------------------------ | |
VERSION=1.0 | |
SUBJECT=kiri-deploy-to-s3 | |
USAGE="Usage: deploy env" | |
# --- Options processing ------------------------------------------- |
日時: | 2017-07-04 |
---|---|
作: | @voluntas |
バージョン: | 1.0.2 |
url: | https://voluntas.github.io/ |
時間: | 30 分 |
祭っぽいので私も書いてみることにした!お手軽に gist で。
コンテキスト:https://togetter.com/li/1331865
と書き出したはいいが、私が受けたときは本も情報もあまりなく、かつ競プロ的なものの存在も知らなかったので、とりあえず家にあったアルゴリズムの本を2回くらい読み直した。そして受かった。最初っから情報があまりない方のパターンで申し訳ない 😄
OlderNewer