Skip to content

Instantly share code, notes, and snippets.

View jimaldon's full-sized avatar
🤖

Jim Aldon D'Souza jimaldon

🤖
View GitHub Profile
@kristopolous
kristopolous / hn_seach.js
Last active July 24, 2023 04:12
hn job query search
// Usage:
// Copy and paste all of this into a debug console window of the "Who is Hiring?" comment thread
// then use as follows:
//
// query(term | [term, term, ...], term | [term, term, ...], ...)
//
// When arguments are in an array then that means an "or" and when they are seperate that means "and"
//
// Term is of the format:
// ((-)text/RegExp) ( '-' means negation )
@orendon
orendon / dyndns_crontab.sh
Created May 8, 2014 19:56
dyndns - update namecheap dynamic dns using crontab
# hourly
@hourly curl "https://dynamicdns.park-your-domain.com/update?host=HOST_NAME_HERE&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE&ip=`curl -s echoip.com`"
# every 30 min
0,30 * * * * curl "https://dynamicdns.park-your-domain.com/update?host=@&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE"
# ddclient (dns client alternative)
http://sourceforge.net/p/ddclient/wiki/Home/