Skip to content

Instantly share code, notes, and snippets.

View adobley's full-sized avatar
💜

Aidan Obley adobley

💜
View GitHub Profile
@flawedmatrix
flawedmatrix / go17investigation.ipynb
Created January 9, 2017 14:54
Upgrade to Golang 1.7 Investigation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wkwiatek
wkwiatek / app-1.spec.ts
Last active December 17, 2021 01:52
Angular 2 test snippets for Angular final version. Codebase for https://developers.livechatinc.com/blog/category/programming/angular-2/
// App
import { Component } from '@angular/core';
@Component({
selector: 'app',
template: '<span>{{ sayHello() }}</span>',
})
export class App {
public name: string = 'John';