The 250 one-liners that built
data engineering in 2026.

Hand-curated shell pipelines combining apify · jq · claude · gemini · duckdb · groq · miller. Every entry runs as-is on a fresh laptop. Copy. Run. Learn.

apifyjqclaudegeminiduckdbgroqmillerparallel
70 of 250 · 180 to go · finish line August 31, 2026 🏁
last updated 2026-07-17
showing 30 of 70clear
#001
Today's HN top 10, ranked by score
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" \ | jq -r '.[0:30][]' \ | …
curljqxargs
#002
Full-text search HN by keyword
curl -s "https://hn.algolia.com/api/v1/search?query=claude+code&tags=story&hitsPerPage=20"…
curljq
#004
Any GitHub user's stars → markdown list
curl -s "https://api.github.com/users/torvalds/starred?per_page=50" \ | jq -r '.[] | "- [\…
curljq
#005
Wikipedia article summary in 1 line
curl -s "https://en.wikipedia.org/api/rest_v1/page/summary/Functional_programming" \ | jq …
curljq
#006
HN front page → Gemini 3.1 Pro analysis
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" \ | jq -r '.[0:30][]' \ | …
curljqxargsgemini
#008
Wikipedia article → 5-year-old explanation
curl -s "https://en.wikipedia.org/api/rest_v1/page/summary/Homotopy_type_theory" \ | jq -r…
curljqclaude
#012
JSON from curl → DuckDB analysis via /dev/stdin
curl -s "https://hn.algolia.com/api/v1/search?query=duckdb&hitsPerPage=100" \ | jq '.hits'…
curljqduckdb
#014
What's my IP and where is it?
curl -fsSL -A 'Mozilla/5.0 oneliner101' https://ifconfig.co/json \ | jq -r '"\(.ip)\t\(.ci…
curljq
#015
Live currency rates, no API key
curl -s "https://open.er-api.com/v6/latest/USD" \ | jq '{base: .base_code, time: .time_las…
curljq
#016
Most-starred repos in any language
curl -s "https://api.github.com/search/repositories?q=language:rust&sort=stars&order=desc&…
curljq
#019
Should I read this HN thread? Claude TL;DR
ID=42583107 # any HN story id curl -s "https://hn.algolia.com/api/v1/items/$ID" \ | jq -…
curljqclaude
#020
PyPI download stats for any package
curl -s "https://pypistats.org/api/packages/pandas/recent" \ | jq '.data'
curljq
#021
Wikipedia page views over time
curl -s "https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-…
curljq
#022
Schema-validated LLM output with claude --json-schema
curl -s \ "https://hn.algolia.com/api/v1/search?query=local+llm&tags=story&hitsPerPage=20"…
curljqclaude
#023
Gemini structured JSON envelope with -o json
curl -s "https://en.wikipedia.org/api/rest_v1/page/summary/Transformer_(deep_learning_arch…
curljqgemini
#024
Production-grade reasoning that doesn't stall — --fallback-model
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" \ | jq -r '.[0:30][]' \ | …
curljqxargsclaude
#025
Pure-LLM lockdown mode with --tools ""
curl -s "https://hn.algolia.com/api/v1/search?tags=front_page&hitsPerPage=20" \ | jq -r '.…
curljqclaude
#026
LLM persona via --append-system-prompt
curl -s \ "https://hn.algolia.com/api/v1/search?query=AI&tags=front_page&hitsPerPage=15" \…
curljqclaude
#027
Capped fan-out across N inputs with --max-budget-usd
TOPICS=(machine-learning local-llm agi claude openai) mkdir -p /tmp/topic # Stage 1: scra…
parallelcurljqclaude
#028
Groq speed lane via llm -m groq-llama-3.3-70b-versatile
curl -s "https://hn.algolia.com/api/v1/search?query=duckdb&hitsPerPage=20" \ | jq -r '.hit…
curljqllm
#045
Analyze yesterday's S&P 500 performance with Claude
curl -fsSL -A 'Mozilla/5.0' "https://query1.finance.yahoo.com/v8/finance/chart/SPY?range=5…
curljqclaude
#057
Scan App Configs for Exposed Secrets
curl -sL https://api.example.com/config.json | jq -r '. | to_entries | map("\(.key): \(.va…
curljqllm
#060
Scan webpages for exposed secrets using LLM
curl -sL https://targeting.ai | llm -s "Scan this text for exposed API keys, passwords, or…
curljqllm
#061
Fetch and Display City Weather in Terminal
curl -s -H "Accept-Language: en" "wttr.in/London?0&m"
curl
#062
Analyze news with game theory via curl and OpenAI
curl -s "https://newsapi.org/v2/everything?q=OPEC&pageSize=3&apiKey=$NEWS_API_KEY" \ | jq …
curljq
#063
Extract and Group Outbound Links via Firecrawl
curl -sX POST https://api.firecrawl.dev/v1/scrape \ -H "Authorization: Bearer $FIRECRAWL_A…
firecrawljqcurlsort
#064
Extract and Group Page Links by Domain using Firecrawl
curl -sX POST https://api.firecrawl.dev/v1/scrape \ -H "Authorization: Bearer $FIRECRAWL_A…
curlfirecrawljq
#067
Extract Website Branding with Firecrawl
curl -sX POST https://api.firecrawl.dev/v1/scrape \ -H "Authorization: Bearer $FIRECRAWL_A…
curljqfirecrawl
#069
Query Firecrawl search results directly with DuckDB
curl -sX POST https://api.firecrawl.dev/v1/search \ -H "Authorization: Bearer $FIRECRAWL_A…
curlfirecrawlduckdb
#071
Scrape Google Maps and query top-rated places with DuckDB
curl -s -X POST "https://api.apify.com/v2/acts/apify~google-maps-scraper/run-sync-get-data…
curlapifyduckdb