Skip to content

Instantly share code, notes, and snippets.

View bgw's full-sized avatar

Benjamin Woodruff bgw

View GitHub Profile
import React, { Component } from 'react';
import './App.css';
class App extends Component {
constructor(props) {
super(props);
this.state = {
currentMessage: '',
messages: [],
};
@bgw
bgw / keybase.md
Last active August 29, 2015 14:24

Keybase proof

I hereby claim:

  • I am bgw on github.
  • I am pipeep (https://keybase.io/pipeep) on keybase.
  • I have a public key whose fingerprint is 3F4B 2B30 E887 36F4 5B3A 2C0C 2213 A73C 4E25 69F1

To claim this, I am signing this object:

@bgw
bgw / .eslintrc
Last active August 29, 2015 14:22
eslint-arrow-test-case
---
ecmaFeatures:
arrowFunctions: true
env:
node: true
rules:
indent: 2
@bgw
bgw / dnd1.basic
Created April 20, 2014 22:28 — forked from daeken/dnd1.basic
79/02/28. 19.27.34.
PROGRAM DND1
00010 LET J4=1
00030 PRINT
00100 BASE 0
00110 LET X=0
00120 LET J=0
00130 LET K=0
00140 X1=0
@bgw
bgw / botguy_ng_db_updater.py
Created March 29, 2011 23:10
Updates a botguy-ng experimental database file from the old shove-based format to the new sqlite3-based format
# Python 2 or 3
# Updates a botguy-ng experimental database file from the old shove-based format
# to the new sqlite3-based format
from bot import database
import pickle
p = pickle.load(open("botguy_info.db/userdef"))