This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tls = require('tls'); | |
var constants = require('constants'); | |
// Disable client session renegotiation, no known use case per: | |
// https://www.ssllabs.com/downloads/SSL_TLS_Deployment_Best_Practices_1.3.pdf | |
// By virtue of require() caching, this will affect all code using `tls`. | |
tls.CLIENT_RENEG_LIMIT = 0; | |
// Based on whitelist proposed at: https://bugs.ruby-lang.org/issues/9424 | |
// And SSL/TLS Best Practices: https://www.ssllabs.com/downloads/SSL_TLS_Deployment_Best_Practices_1.3.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* LexitronCreateAxes.cs | |
* | |
* 1. Place this script in your project's Assets/Editor/ directory. | |
* 2. Open Edit -> Project Settings -> Input and verify that there are four "Lexitron" axes. | |
* 3. Delete this script. | |
* | |
* All of this code shamelessly swiped from: | |
* http://www.plyoung.com/blog/manipulating-input-manager-in-script.html | |
* http://answers.unity3d.com/questions/26994/running-a-script-when-unity-starts.html | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Heartbeat log script for node.js. Use this to sniff out code that blocks | |
// your event loop; heartbeats will take longer if the event loop is | |
// blocked. | |
// Just require('./heartbeat.js'); ==OR== require('./heartbeat.js')(3000); | |
module.exports = go; | |
var DEFAULT_HEARTBEAT_MS = 2000; | |
var startedAt, loop; | |
go(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
gulpfile.js | |
Gulp lacks a native way to provide task documentation or break tasks | |
into multiple files. This gulpfile reads './tasks/*.js' and can list | |
all available tasks with `gulp` or `gulp tasks`. If you set a .desc | |
property on your task functions, those descriptions will show up in | |
`gulp tasks` output. Tasks without descriptions will be omitted | |
from this output (but still visible with `gulp -T`). | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
setup_teardown_helper.js | |
Setup and teardown helper functions for jasmine-node (jasmine 1.3). | |
IMNSHO, every damn test runner should provide the following hooks: | |
startup (global; runs once before any setups or specs begin) | |
setup (describe-local; runs once before any specs in a `describe`) | |
beforeEach (describe-local; runs once before each spec in a `describe`) | |
afterEach (describe-local; runs once after each spec in a `describe`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ruw a2/arduino-1.6.9/hardware/teensy/avr/boards.txt arduino-1.6.9/hardware/teensy/avr/boards.txt | |
--- a2/arduino-1.6.9/hardware/teensy/avr/boards.txt Tue Aug 9 20:50:12 2016 | |
+++ arduino-1.6.9/hardware/teensy/avr/boards.txt Mon Aug 8 05:20:42 2016 | |
@@ -65,6 +65,9 @@ | |
teensy31.menu.usb.flightsimjoystick=Flight Sim Controls + Joystick | |
teensy31.menu.usb.flightsimjoystick.build.usbtype=USB_FLIGHTSIM_JOYSTICK | |
teensy31.menu.usb.flightsimjoystick.fake_serial=teensy_gateway | |
+teensy31.menu.usb.xinput=[MSF] Shoryuken! (XINPUT DEVICE) | |
+teensy31.menu.usb.xinput.build.usbtype=USB_XINPUT | |
+teensy31.menu.usb.xinput.fake_serial=teensy_gateway |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Highlights in red, shrinks text, converts text to grey, and adds "NOT FOLLOWING" before username. | |
The user ID used here is for @POTUS, which will one day become @POTUS45. | |
Designed to help highlight tweets forced into your timeline by Twitter. Narrow execution. | |
*/ | |
@-moz-document domain('twitter.com') { | |
.tweet[data-user-id="822215679726100480"][data-you-follow=false] { | |
background-color: #FDD; | |
color: grey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/UnityMidiReceiver/UnityMidiReceiver.cpp | |
+++ b/UnityMidiReceiver/UnityMidiReceiver.cpp | |
@@ -37,6 +37,7 @@ namespace | |
// MIDI device handle vector. | |
std::vector<HMIDIIN> handles; | |
+ std::vector<HMIDIOUT> outDeviceHandles; | |
// Incoming MIDI message queue. | |
std::queue<Message> messageQueue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
html-annotate-filenames | |
Webpack loader that surrounds generated HTML blocks with comments noting the | |
original source filename for the block. | |
To use, modify your webpack config with a `resolveLoader` that can find this | |
file and a rule for this loader. Example: | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
************************************************************************ | |
THIS GIST IS OUTDATED | |
There's a new version published in the bitsy-hacks repo, which changes | |
syntax to use parentheses instead of curly braces so the editor | |
doesn't eat your function calls! Go check out the new script and see | |
all the new stuff in the header comments. | |
bitsy-hacks repo at: https://github.com/seleb/bitsy-hacks |