This is a gist to use with the sync-settings atom package.
/* eslint-disable no-console,prefer-template */ | |
const chalk = require('chalk') | |
const devMiddleware = require('webpack-dev-middleware') | |
const express = require('express') | |
const hotMiddleware = require('webpack-hot-middleware') | |
const path = require('path') | |
const webpack = require('webpack') | |
function run() { | |
const PORT = process.env.PORT || 3000 |
/* eslint-disable no-console,prefer-template */ | |
const childProcess = require('child_process') | |
const findup = require('findup-sync') | |
const fs = require('fs') | |
const inquirer = require('inquirer') | |
const mkdirp = require('mkdirp').sync | |
const path = require('path') | |
function addToLocalRc(callback) { | |
const commonsDefault = path.join(__dirname, '..', '..', 'commons') |
'constant': | |
prefix: 'const' | |
body: """ | |
export const ${1:NAME} = '${2:app}/${3:reducer}/${1:NAME}' | |
""" | |
'action': | |
prefix: 'act' | |
body: """ | |
export const ${1:name} = createAction(${2:ACTION}) |
{ | |
"presets": ["es2015-loose", "react"], | |
"plugins": ["transform-class-properties", "transform-object-assign"] | |
} |
{ | |
"parser": "babel-eslint", | |
"plugins": ["react"], | |
"env": { | |
"node": true, | |
"es6": true | |
}, | |
"ecmaFeatures": { | |
"modules": true, | |
"jsx": true |
var args = require('../utils').args; | |
var debug = require('gulp-debug'); | |
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var notifier = require('node-notifier'); | |
var path = require('path'); | |
var plumber = require('gulp-plumber'); | |
var react = require('gulp-react'); | |
var production = (args.env === 'production'); |
After a month of intensive head down coding, I’m ready to reveal what I’ve really been working on all this time. Today I’m proud to announce that we’re moving Craftsy’s codebase to Python! We’ll be leveraging the innovative and exciting Django framework so that we can take advantage of its rich standard library, powerful ORM, and active open source community.
With Python’s whitespace sensitivity our developers will no longer have to labor over endless brackets and semicolons! Think of all the keystrokes saved! With the Django ORM, our developers can finally get away from knowing anything about SQL and focus on writing creative and clever comprehensions, decorators, and multi-inheritance mixins! With Python’s rich, dynamic monkey patching capabilities our developers can modify behavior at runtime whenever and wherever they want! Now you, too, can participated in heated, sometimes violent discussions about the Python 2 to 3 transition!
To help us make this compellin
I hereby claim:
- I am bkonkle on github.
- I am bkonkle (https://keybase.io/bkonkle) on keybase.
- I have a public key whose fingerprint is 5ECB 7AE5 E676 B756 0847 8155 92CA 09D7 374F DC00
To claim this, I am signing this object:
var React = require('react'); | |
/** | |
* A more usable wrapper around React's dangerouslySetInnerHTML. This should only be used for | |
* safe server-provided data that cannot be manipulated by an external user. This will render | |
* HTML, so tags inside will become actual DOM elements. | |
* | |
* Do not abuse this. | |
* | |
* (╯°□°)╯︵ ┻━┻ |