- Agree on block types
- Agree on minimum required blocks for first launch
- Create ticket for creating theme pages (feature flagged)
- Create tickets for creating each block type
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
Usage: $0 [path] [--hard] [--switch] [--filter TERM] | |
where [path] is a file of translations, e.g. | |
NOUN dog = hund | |
NOUN cat = kat | |
NOUN rabbit = kanin | |
NOUN snake = slange | |
NOUN horse = hest | |
alternatively translations can be piped in, e.g. |
I hereby claim:
- I am zuren on github.
- I am zuren (https://keybase.io/zuren) on keybase.
- I have a public key whose fingerprint is 95BC F9E6 43B0 FF7D EFDA 67FB 67CC 30A4 C697 DA2E
To claim this, I am signing this object:
This is not the best most proper way to use browserify and all, but works for a simple introduction.
- Install node/npm
$ npm init
- Creates apackage.json
file which is an all encompassing manifest. Runningnpm install
will install everything in it, equivalent tobundle install
.$ npm install --save-dev browserify watchify babelify
- Installing browserify exposes a CLI which you can use to package up your client. Watchify has exactly the same interface, but rebundles when files are changed. Passing--save
or--save-dev
tonpm install
will also add it todependencies
ordevDependecies
respectively in yourpackage.json
.babelify
is a browserify transform which will transpile es6 (babel) code to es5.$ npm install --save thing-from-npm
- Install a module from NPM. Eg react, three... Run this every time you install a dependency.mkdir app/ dist/
- Add the following to your
package.json
. Scripts can be run withnpm run {task-name}
. Eg `npm
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
makeSearchCommand({ | |
name: "'Ibles", | |
icon: "http://www.instructables.com/favicon.ico", | |
url: "http://www.instructables.com/tag/?sort=none&q={QUERY}&limit%3Atype%3Aid=on", | |
description: "Searches Instructables.com" | |
}); |