Skip to content

Instantly share code, notes, and snippets.

@beck
beck / Star Wars.md
Last active November 23, 2016 19:49
Neumann's Star Wars Recommendations

New Disney-Era Star Wars Canon Novels (all currently released novels):

Dark Disciple by Christie Golden - 20 years before A NEW HOPE - Based on unproduced episodes of Star Wars: The Clone Wars, this new novel features Asajj Ventress, former Sith apprentice turned bounty hunter and one of the great antiheroes in the Star Wars galaxy. My notes: This will probably one be exciting if read by someone who was a fan of the CLONE WARS TV show.

Catalyst by James Luceno - ROGUE ONE prequel - Lauded Star Wars author James Luceno returns to pen an intense tale of ambition and betrayal that sets the stage for Rogue One: A Star Wars Story. My Notes: this is said to be a prequel to the new movie ROGUE ONE. Luceno is one of the best Star Wars novelists and has written quality novels in that universe for years.

Ahsoka by E. K. Johnston - 18 years before A NEW HOPE - Fans have long wondered what happened to Ahsoka after she left the Jedi Order near the end of the Clone Wars, and before she re-appeared as the mysterious Re

@beck
beck / debugging.js
Created November 16, 2016 17:31
Lodash and Amersand Router clash
global.location = {};
global.location.replace = function(){};
global.location.href = '';
global.location.pathname = '';
global.window = {};
global.window.location = global.location;
var partialRight = require('lodash').partialRight;
var partial = require('lodash').partial;
var AmpRouter = require('ampersand-router');
cd /dev/shm
git clone --single-branch ~/git/yola/sitebuilderui
git remote rm origin
git update-ref -d refs/tags/pre-template-component-purge
git filter-branch --index-filter '
git ls-files -s \
| sed "s|\t.*/nabtext\.js$|\tnabtext/nabtext.js|" \
@beck
beck / coffee-log.md
Last active January 29, 2016 16:58
Coffee Log and Morning Science

Coffee Log

Morning Science.

Jan 29

Carson recommends 6%ish. Will bump the water to get full cup. This is a lighter brew, I hope to get something as good as what the barista at Lineage served me. I noted she uses a wide-mouthed up and gives the rest of the coffee in a caraffee. I wish JoeJoe would finish my chicken mug.

Questions

@beck
beck / bobo.md
Last active January 23, 2016 16:04
Bobo's getting started

Bobo

bobo's face

A novice guide to programming Bobo, our loveable cucumber (possibly pickled) slackbot.

Basic Shit

  • bobo is a hubot
  • bobo scripts are written in javascript
1
00:04:48,663 --> 00:04:50,247
ST. DAVID'S FIELD - TENNESSEE
1863
2
00:43:21,599 --> 00:43:28,271
Only a white man would make a fire
for everyone to see.
@beck
beck / awk.1
Created November 17, 2015 01:31
.de EX
.nf
.ft CW
..
.de EE
.br
.fi
.ft 1
..
awk
import unittest
from mock import patch, Mock
from django.shortcuts import render
class Dashboard(object):
"""This is the system under test."""
@classmethod
@beck
beck / tube.py
Last active October 8, 2015 20:13
A generic testube config file
"""Configuration for testtube.
Automatically run tests when files change by running: stir
See: https://github.com/thomasw/testtube
For flake8, don't forget to install:
* flake8-quotes
"""
@beck
beck / git-isort
Last active September 4, 2015 16:55
git util to isort all files with a diff
#!/bin/bash
#
# git isort - isort files with a diff
#
# to use:
# * install isort (this code uses pyenv and has isort installed in 2.7.5)
# * place this file anywhere on PATH, callable via `git isort`
#