Skip to content

Instantly share code, notes, and snippets.

View courtneyphillips's full-sized avatar

Courtney Phillips courtneyphillips

  • Datadog
  • Portland, Oregon
View GitHub Profile
var sheet = SpreadsheetApp.getActiveSheet(),
rows = sheet.getDataRange(),
numRows = rows.getNumRows(),
values = rows.getValues(),
re = ' at',
// Depending on layout and format of spreadsheet, alter these variables as necessary:
startTimeCol = 1,
enteredExitedColumn = 0,
hoursDurationColumn = 3,
letterForHoursDurationColumn = "C",
{
"name": "online-store",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "tslint \"src/**/*.ts\" --project src/tsconfig.json --type-check && tslint \"e2e/**/*.ts\" --project e2e/tsconfig.json --type-check",
"test": "ng test",
https://github.com/webpack/webpack-dev-server/issues/100#issuecomment-283343053
https://github.com/gaearon/react-hot-loader/issues/515
@courtneyphillips
courtneyphillips / Child Component
Last active September 13, 2017 17:54
peanut butter jellyyyyy
class PeanutButterJelly extends React.Component {
constructor(props){
super(props);
this.state = {
dummyStateToTriggerUpdate: []
};
this.addToDummyState = this.addToDummyState.bind(this);
setTimeout(() =>
this.addToDummyState(),