https://news.ycombinator.com/item?id=8546617
-
- ビットコインのレートを表示
-
- カウントダウン用共有Gif画像ジェネレータ
| # Require any additional compass plugins here. | |
| # Set this to the root of your project when deployed: | |
| http_path = "/" | |
| css_dir = "css" | |
| sass_dir = "sass" | |
| images_dir = "img" | |
| javascripts_dir = "js" | |
| # You can select your preferred output style here (can be overridden via the command line): |
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| md2html: | |
| multiple_files: | |
| options: | |
| layout: 'layout/layout.html' | |
| files: [ | |
| expand: true | |
| src: ['*.md'] | |
| dest: '../' |
| url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==) |
https://news.ycombinator.com/item?id=8546617
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
Research
Plan
| # EditorConfig is awesome: http://EditorConfig.org | |
| root = true | |
| # root = false | |
| # ================= | |
| # --- TARGET | |
| [*.{extention}] | |
| # --- INDENT |
| import test from 'tape'; | |
| // For each unit test you write, | |
| // answer these questions: | |
| test('What component aspect are you testing?', assert => { | |
| const actual = 'What is the actual output?'; | |
| const expected = 'What is the expected output?'; | |
| assert.equal(actual, expected, | |
| 'What should the feature do?'); |