Skip to content

Instantly share code, notes, and snippets.

View tyzoid's full-sized avatar
⛈️
Old Man Yells At Cloud

Tyler Dence tyzoid

⛈️
Old Man Yells At Cloud
  • Ann Arbor, Michigan
View GitHub Profile
@tyzoid
tyzoid / armir.sh
Last active August 3, 2017 12:40
Arch Linux Mirroring Script
#!/bin/bash
# This script is distributed under the MIT license
# Copyright 2017 Tyler Dence
do_sync() {
# Sleep if we need to backoff
sleep "$1";
mirror="$2";
@tyzoid
tyzoid / main.c
Last active March 7, 2017 19:34
Four-Function Calculator
extern int yyparse(void);
int main() {
yyparse();
return 0;
}

Keybase proof

I hereby claim:

  • I am tyzoid on github.
  • I am tyzoid (https://keybase.io/tyzoid) on keybase.
  • I have a public key whose fingerprint is F295 5C3B 63EE 4E42 1F30 670A 3B08 EFC6 BA97 4CFC

To claim this, I am signing this object:

var React = require('react');
var Connector = require('./refluxConnector.js');
var DataStore = require('./dataStore.js');
var App = React.createClass(
Connector({
render: function(){
return (
<div>
<h1>Welcome {this.state.user.firstName}!</h1>