Skip to content

Instantly share code, notes, and snippets.

View johnlindquist's full-sized avatar
💭
Eating a taco 🌮

John Lindquist johnlindquist

💭
Eating a taco 🌮
View GitHub Profile
<!doctype html>
<html lang="en" ng-app="workshop">
<head>
<meta charset="UTF-8">
<title>AngularJS Jumpstart</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<script src="angular.js"></script>
<script src="workshop.js"></script>
</head>
<!doctype html>
<html lang="en" ng-app="workshop">
<head>
<meta charset="UTF-8">
<title>AngularJS Jumpstart</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<script src="angular.js"></script>
<script src="workshop.js"></script>
</head>
<!doctype html>
<html lang="en" ng-app="workshop">
<head>
<meta charset="UTF-8">
<title>AngularJS Jumpstart</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<script src="angular.js"></script>
<script src="workshop.js"></script>
</head>
<!doctype html>
<html lang="en" ng-app="workshop">
<head>
<meta charset="UTF-8">
<title>AngularJS Jumpstart</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<script src="angular.js"></script>
<script src="router.es5.js"></script>
<script src="workshop.js"></script>
function ClassRoom(){}
ClassRoom.annotations = [
new angular.ComponentAnnotation({
selector: "class-room"
}),
new angular.ViewAnnotation({
template: "<h1>Windows, Chairs, Tables</h1>"
})
];

Why?

I’ve tracked everything I’ve eaten, every day, for the past 8 weeks. I’m 6’3” and weigh 217. I also know all the measurements for my chest, belly, arms, and legs, but that’s a story for another day.

I’ve been fat. I think about 330lbs, but I was too ashamed to get on a scale. When I decided to do something about it, I started running (well, walking, then jogging, then running). I ate better, but I honestly have no idea exactly what I ate. I remember trying a couple of quick-fix diets which made me way too hungry, so I just stuck to eating better and running more. Over the years, I started playing basketball and lifting weights. All this exercise worked and I made my way down to the 230lbs. I felt great, then I broke my wrist.

A broken wrist was a big setback. I turned to food for comfort for a few months and put on a good 20lbs or so. Clothes were getting tight and I was pretty ticked with myself. My wrist cast came off, so it was time to get back to work. It was slow going. Weak wrists and arms di

class Example{
afield;
constructor(public shorthand){
//no need for this.shorthand = shorthand
}
}
//These first 3 lines will be deprecated by the final release
import 'reflect-metadata'
import 'zone.js'
import "angular2/angular2";
import {bootstrap} from "angular2/platform/browser";
import {Component} from "angular2/core";
@Component({
import {Component} from "angular2/core";
import {Control} from "angular2/common";
import {Http} from "angular2/http";
@Component({
selector:`contact-search`,
template:`<div>
<input [ng-form-control]="searchInput"/>
<div *ngFor="#contact of results | async">
import {Component} from 'angular2/core';
import {Control} from 'angular2/common';
import {Http} from 'angular2/http'
import {Subject} from "rxjs";
@Component({
selector: 'app',
template: `
<input type="number" [ngFormControl]="numControl" />