HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jhd3

no profile record

Submissions

Steampipe SQLite – Virtual tables translated for common APIs

github.com
14 points·by jhd3·3 tahun yang lalu·1 comments

Living Papers: A Language Toolkit for Augmented Scholarly Communication

idl.cs.washington.edu
65 points·by jhd3·3 tahun yang lalu·12 comments

comments

jhd3
·7 bulan yang lalu·discuss
[The Baked Data architectural pattern](https://simonwillison.net/2021/Jul/28/baked-data/)
jhd3
·8 bulan yang lalu·discuss
Emery Berger's thoughts on the topic

How to Have Real-World Impact: Five “Easy” Pieces - https://emeryberger.medium.com/how-to-have-real-world-impact...
jhd3
·2 tahun yang lalu·discuss
And there is also the sequel by Michael Stonebraker and Andrew Pavlo - https://db.cs.cmu.edu/papers/2024/whatgoesaround-sigmodrec20...
jhd3
·3 tahun yang lalu·discuss
This plays really well with datasette:

grab https://github.com/turbot/steampipe-plugin-hackernews/releas...

  datasette --load-extension steampipe_sqlite_hackernews.so 
and then in your browser:

  select
    *, 'https://news.ycombinator.com/item?id=' || id as link
  from
    hackernews_item
  where
    id = 38713046;