Live data from Hacker News

Viewing profile — atlassubbed

atlassubbed

HN member
Joined
Sun, Apr 15, 2018, 7:40 AM UTC
HN karma
13
Public activity
8 items

About atlassubbed

https://github.com/atlassubbed https://twitter.com/atlassubbed

Recent public activity

  1. comment
    Comment #38650750

    Ah interesting, a trip down memory lane! I made something very similar 5 years ago: https://github.com/atlassubbed/atlas-relax . It was an attempt to build a "stronger" version of …

  2. comment
    Comment #25042853

    Topological sorting has many applications. I built this a couple years ago https://github.com/atlassubbed/atlas-relax . It's a DAG-computing framework in JS that allows you to list…

  3. comment
    Comment #19783316

    Error-boundaries in VDOM frameworks. If you have an asynchronous diff cycle, you might get multiple errors from more than one node in a single diff cycle. One option is to bubble u…

  4. comment
    Comment #19601752

    I found this pretty easy to do with ngraph.forcelayout[0]. I used it to build a basic VDOM-diff visualizing demo[1], which involved dynamically animating edge changes to a graph. I…

  5. comment
    Comment #19601725

    This is a funny coincidence. I stumbled upon this library just yesterday from the Big-O cheatsheet[0] site, but didn't think to post it here. Has anyone here done a detailed compar…

  6. comment
    Comment #19486913

    I've always liked Dan Abramov's posts. He is very real, if that makes sense. This one really helps me mentally. Showing new work the world is hard, and people will always have some…

  7. comment
    Comment #18512994

    I don't think any of my concerns were addressed. If I index a and its position changes in the child list, will the diff move the node (e.g. insertBefore) as opposed to unmounting/r…

  8. comment
    Comment #18488646

    Imba claims to use an "imperative, memoized DOM" as opposed to a VDOM. Apparently it looks like they still use a VDOM (i.e. a wrapper around the DOM). The difference is that, at co…