All sites use Styler to customize CSS and JS unless otherwise specified.
This file contains 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
const IS_DEV = process.env.NODE_ENV === 'development'; | |
let environmentSafelist = []; | |
if (IS_DEV) { | |
environmentSafelist.push({ | |
pattern: /.+/, // allow everything | |
}); | |
} | |
module.exports = { |
This file contains 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
# Enova | |
- Leads a Ranger squad or Mini-Squad (4 person team within a Dedicated team. | |
- Interacting with PM & stakeholders, understanding business problems and requirements and articulating solutions. | |
- Understands the audience and packages the messaging accordingly. | |
- Leads development of presentations and complex documents to stakeholders. | |
- Aware of organizational issues that may affect the tone or content of communication. | |
- Builds and coordinates the development of high quality deliverables. | |
- Establishes project standards and applies best practices. | |
- Ensures tasks are QA/PM ready and of high quality. |
This file contains 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
.git | |
.github | |
blueprints | |
bower_components | |
config/environment.js | |
dist | |
ember-cli-build.js | |
node_modules | |
public | |
ssl |
This file contains 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
import Component, { tracked } from '@glimmer/component'; | |
function tryJsonParse(string) { | |
try { | |
return JSON.parse(string); | |
} catch (error) { | |
const realError = new Error(`${error.message}\nTried to parse: ${string}`); | |
throw realError; | |
} | |
} |
This file contains 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
// NOTE: modify this file from this commit on this PR: | |
// https://github.com/glimmerjs/glimmer-web-component/pull/18/commits/8bc4b27f2b78aa2cf6ce0f246dbbb55e88718007 | |
import Application from '@glimmer/application'; | |
function glimmerElementFactory(app: Application, componentName: string) { | |
function GlimmerElement() { | |
return Reflect.construct(HTMLElement, [], GlimmerElement); | |
} |
This is a list of comics that I want to look into. In general, I like super heroes, cyberpunk, fantasy, and sci-fi. As a focus, I prefer to gather many comics in the same universe rather than many comics about the same character across inconsistent universes.
Specifically, I'm not a huge fan of X-Men, Super Man, anything about "teens", or horror/zombies. I'll still consider recommendations for them, though.
- have visualizations for describing how nested and sibling UI elements map to URLs
- provide prework to attendess
- make sure Node.js 0.10.* is installed
- make sure ember-cli is installed
- provide resources for getting up to a minimum bar, like http://discover-devtools.codeschool.com/
- bring your laptop chargers
- provide a premade starter application to attendees
- check in node_modules
This file contains 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
/* | |
An over-determined system of equations is one that has more equations than unknowns. | |
This can lead to unsolvable systems--where there is no one value for each unkown | |
that can satisfy all equations in the system. | |
When this happens, there are ways to estimate the value of each unkown | |
such that it is the best fit for the system. That is, it will make each equation | |
come the closest to being balanced. | |
I am trying to reproduce this operation to get the same result. | |
https://www.elie.net/blog/hearthstone/how-to-find-automatically-hearthstone-undervalued-cards#.VBdzGi5dWEg |
NewerOlder