Skip to content

Instantly share code, notes, and snippets.

@jpts
jpts / wired-adblock-veil-block.userscript.js
Last active September 11, 2016 14:03 — forked from requinix/wired-without-the-adblock-veil.userscript.js
UserScript: Wired with the adblock veil
// ==UserScript==
// @name Wired without the adblock veil
// @namespace http://gist.github.com/jpts
// @version 1.0
// @author requinix
// @author jpts
// @match *://www.wired.com/*
// @grant none
// ==/UserScript==
/* jshint -W097 */
@jpts
jpts / dns_update.sh
Last active April 10, 2017 15:11 — forked from yourbuddyconner/dns_update.sh
NameCheap Dynamic DNS Updater Script
#/bin/bash
Host_Name=host
Domain=example.com
Password="PASS_HASH_FROM_NAMECHEAP"
IP_Address=$(curl -s icanhazip.com)
url="https://dynamicdns.park-your-domain.com/update?host=$Host_Name&domain=$Domain&password=$Password"
result=$(curl -s --globoff $url)