Live data from Hacker News

Viewing profile — seanlaff

seanlaff

HN member
Joined
Mon, Mar 04, 2019, 2:57 PM UTC
HN karma
102
Public activity
24 items

About seanlaff

No profile information was provided.

Recent public activity

  1. comment
    Comment #43515128

    The ramdisk that overflows to a real disk is a cool concept that I didn't previously consider. Is this just clever use of bcache? If you have any docs about how this was set up I'd…

  2. comment
    Comment #39172025

    Does duckdb support remote-duckdb as a storage engine? Seems like a way to support distributed duckdbs. Ducks all the way down? :)

  3. comment
    Comment #38729554

    Oh! I understand, thanks for walking through that. Yes very terse compared to the equivalent react :)

  4. comment
    Comment #38728690

    Ah ok! Very cool. Maybe I'm still missing a tiny piece of syntax? I don't see any output when I run that code in the fiddle https://jsfiddle.net/397fb684/

  5. comment
    Comment #38727144

    Would we expect the list to re-render once the fetch finishes? This may just be years of react poisoning my brain const Stargazers = () => { const stargazers = van.state([]); fetch…

  6. comment
    Comment #38725137

    Hmm, maybe! Is that the idiomatic way to do async? I was thinking something along the lines of this, which react devs will have written a variation of plenty of times :) import { u…

  7. comment
    Comment #38719597

    This is cool, though I think a table-stakes example that is missing is how to do a network request. I see the stargazers example but that entire component is awaited, which doesn't…

  8. comment
    Comment #36606003

    Ah yup, looks like @saurik pin-pointed my original source (iirc I slightly tweaked the jq, but you get the idea). Please do spread the idea- I would love capability native like thi…

  9. comment
    Comment #36604990

    Im surprised there's still no "trace" view of pipeline execution, especially with how prevalent DAG pipelines have become. Somewhere on the internet I found this handy jq oneliner …

  10. comment
    Comment #32501567

    Is there more behind the scenes than just the `timestamp | json` table? From what I understand, any query in clickhouse against that involving a filter would require a full table s…

  11. comment
    Comment #24238532

    Cities look so much more fun to explore when pedestrian-focused

  12. comment
    Comment #23769469

    Many outlets gloss over the n+1 query problem, but I find it to be a major shortcoming of the gql spec. Sure there are solutions, but they are not very ergonomic. In one of our pro…

  13. comment
    Comment #23648174

    I’ve been curling this for years but was not aware of the new v2 api that shows hourly ascii charts. Looks sweet!

  14. comment
    Comment #22741377

    Neat! How do you handle cross-geo latency? I know google has to rely on precise clocks to make this work in spanner

  15. comment
    Comment #22339359

    This depends on row-based binlog replication, correct? Has netflix had to deal with systems with statement-based replication?

  16. comment
    Comment #21209886

    Awesome!! It's been disheartening to see flotjs (which was essentially unmaintained for 5 years) still beat out scores of other charting libraries in terms of raw speed. Over the l…

  17. comment
    Comment #20361975

    In the reference implementations of GQL, that “one query” from the client balloons out in to possible hundreds of queries out the back side of GQL. Things like dataloader exist but…

  18. comment
    Comment #20270246

    ` If Query Batching is enabled, Apollo will not issue requests immediately. Instead it will wait for up to 10 ms to see if more requests come in from other components. ` This has a…

  19. comment
    Comment #20241557

    Evan I think this is a great experiment. React hooks was an interesting idea and I like how Vue’s approach feels even more reactive (a la observable.com) There seems to be an overa…

  20. comment
    Comment #20074607

    The v8 isolates tech is super cool. It seems the other major providers might not be leveraging it in their FaaS platforms- do you have a hypothesis of why?

  21. comment
    Comment #19323862

    I’d recommend taking a look at Vega https://vega.github.io/vega/ or its sibling Vega-lite. It exposes all of its configuration via declarative JSON. I could see it working well for…

  22. comment
    Comment #19305342

    This datasource doesn't require any custom panels to function. To your point though, it would be nice if grafana supported incremental time range querying out of the box, since man…

  23. comment
    Comment #19302461

    Agreed, watching dashboards is no substitute for alerting. However, one of the motivators for doing this is to reduce pressure on the metric backend. It's common to have Grafana re…

  24. story