Skip to content

Instantly share code, notes, and snippets.

@merlinmann
merlinmann / usage I dislike.md
Last active September 26, 2025 21:22
An Epicenter of Wordsmithing…for the Enterprise.

Usage I Dislike


An Epicenter of Wordsmithing…for the Enterprise.


Words: Ugly, Dumb, or Overpriced

@baldwicc
baldwicc / decodeUrlDefensev3.js
Created January 22, 2020 03:57
Proofpoint urldefense.com URL Decoder (v3)
/**
* Decodes a Proofpoint urldefense.com (v3 format)
* Reference: https://help.proofpoint.com/@api/deki/files/177/URLDefenseDecode.py?revision=2
* @param {String} link typical format: 'https://urldefense.com/v3/__<encoded url>__;<replacement characters>!!<assorted click tracking goodness>$'
*/
function decodeUrlDefensev3(link) {
var matches = link.match(new RegExp('v3/__(.+?)__;(.*?)!'))
// love me a mutable array
var decode_pile = Array.from(matches[1]);