Skip to content

Instantly share code, notes, and snippets.

const IS_DEV = process.env.NODE_ENV === 'development';
let environmentSafelist = [];
if (IS_DEV) {
environmentSafelist.push({
pattern: /.+/, // allow everything
});
}
module.exports = {
# ~/.config/ReText project/ReText.conf
[General]
autoSave=true
restorePreviewState=true
highlightCurrentLine=true
tabWidth=2
styleSheet=github.css
useWebKit=true
autoPlainText=false
# 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.
.git
.github
blueprints
bower_components
config/environment.js
dist
ember-cli-build.js
node_modules
public
ssl
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;
}
}
@EndangeredMassa
EndangeredMassa / glimmer-elements.ts
Last active June 22, 2017 19:09
enhanced glimmer components, with some surface-level workarounds
// 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);
}
@EndangeredMassa
EndangeredMassa / 0.readme.md
Last active November 4, 2016 18:50
Custom CSS/JS for Sites

Custom CSS/JS for Sites

All sites use Styler to customize CSS and JS unless otherwise specified.

@EndangeredMassa
EndangeredMassa / cookie.coffee
Last active January 2, 2016 12:49
testium examples
@EndangeredMassa
EndangeredMassa / require.lua
Created August 6, 2013 14:44
Lua Requires
-- GLOBAL CHANGES --
-- make requires return the object --
_require = _G.require
_G.require = function (name)
local original = _G[name]
_require(name)
local package = _G[name]
_G[name] = original
return package