Skip to content

Instantly share code, notes, and snippets.

View RobinCsl's full-sized avatar

Robin Cussol RobinCsl

View GitHub Profile
<div id="photo">
<div class="pic">
</div>
</div>
<div id="top">
<div class="container-fluid">
<div class="row">
<div class="col-md-5">
<h1>Robin Cussol</h1>
const fc = require("fast-check");
const capitalize = text => (text ? text[0].toUpperCase() + text.slice(1) : "");
/* works fine */
it("returns the correct string", () => {
fc.assert(
fc.property(fc.string(), text => {
if (text) {
@RobinCsl
RobinCsl / notes-frontend-con-2018.md
Last active January 5, 2019 13:36
Notes from Frontend Con, 4-5 Dec 2018, Warsaw, Poland