Skip to content

Instantly share code, notes, and snippets.

View sevvie's full-sized avatar

sevvie Rose sevvie

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sevvie on github.
  • I am sevvie (https://keybase.io/sevvie) on keybase.
  • I have a public key ASCrQ1tuQ9XuPQNGg5ycQlFmXxhimp7vQ32jpH68QlaeMQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am sevvie on github.
  • I am sevvie (https://keybase.io/sevvie) on keybase.
  • I have a public key ASCWAKKSqaush7bmpcHa6lwjxu1lo6p6aVDvg2UW07fdPAo

To claim this, I am signing this object:

Verifying my Blockstack ID is secured with the address 1DuevjrrG9srVAKiZBWzDLcn5GC1eQA6mw https://explorer.blockstack.org/address/1DuevjrrG9srVAKiZBWzDLcn5GC1eQA6mw
Verifying my identity on Peepeth.com 0xb9a7922eec475605498ba3c1f7f0aca98585f30a
do {
(New-Object System.Net.WebClient).DownloadFile( "http://idsv.co/obs_json.php", '.\Documents\ytsaints-hashtag.txt' )
sleep 2
} while( 1 )
@sevvie
sevvie / Model.jsx
Created May 22, 2016 20:32
the most beautiful react code I have seen, thanks to mobx.
class AppState {
@observable raw_ticket_data;
@observable sort_by = 'Owner';
@observable group_by = 'Queue';
constructor(raw_ticket_data) {
this.raw_ticket_data = raw_ticket_data;
@sevvie
sevvie / gist:f76fc310473dd64d2e7d
Created February 14, 2016 08:06
Happy Valentine's Day, love.
The game is on; your first clue has two parts:
the monitor you gave
https://goo.gl/3NCcdL
subtest {
ok 1 + 1 eq 2, "Reality sinks in; this isn't a dream.";
is 123.WHAT.gist, "(Int)", "Integers are treated as _scalar Int objects_";
is 1.23.WHAT.gist, "(Rat)" "Rationals are treated as _scalar Rat objects_";
is "moo".WHAT.gist, "(Str)", "Strings are treated as _scalar Str objects_";
is [1, 2, 3].WHAT.gist, "(Array)", "Arrays, or Lists, are treated as _Array objects_";
is {'name' => 'Camelia'}.WHAT.gist, "(Hash)", "Hashes, or hash-maps, are treated as _Hash objects_";
}, "Yeah... I've suspended disbelief for the narrative; I'm stranded.";
use v6;
use lib 'lib';
use Test;
@sevvie
sevvie / dlog.ls
Last active December 20, 2015 08:49
global <<< require \prelude-ls
fs = require \fs
yaml = require \js-yaml
marked = require \marked
hljs = require \highlight.js
jade = require \jade
marked.setOptions {highlight: (lang, code) ->
hljs.highlightAuto(lang, code).value
}