[x] lol
[ ] k
| # Created by .ignore support plugin (hsz.mobi) | |
| ### Linux template | |
| *~ | |
| # KDE directory preferences | |
| .directory | |
| # Linux trash folder which might appear on any partition or disk | |
| .Trash-* | |
| ### JetBrains template |
| // Start with a webdriver instance: | |
| var | |
| baseUrl = 'localhost:8080', | |
| chai = require('chai'), | |
| assert = chai.assert, | |
| expect = chai.expect, | |
| should = chai.should(), | |
| chaiWebdriver = require('chai-webdriver'), | |
| request = require('supertest')(baseUrl), | |
| sw = require('selenium-webdriver'), |
| import sane from 'sane'; | |
| import { resolve as resolvePath } from 'path'; | |
| import { spawn, fork } from 'child_process'; | |
| import { existsSync as fileExists} from 'fs'; | |
| import { | |
| red, green, yellow, blue, | |
| magenta, cyan, white, gray | |
| } from 'chalk'; | |
| process.env.PATH += ':./node_modules/.bin'; |
| test |
| atom-text-editor { | |
| font-family: 'Fira Code'; | |
| font-style: normal; | |
| text-rendering: optimizeLegibility; | |
| } | |
| atom-text-editor::shadow { | |
| .string.quoted, | |
| .string.regexp { | |
| -webkit-font-feature-settings: "liga" off, "calt" off; | |
| } |
| const choo = require('choo'); | |
| const html = require('choo/html'); | |
| const marked = require('marked'); | |
| const app = choo(); | |
| app.model({ | |
| namespace: 'choodown', | |
| state: { | |
| text: '' | |
| }, |
| const choo = require('choo'); | |
| const html = require('choo/html'); | |
| const marked = require('marked'); | |
| const app = choo(); | |
| app.model({ | |
| namespace: 'choodown', | |
| state: { | |
| text: '' | |
| }, |
| const choo = require('choo'); | |
| const html = require('choo/html'); | |
| const marked = require('marked'); | |
| const app = choo(); | |
| app.model({ | |
| namespace: 'choodown', | |
| state: { | |
| text: '' | |
| }, |
| const choo = require('choo') | |
| const html = require('choo/html') | |
| const app = choo() | |
| app.model({ | |
| state: { title: 'Set the title' }, | |
| reducers: { | |
| update: (action, state) => ({ title: action.value }) | |
| } | |
| }) |