Skip to content

Instantly share code, notes, and snippets.

View t3db0t's full-sized avatar
😃
Working on https://www.Bartleby.ink

Tedb0t t3db0t

😃
Working on https://www.Bartleby.ink
View GitHub Profile
// Manually Setting File Type/URL Variable Example
import com.hydrotik.queueloader.QueueLoader;
import com.hydrotik.queueloader.QueueLoaderEvent;
import com.hydrotik.queueloader.QueueLoaderConst;
var _oLoader:QueueLoader = new QueueLoader();
var img:Sprite = new Sprite();
img.name = "image_1";
@t3db0t
t3db0t / hack.sh
Created March 31, 2012 20:22 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@t3db0t
t3db0t / nodeServer.js
Created May 5, 2012 18:56
Basic Node Server
var net = require('net');
var server = net.createServer(function(socket) { //'connection' listener
console.log('server connected');
socket.setEncoding('ascii');
socket.on('end', function() {
console.log('server disconnected');
});
@t3db0t
t3db0t / blink.c
Created June 15, 2012 22:33
Raspberry Pi test program using wiringPi
@t3db0t
t3db0t / buttonLED.c
Created June 15, 2012 22:38
Raspberry Pi test program using wiringPi; changes blinking rate with button press
/*
* buttonLED.c:
* Simple test program to change the blinking rate of an LED when a button is pressed
*/
#include <wiringPi.h>
#include <stdio.h>
int main (void)
{
@t3db0t
t3db0t / eeprom_rw_test.ino
Created August 1, 2012 19:53
Arduino EEPROM Read-Write Example
/******************************************************
Arduino EEPROM Read-Write Test
by Ted Hayes 2012
ted.hayes@liminastudio.com
Demonstrates the usage of the EEPROM Library for checking the state of a single value,
changing it, and resetting it. To use:
1) Put a momentary switch between ground and pin 11 on your Arduino.
@t3db0t
t3db0t / userMaps.json
Created September 8, 2016 19:13
Maps JIRA users to Clubhouse projects and user IDs
[
{
"jiraUsername": "userA",
"chProjectID": 5,
"chID": "476257c9-ac5a-46bc-67d6-4bc8bbfde7be"
},
{
"jiraUsername": "userB",
"chProjectID": 81,
"chID": "476257c9-ac5a-46bc-67d6-4bc8bbfde7be"
@t3db0t
t3db0t / workflows.go
Created September 8, 2016 20:16
Workflow mappings
switch item.Status {
case "Ready for Test":
// ready for test
state = 500000010
case "Task In Progress":
// in progress
state = 500000015
case "Selected for Review/Development":
// selected
state = 500000011
@t3db0t
t3db0t / gist:de49195d1e6809c9c1e8a413dfe85a47
Created September 8, 2016 21:57
Why Clubhouse/Why Not Jira
TL;DR: JIRA is the salesforce of project management: slow, ancient, difficult. Clubhouse is a modern, reactive application tailor-made for agile product development. I’ve measured speed increases of 400-1500% (or more in a few worst cases). No, I’m not making that up.
Why Clubhouse?
Here’s a simple presentation I made of why:
https://docs.google.com/presentation/d/14KWfFRXzAJGA1oAblV_5Z4wSPcuR74QxaFLaM2Mjhsg/pub?start=false&loop=false&delayms=3000
A few additional items:
- Easily configurable/filterable workspaces
- Shareable workspaces for custom views tailored to a specific purpose
@t3db0t
t3db0t / supercrawler-test.js
Created November 29, 2017 23:11
Example using Supercrawler
var supercrawler = require("supercrawler");
// 1. Create a new instance of the Crawler object, providing configuration
// details. Note that configuration cannot be changed after the object is
// created.
var crawler = new supercrawler.Crawler({
// By default, Supercrawler uses a simple FIFO queue, which doesn't support
// retries or memory of crawl state. For any non-trivial crawl, you should
// create a database. Provide your database config to the constructor of
// DbUrlList.