Skip to content

Instantly share code, notes, and snippets.

View tyler-dane's full-sized avatar
🧭
Building a calendar for minimalists who value their time

Tyler Dane tyler-dane

🧭
Building a calendar for minimalists who value their time
View GitHub Profile
@riceball1
riceball1 / dana-bucket-list.md
Last active October 7, 2025 06:27
A bucket list for my 30s and 40s

Dana's 30s and 40s Bucket List

Pending

  • Have an empanada in Argentina
  • Scuba dive in the ocean
  • Eat a mango and/or samosa while looking at the Himalaya
  • Visit Dubai
  • Drink horse milk from a yurt in Central Asia
  • Eat tachin in Iran
@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active November 30, 2025 16:27
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active December 5, 2025 09:56
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), 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(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'