A SQLite extension for the crazy ones because everything could be a database
kruzenshtern.orgΒ·3hΒ·
Discuss: Hacker News
Flag this post

# A SQLite extension for the crazy ones who believe anything can be a database Pandora is a SQLite extension that turns APIs into virtual tables, mostly by ignoring best practices. It is a love letter to SQLite, HTTP, and bad ideas that compile cleanly. No SDKs. No Python. No Javascript. Just pure, vintage SQL chaos: ``` SELECT identifier, title FROM linear_issues WHERE team_key IN (β€˜MAD’, β€˜ETL’) AND priority <= 2 ORDER BY updated_at DESC LIMIT 1; +β€”β€”β€”β€”+—————————————————––+ | identifier | title | +β€”β€”β€”β€”+—————————————————––+ | MAD-5823 | Remove whitespace on the right due to missing nav bar | +β€”β€”β€”β€”+—————————————————––+ ``` ```…

Similar Posts

Loading similar posts...