I hereby claim:
- I am cspanring on github.
- I am cspanring (https://keybase.io/cspanring) on keybase.
- I have a public key whose fingerprint is CC71 87E3 0D9F C4FA 7307 70F0 4FF8 DBE9 11D2 B681
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
truthArray: ['truth'], | |
truth: null, | |
showTruth: Ember.computed.bool('truth') | |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
actions: { | |
openUrl() { | |
window.location.assign('http://google.com'); | |
} | |
} |
class Python < Formula | |
desc "Interpreted, interactive, object-oriented programming language" | |
homepage "https://www.python.org" | |
head "https://hg.python.org/cpython", :using => :hg, :branch => "2.7" | |
url "https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz" | |
sha256 "eda8ce6eec03e74991abb5384170e7c65fcd7522e409b8e83d7e6372add0f12a" | |
revision 2 | |
bottle do | |
revision 3 |
scss_files: "app/styles/*.scss" | |
linters: | |
BangFormat: | |
enabled: true | |
space_before_bang: true | |
space_after_bang: false | |
BemDepth: | |
enabled: false |
`ember s` error output: | |
File: sasaki-floorplan/adapters/application.js | |
false == true | |
AssertionError: false == true | |
at Visitor.PVp.visitWithoutReset (/Users/cspanring/Projects/sasaki-floorplan/node_modules/ember-cli-esnext/node_modules/broccoli-esnext/node_modules/esnext/node_modules/recast/node_modules/ast-types/lib/path-visitor.js:135:12) | |
at Visitor.PVp.visit (/Users/cspanring/Projects/sasaki-floorplan/node_modules/ember-cli-esnext/node_modules/broccoli-esnext/node_modules/esnext/node_modules/recast/node_modules/ast-types/lib/path-visitor.js:117:21) | |
at Function.transform (/Users/cspanring/Projects/sasaki-floorplan/node_modules/ember-cli-esnext/node_modules/broccoli-esnext/node_modules/esnext/node_modules/regenerator/lib/visit.js:31:18) | |
at transform (/Users/cspanring/Projects/sasaki-floorplan/node_modules/ember-cli-esnext/node_modules/broccoli-esnext/node_modules/esnext/lib/index.js:86:23) | |
at compile (/Users/cspanring/Projects/sasaki-floorplan/node_modules/ember-cli-esnext/node_modules/br |
I hereby claim:
To claim this, I am signing this object:
import DS from 'ember-data'; | |
export default DS.Transform.extend({ | |
deserialize: function(serialized) { | |
if (serialized) { | |
return moment(serialized).toDate(); | |
} | |
return serialized; | |
}, |
From c54e2a8f30d3755550c61fc7a2f55df928c1cf50 Mon Sep 17 00:00:00 2001 | |
From: Christian Spanring <[email protected]> | |
Date: Wed, 7 May 2014 11:40:09 -0400 | |
Subject: [PATCH] Add OpenFileGDB read-only driver option to OGR directory | |
drivers | |
available in gdal-1.11.0. | |
See https://github.com/qgis/QGIS/commit/a096cf45e4ad2fe9dc35fdb3d4453c73e26e7621 for details in QGIS master. | |
--- | |
src/providers/ogr/qgsogrprovider.cpp | 4 ++++ |