Skip to content

Instantly share code, notes, and snippets.

View pllearns's full-sized avatar

Phillip Lorenzo pllearns

  • FYC Labs
  • Portland, OR
View GitHub Profile
@pllearns
pllearns / 1. Getters and Setters
Last active February 27, 2017 02:39
Object Oriented Javascript (from Derek Banas Tutorial)
Here is an efficient way to get getters and setters:
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Javascript Practice</title>
</head>
<body>
<script type="text/javascript">
@pllearns
pllearns / Basic HTML & CSS
Last active February 17, 2017 18:58
Resources for Skills/Another Trail
Goal choice: https://github.com/GuildCrafts/web-development-js/issues/36 --> Will need to be edited into new immutable specs
Goal choice: https://github.com/GuildCrafts/web-development-js/issues/145 --> Will need to emphasize HTML learning here
Any goal that has a need for a
@pllearns
pllearns / LG Clubhouse Stories Links
Last active February 13, 2017 16:13
LOS - Apprenticeship - Week 2 -
@pllearns
pllearns / .eslintrc
Last active January 30, 2017 16:56
webpack/enhanced-resolve-es6-refactor
{
"root": true,
"plugins": ["node", "eslint-plugin-node"],
"extends": ["eslint:recommended", "plugin:node/recommended"],
"env": {
"node": true,
"es6": true
},
"rules": {
"quotes": ["error", "double"],
@pllearns
pllearns / ReactRouter.js
Created January 14, 2017 05:30
React Router - Rethinking what can be passed through.
import ReactDom from 'react-dom'
import {Component} from 'react'
import React from 'react'
import { Router, Route, browserHistory } from 'react-router'
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'
import LandingPage from './LandingPage'
import ScheduleSession from './ScheduleSession'
import ActivateCoach from './ActivateCoach'
import CoachLanding from './CoachLanding'
import fetchMethod from './fetchMethod'
@pllearns
pllearns / 1-Initial Specs
Last active January 9, 2017 16:51
Coach-Que MVP-Week
Prepare coach-que for MVP status
- Getting JWT to work without hard code to the console. (idm)
- Check functionality of assigning a new appointment.
- No appointments after hours/weekends.
- Pinging the customer feedback form.
- Final QA of appointment setting and feedback initiation.