This file contains 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
local environments = [ 'prod', 'test', 'dev' ]; | |
local services = [ 'service1', 'service2', 'service3', 'service4' ]; | |
{ | |
environments: [ | |
{ | |
name: env, | |
services: [ | |
'https://%s.%s.example.com' % [service, env] | |
for service in services |
This file contains 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
private static void WebRequest( string serverAddress, string Nick, string Pass) | |
{ | |
string WEBSERVICE_URL = serverAddress; | |
try | |
{ | |
var webRequest = System.Net.WebRequest.Create(WEBSERVICE_URL); | |
if (webRequest != null) | |
{ | |
webRequest.Method = "GET"; | |
webRequest.Timeout = 1200; |
This file contains 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
' Insert this code in a excel vba module | |
Dim DownTime As Date | |
' Sets the timer for the spreadsheet | |
Sub SetTimer() | |
DownTime = Now + TimeValue("00:10:00") | |
Application.OnTime EarliestTime:=DownTime, _ | |
Procedure:="ShutDown", Schedule:=True | |
End Sub |
This file contains 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
50,70 | |
1,8,10 | |
2,17,10 | |
2,34,17 | |
3,35,16 | |
3,38,1 | |
4,5,6 | |
4,22,8 | |
4,25,3 | |
5,12,13 |
This file contains 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
4,6 | |
1,2,5 | |
1,3,8 | |
1,4,4 | |
2,3,8 | |
2,4,7 | |
3,4,1 |
This file contains 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
IRSSI | |
/network add -nick blake -user [email protected] -realname blake acs | |
/server add -auto -ssl -network acs wmu-acs.irc.slack.com 6667 YOURPASSWORD | |
WEECHAT | |
/server add acs wmu-acs.irc.slack.com/6667 -autoconnect -ssl -ssl_dhkey_size=512 -username=blakewrege -nicks=blake -password=YOURPASSWORD |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
#!/bin/bash | |
# Script: rssht (Reverse SSH Tunnel) | |
# Author: Khizer Naeem (khizernaeem(x)gmail.com) | |
# Created : 09 Sep 2012 | |
# Version: 1.04 | |
# Latest Revision: 10 Feb 2013 | |
# Tested on: Centos/RHEL 6, Centos/RHEL 5, | |
# Description: A bash script to maintain reverse ssh tunnel with remote port forwardings. | |
# URL: http://kxr.me/scripts/rssht_v1.03 | |
# |
This file contains 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
<!-- Change base dependent on system --> | |
<p id="test"></p> | |
<script> | |
function urlpath() { | |
var hosts = window.location.href; | |
if (hosts.indexOf("brp9209") > -1) { | |
var strLink = "https://cs.wmich.edu/~brp9209/CS3500/"; | |
} else if (hosts.indexOf("pmp2439") > -1) { | |
var strLink = "https://cs.wmich.edu/~pmp2439/CS3500/"; | |
} else { |
This file contains 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
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby | |
# This script installs to /usr/local only. To install elsewhere you can just | |
# untar https://github.com/Homebrew/homebrew/tarball/master anywhere you like or | |
# change the value of HOMEBREW_PREFIX. | |
HOMEBREW_PREFIX = '/usr/local' | |
HOMEBREW_CACHE = '/Library/Caches/Homebrew' | |
HOMEBREW_REPO = 'https://github.com/Homebrew/homebrew' | |
module Tty extend self | |
def blue; bold 34; end |
NewerOlder