Skip to content

Instantly share code, notes, and snippets.

View Quasso's full-sized avatar
:shipit:
Coding baby

Alex G Quasso

:shipit:
Coding baby
  • Lead Blockchain Developer (Contract)
  • UK
  • X @mrgdgr
View GitHub Profile
@Quasso
Quasso / iterm2.md
Created April 3, 2016 19:18
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
Previous Tab + Left Arrow
Next Tab + Right Arrow
Go to Tab + Number
Go to Window + Option + Number
Go to Split Pane by Direction + Option + Arrow
Go to Split Pane by Order of Use + ] , + [
@Quasso
Quasso / *.md
Created August 3, 2016 09:35 — forked from toddmotto/*.md
Component versus Directive in AngularJS

Component versus Directive in AngularJS

.component()

Components are not "helper" methods, they are the best change in Angular 1.x since I've been using it.

What is the role of .component()?

  • Declares new HTML via a template or templateUrl
  • Should be used to create Components as part of a Component architecture
@Quasso
Quasso / countries.enum.ts
Created August 2, 2020 15:06 — forked from kyranjamie/countries.enum.ts
TypeScript enum Country Codes ISO 3166
export enum Country {
Afghanistan = 'AF',
AlandIslands = 'AX',
Albania = 'AL',
Algeria = 'DZ',
AmericanSamoa = 'AS',
Andorra = 'AD',
Angola = 'AO',
Anguilla = 'AI',
Antarctica = 'AQ',