Skip to content

Instantly share code, notes, and snippets.

@DVG
DVG / machine.js
Last active September 6, 2022 18:01
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@DVG
DVG / machine.js
Last active May 13, 2021 11:27
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions

By Non-Traditional, Meaning you are not paying a tuition to go to a school in pursuit of a degree. This is mostly self study resources that are cheap or free

Books

The Links Here May Contain NSFW Content

@DVG
DVG / Birthday List.md
Last active June 15, 2016 10:57
Birthday Ideas
  • New Nintendo 3DS
  • iTunes Gift Card $20 (For Star Wars coming out April 1st)
  • Final Fantasy Explorers For 3DS
  • Fire Emblem Fates

Gift Cards

  • Nintendo eShop
  • iTunes
  • PSN
@DVG
DVG / ff6.md
Last active January 21, 2016 21:53

                                                    S              S         S
                      O    L    T    E    S         h         C    e         t
                      w    o    e    d    a    C    a         e    t    R    r
                      n    c    r    g    b    y    d    G    l    z    e    a
                      e    k    r    a    i    a    o    a    e    e    l    g
                      d    e    a    r    n    n    w    u    s    r    m    o
Ramuh - +1 Stamina   [x]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]
    Thunder (10x)    [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]  [ ]
@DVG
DVG / list.md
Last active November 9, 2015 13:08
Bradley Christmas List
@DVG
DVG / patch-chrome.sh
Created May 26, 2015 13:22
Patch Chrome
#!/bin/bash
cp /usr/share/applications/google-chrome.desktop ~/google-chrome.desktop.bak~
sudo sed -i 's/\/usr\/bin\/google\-chrome\-stable/\/usr\/bin\/google\-chrome\-stable \-\-touch\-devices=123/g' /usr/share/applications/google-chrome.desktop
@DVG
DVG / Dockerfile
Created April 11, 2015 19:14
Docker
FROM ruby:2.2.1
RUN apt-get update -qq && apt-get install -y build-essential
RUN apt-get install -y libxml2-dev libxslt1-dev
RUN apt-get install -y libqt4-webkit libqt4-dev xvfb
RUN apt-get install -y nodejs
ENV APP_HOME /code
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
ADD Gemfile* $APP_HOME/
@DVG
DVG / nginx.conf
Created March 18, 2015 14:18
nginx for sinatra
# this sets the user nginx will run as,
#and the number of worker processes
user nobody nogroup;
worker_processes 1;
# setup where nginx will log errors to
# and where the nginx process id resides
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;