Skip to content

Instantly share code, notes, and snippets.

View robbintt's full-sized avatar
🎯
Focusing

Trent Zock-Robbins robbintt

🎯
Focusing
View GitHub Profile
@robbintt
robbintt / wedding_band.scad
Last active July 7, 2016 23:43
A draft of my wedding band done in OpenSCAD
// OpenSCAD works in units mm
res=360*5; // working resolution
// res=360*2; // descriptive resolution
// ** DEFINE RING VARIABLES **
thickness = 2.1; // 2.1mm "thick" ring thickness
height = 5; // 5mm ring height (aka width, the cylinder height)
@robbintt
robbintt / javascript_reference.md
Last active June 15, 2016 01:32
Modern JavaScript

Javascript Reference Notes

Understanding: JavaScript Versions

  • When you say Client-Side JavaScript, people are thinking ES5.
  • When you say node.js, people think Google's V8 Engine-> Gradual ES6 Coverage.
@robbintt
robbintt / README.md
Last active April 15, 2016 03:46
books
@robbintt
robbintt / README.md
Created April 15, 2016 02:36
fresh block
@robbintt
robbintt / .block
Created April 15, 2016 02:33
Human developement index in Ecuador
license: gpl-3.0
height: 580
@robbintt
robbintt / x220-coreboot-config
Last active February 28, 2016 03:43
Coreboot config generated for x220
#
# Automatically generated file; DO NOT EDIT.
# coreboot configuration
#
#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_CBFS_PREFIX="fallback"
robbintt [20:43]
First time: green power button blinked on once for a fraction of a second and then nothing
[20:43]
Now (2nd time): sustained green light around power button, fan noise, no display
[20:45]
I will try just pressing some buttons assuming seabios native vga doesn't work or something (edited)
@robbintt
robbintt / 2015-reading.txt
Last active December 5, 2015 07:59
My Reading Habits (A review of 2015)
Greatest Hits of 2015:
Nonviolent Communication
The Three Body Problem
Cloud Atlas
The E-myth Revisited
Cryptonomicon
The Information: A History, a Theory, a Flood
The Martian
True Names
The Wizard of Earthsea
@robbintt
robbintt / request_threading.py
Created November 24, 2015 05:06
an example of threading requests
"""
Specification for retrieve_data:
If 200 is the status code, return the json object
If not, return an error
instead of subclassing Thread to store the data, we've used a global variable.
avoiding objects for now to keep everything accessible.
"""
import time
import threading