Skip to content

Instantly share code, notes, and snippets.

View jonathanargentiero's full-sized avatar

Jonathan Argentiero jonathanargentiero

View GitHub Profile
@jonathanargentiero
jonathanargentiero / HKN_6_players.txt
Created September 12, 2019 07:58
HotKeynet 6 players script
//================================================================
// SAMPLE SCRIPT FOR SIX WOW'S ON ONE PC
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
@jonathanargentiero
jonathanargentiero / HKN_5_players.txt
Last active August 29, 2022 01:46
HotKeynet 5 players script
//================================================================
// SAMPLE SCRIPT FOR FIVE WOW'S ON ONE PC
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
@jonathanargentiero
jonathanargentiero / HKN_4_players.txt
Last active September 5, 2017 22:06
HotKeynet 4 players script
//================================================================
// SAMPLE SCRIPT FOR FOUR WOW'S ON ONE PC
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
@jonathanargentiero
jonathanargentiero / HKN_3_players.txt
Last active October 7, 2021 15:08
HotKeynet 3 players script
//================================================================
// SAMPLE SCRIPT FOR THREE WOW'S ON ONE PC
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
@jonathanargentiero
jonathanargentiero / HKN_2_players.txt
Created August 7, 2017 14:15
HotKeynet 2 players script
//================================================================
// SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file.
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You
// can change this if you want, just like you can change
// everything else with HotkeyNet.)
@jonathanargentiero
jonathanargentiero / server.js
Created January 25, 2017 14:38
Quick Node.JS static server
var connect = require('connect');
var serveStatic = require('serve-static');
connect().use(serveStatic(__dirname)).listen(8080, function(){
console.log('Server running on 8080...');
});
/** package.json
{
"name": "myApp",

The FIRST marathon program

The FIRST marathon program includes three running workouts per week—a speed workout, a tempo run, and a long run. Here’s the full, 16-week marathon training program. Participants are also encouraged to cross-train for 40 to 45 minutes on two other days per week.

Plan

Week Tuesday (speed) Thursday (tempo) Saturday (long)
1 8x400m 3 miles 10 miles
2 4x1200m 5 miles 12 miles
var SpeedTest = function(testImplement,testParams,repetitions) {
this.testImplement = testImplement;
this.testParams = testParams;
this.repetitions = repetitions || 10000;
this.average = 0;
};
SpeedTest.prototype = {
startTest: function() {
if (this.testImplement(this.testParams) === false) {
<?php
require 'vendor/mandrill/mandrill/src/Mandrill.php';
define('API_KEY', '123456789QWERTY');
define('TO_EMAIL', '[email protected]');
define('TO_NAME', 'Foo Bar');
if(!isset($_POST['mandrill_events'])) {
echo 'A mandrill error occurred: Invalid mandrill_events';