Skip to content

Instantly share code, notes, and snippets.

View SteffenJahr's full-sized avatar

Steffen Jahr SteffenJahr

View GitHub Profile
@SteffenJahr
SteffenJahr / app.component.html
Last active February 28, 2020 13:34
PWA Workshop Lab #9
<app-nav>
<ul>
<li *ngFor="let todo of todos"><input type="checkbox" [checked]="todo.done" /> {{ todo.title }}</li>
</ul>
<input type="text" #input /><button (click)="add(input.value)">Hinzufügen</button>
<router-outlet></router-outlet>
</app-nav>
@SteffenJahr
SteffenJahr / app.component.html
Last active February 28, 2020 11:47
PWA-Workshop Lab #6
<app-nav>
<input type="text" #input /><button (click)="add(input.value)">Hinzufügen</button>
<router-outlet></router-outlet>
</app-nav>
@SteffenJahr
SteffenJahr / README.md
Last active January 19, 2016 16:44 — forked from nicerobot/README.md
Mac OS X uninstall script for packaged install of node.js

To run this, you can try:

curl -ks https://gist.githubusercontent.com/SteffenJahr/7c14cd1a0777f497e8c5/raw/uninstall-node.sh | bash

I haven't tested this script doing it this way but i run a lot of my Gists like this so maybe this one'll work too.

Alternatively,

curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh

chmod +x ./uninstall-node.sh