Skip to content

Instantly share code, notes, and snippets.

View ErikSchierboom's full-sized avatar
💭
I only respond on Tuesdays & Fridays

Erik Schierboom ErikSchierboom

💭
I only respond on Tuesdays & Fridays
View GitHub Profile
@ErikSchierboom
ErikSchierboom / WeighingMachinePossibleSolution.cs
Last active September 28, 2021 09:50 — forked from 18-F-cali/WeighingMachinePossibleSolution.cs
Weighing machine possible solution
using System;
class WeighingMachine
{
private int _weight;
public WeighingMachine(int precision)
{
Precision = precision;
}
@ErikSchierboom
ErikSchierboom / app.html
Created October 7, 2016 13:41 — forked from ZoolWay/app.html
Aurelia Child
<template>
<h1>${message}</h1>
<div>Div Content</div>
</template>