Live data from Hacker News

Viewing profile — sindreaa

sindreaa

HN member
Joined
Tue, Aug 04, 2015, 8:54 AM UTC
HN karma
49
Public activity
16 items

About sindreaa

Developer of Imba. http://github.com/somebee

Recent public activity

  1. story
  2. comment
    Comment #10903044

    As you can see from inspecting the examples, any non-standard tag will use standard tags in the dom, with a class denoting their imba type.

  3. comment
    Comment #10901739

    React and Imba can both optimize using shouldComponenUpdate (in Imba you would add the same logic inside node#commit). Utilising shouldComponentUpdate (in React and Imba) requires …

  4. comment
    Comment #10901428

    Imba is still lacking when it comes to devtools, but it does have full support for source mapping, and the sublime text plugin includes inline error messages from the compiler.

  5. comment
    Comment #10864365

    Yes, more like LiveScript / CoffeeScript. I don't think apps written in Imba really need anything like Redux/Flux, nor any other framework for that matter, since the way you define…

  6. comment
    Comment #10864242

    It compiles to standard js, and it's entirely unproblematic to interoperate with any/all js libraries. I myself use Imba whenever I need to write something for web/node, even if it…

  7. comment
    Comment #10864190

    The benchmark where mithril was much faster is very flawed, see comments from creators of vue: http://vuejs.org/perf/ . Mithril was faster because it rendered asynchronously once e…

  8. comment
    Comment #10864023

    This is the new website for Imba. I'd love to get advice and constructive feedback regarding both the site itself, and the learning material.

  9. story
  10. comment
    Comment #10096277

    > Also, I'm not sure I agree with claim of readable output js: http://somebee.github.io/todomvc-render-benchmark/todomvc/im... . (look at tag.prototype.render). It's not exactly cl…

  11. comment
    Comment #10096156

    I now ran the benchmarks with the this['_' + i] change (which disables per-task caching, but does not really remove any/all caching alltogether. Imba is still 35x faster than react…

  12. comment
    Comment #10096044

    See comment: https://news.ycombinator.com/item?id=10095990 . Thanks for taking the time to looking through the benchmark. I think you are misinterpreting things. Yes we do caching,…

  13. comment
    Comment #10095990

    Hi there. This is utterly wrong, and if you had cared to read about what the benchmark is trying to achieve, you would understand ( https://github.com/somebee/todomvc-render-benchm…

  14. comment
    Comment #10095036

    Thanks for the feedback. What do you mean with global variables for class state? We do consider moving class-bodies inside an actual function (again) - but there is a virtual scope…

  15. comment
    Comment #10094685

    Yes, it can. Serverside rendering is still not very well tested, but it does work. I will create a simple example soon.

  16. comment
    Comment #10091808

    Hi. We actually do a different kind of diffing - which turns out to be substantially faster than React: http://somebee.github.io/todomvc-render-benchmark/index.html . The language …