Skip to content

Instantly share code, notes, and snippets.

throw new Error('test')
@daniula
daniula / dabblet.css
Created March 5, 2020 21:07
Untitled
body {
font-family: sans-serif;
display: flex;
}
.box {
display: flex;
align-items: center;
justify-content: center;
width: 400px;
module SignupForm exposing (..)
-- This is where our Elm logic lives.`module SignupForm` declares that this is
-- the SignupForm module, which is how other modules will reference this one
-- if they want to import it and reuse its code.
-- Elm’s "import" keyword works similarly to "require" in node.js.
import Html exposing (..)
Verifying that +daniula is my openname (Bitcoin username). https://onename.io/daniula
@daniula
daniula / gist:1228771
Created September 20, 2011 09:57
call_user_func silent error
<?php
$var1 = 0;
$var2 = 1;
function noreference($var1, $var2) {
print "noreference\n";
print $var1 + $var2."\n";
}
function reference(&$var1, &$var2) {