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
; Exposes two hotkeys: | |
; - Win+G generates & pastes a new lowercase psuedo guid | |
; - Win+Shift+G generates & pastes a new UPPERCASE psuedo guid | |
; In both cases, the psuedo guid is left on the clipboard so you can easily paste it more than once. | |
; NOTE: this is technically not a GUID as defined by RFC 9562 since it does not attempt to use the | |
; recommended algorithms and no timestamp is embedded. It is only a 128 bit random number formatted | |
; as 32 hex values in the 8-4-4-4-12 GUID format. | |
; Win+G - Generate and paste a psuedo GUID | |
#g:: |
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
# calculate IP address range from CIDR notation | |
# https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing | |
function cidrToIpRange { | |
param ( | |
[string] $cidrNotation | |
) | |
$addr, $maskLength = $cidrNotation -split '/' | |
[int]$maskLen = 0 |
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
var Mutex = function() { | |
var queues = []; | |
var locked = false; | |
this.isLocked = function() { | |
return locked; | |
}; | |
// It was about this point where I realized I didn't really want a mutex. I wanted a lock check...... | |
this.push = function(callback) { | |
var self = this; |
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
# Rotates a vertical set similar to an Excel PivotTable | |
# | |
# Given $data in the format: | |
# | |
# Category Activity Duration | |
# ------------ ------------ -------- | |
# Management Email 1 | |
# Management Slides 4 | |
# Project A Email 2 | |
# Project A Research 1 |