Skip to content

Instantly share code, notes, and snippets.

@damon140
damon140 / css-html-links.md
Created October 4, 2019 03:34
CSS and HTML Links
@damon140
damon140 / postgres_helpful_queries.sql
Last active November 29, 2018 07:14
Helpful PostgreSQL Queries
-- show running queries, oldest first (postgres 10.5)
SELECT pid, age(clock_timestamp(), query_start), usename, state, query
FROM pg_stat_activity
WHERE state != 'idle' AND query NOT ILIKE '%pg_stat_activity%'
ORDER BY age desc;