I hereby claim:
- I am smithrobs on github.
- I am smithrobs (https://keybase.io/smithrobs) on keybase.
- I have a public key whose fingerprint is 3CF9 7735 3723 5ABD DD4E 6417 AC70 FBDB C87F A56E
To claim this, I am signing this object:
#substitute algorithm | |
# old: | |
#----------------- | |
require 'Date' | |
days = Date::ABBR_DAYNAMES | |
days.each do |day| | |
if (day == "Sun" || day == "Mon") | |
p "#{day} - Party time!" |
// callback used to validate the certificate in an SSL conversation | |
private static bool ValidateRemoteCertificate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors policyErrors) | |
{ | |
bool result = false; | |
if (cert.Subject.ToUpper().Contains("YourServerName")) | |
{ | |
result = true; | |
} | |
return result; |
var sOption = sDiv.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.id; | |
var sPanel = sDiv.parentNode.parentNode.parentNode.childNodes.item(1).childNodes.item(1).childNodes.item(0).childNodes.item(0); |
I hereby claim:
To claim this, I am signing this object:
Paul Snyder's Eldritch (http://store.steampowered.com/app/252630/) Tips:
var https = require('https') | |
,querystring = require('querystring') | |
,config = require('./config') | |
,client = require('scp2') | |
,fs = require('fs'); | |
var access_token; | |
var getImageLinks = (photoIds) => { | |
https.get('https://graph.facebook.com/' + photoIds[0] + '?fields=width,height,images&access_token=' + access_token, (res) => { |
#Requires AutoHotkey v2.0 | |
; open display settings | |
Send "#u" | |
if WinWait("Settings", ,5) | |
{ | |
Sleep 5000 | |
; set to lowest | |
Send "{Tab}{Tab}{Home}" | |
Sleep 1000 |