Skip to content

Instantly share code, notes, and snippets.

View ropable's full-sized avatar

Ashley Felton ropable

View GitHub Profile
@ropable
ropable / cloudflare-ddns-update.sh
Last active May 28, 2021 13:49 — forked from Tras2/cloudflare-ddns-update.sh
A bash script to update a Cloudflare DNS A record with the external IP of the source machine
#!/bin/bash
ZONE=domain.com
DNSRECORD=sub.domain.com
TOKEN=<token>
# Get the current external IP address
IP=$(curl -s -X GET https://checkip.amazonaws.com)
CURRENTDATE=`date`
@ropable
ropable / web-servers.md
Created January 22, 2020 04:30 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@ropable
ropable / postgres_queries_and_commands.sql
Last active March 21, 2017 01:40 — forked from rgreenjr/postgres_queries_and_commands.sql
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(query_start, clock_timestamp()), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(query_start, clock_timestamp()), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'