Skip to content

Instantly share code, notes, and snippets.

View TechplexEngineer's full-sized avatar

Blake Bourque TechplexEngineer

View GitHub Profile
@TechplexEngineer
TechplexEngineer / makefile
Last active April 1, 2017 21:10
Easily prepare gEDA PCB layouts for OSH Park.
TARGET = control
.phony: all clean gerber
all:
gsch2pcb --elements-dir "../pcb-elements" project
clean:
rm -f *.net *.cmd
rm -rf gerber
@TechplexEngineer
TechplexEngineer / notecard_selector.lsl
Created June 23, 2014 17:07
Ann Enigma's Notecard Selector
// Notecard Selector
// by Ann Enigma
// This script presents users with a list of notecards in a dialog box, and allows them to select one
// Note: The names of the notecards must be less than 24 characters long
// This script is licenced under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License
// http://creativecommons.org/licenses/by-nc-sa/3.0/us/
// configurable options
string message = "Which notecard would you like to read?"; // the message on the dialog box
@TechplexEngineer
TechplexEngineer / http.php
Last active August 29, 2015 14:03
This Gist adds f4stdev and rudimentary POST request capability. -- Simple GET & POST requests in PHP.
<?php
/*
* Simple HttpRequest example using PHP
* tom slankard
* POST capability: Techplex Engineer
* https://gist.github.com/twslankard/989974
* http://stackoverflow.com/a/20621965/429544
*/
@TechplexEngineer
TechplexEngineer / Name2Key.cs
Created July 6, 2014 17:41
How to find any Hypergrid user's UUID Per: http://opensimulator.org/pipermail/opensim-dev/2013-December/024480.html -- LibOpenMetaverse required
using System;
using OpenMetaverse;
using System.Collections;
using Nwc.XmlRpc;
namespace Name2Key
{
class MainClass
{
static string m_ServerURL = "http://grid.kitely.com:8002/user/";//"http://hg.osgrid.org:80/user/";
@TechplexEngineer
TechplexEngineer / !SilverStatus.md
Last active August 29, 2015 14:04
Makes the Rockwell Automation Product Lifecycle Status page more user friendly [Userscript]

RA Silver Status Script

The script was developed to aid in the use of the Rockwell Automation Product Lifecycle webpage.

Features

  • Auto focus on the search field
  • Auto load the Product Status and Silver End Date
  • Once all of rows have been loaded the table is:
@TechplexEngineer
TechplexEngineer / tvmuse.user.js
Last active August 29, 2015 14:04
Script to compile a nice list of links from the comments on episode pages [userscript]
// ==UserScript==
// @name tv-links.eu/tvmuse.eu Link Finder
// @namespace http://tvmuse.eu/
// @version 0.1.2
// @description script to compile a nice list of links from the comments on episode pages
// @include *.tvmuse.*/*
// @require http://code.jquery.com/jquery.min.js
// @copyright 2014+, Techplex Engineer
// ==/UserScript==
@TechplexEngineer
TechplexEngineer / !htmlTable2CSV.md
Last active September 9, 2022 10:56
Convert HTML table into CSV for export to excel.

Easy HTML Table to CSV

Note:

I have modified the function to better handle malformed tables.

Features:

  • Include table header rows
  • Handle tables with the header rows at the bottom
@TechplexEngineer
TechplexEngineer / !srproj.md
Last active August 29, 2015 14:07
Git log for Progress Report -- Without commit hash

Easily print and manage senior project git logs and code

#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x495a2d94, pid=3095, tid=1075541104
#
# JRE version: Java(TM) SE Embedded Runtime Environment (8.0_06-b23) (build 1.8.0_06-b23)
# Java VM: Java HotSpot(TM) Embedded Client VM (25.6-b23 mixed mode linux-arm )
# Problematic frame:
# C [libwpilibJavaJNI565955528056981185.so+0x35d94] getSolenoid+0x50
#
@TechplexEngineer
TechplexEngineer / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console