Skip to content

Instantly share code, notes, and snippets.

'use strict';
/**
* <CodeEditor
* data={that.state.data}
* stack={that.state.stack}
* hidden={(that.state.viewMode !== 'code')}
* onChange={that.handleEditorChange}/>
*/
'use strict';
/**
* <CodeMirror
* mode="text/css"
* value={that.state.customCss}
* onChange={that.handleEditorChange}/>
*/
// CodeMirror modules
@josephj
josephj / index.html
Created April 7, 2014 10:08
A Pen by josephj.
<div id="chess-board"></div>
{
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"jslint_happy": true,
"preserve_newlines": true,
"space_in_paren": false,
"keep_function_indentation": true
}
# A sample Gemfile
source "https://rubygems.org"
gem 'guard'
gem 'guard-livereload'
# A sample Gemfile
source "https://rubygems.org"
gem 'guard'
gem 'guard-livereload'
{
"directory" : "app/media/components"
}

Keybase proof

I hereby claim:

  • I am josephj on github.
  • I am josephj (https://keybase.io/josephj) on keybase.
  • I have a public key whose fingerprint is 077D D0C5 7213 FEBF 7FD9 DCFD 1E92 4FAD 21DD FFC6

To claim this, I am signing this object:

@josephj
josephj / .editorconfig
Last active August 29, 2015 14:05
For work
[*]
end_of_line = LF
charset = utf-8
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 120