Live data from Hacker News

Viewing profile — somebee

somebee

HN member
Joined
Tue, Jul 05, 2016, 5:25 PM UTC
HN karma
846
Public activity
61 items

About somebee

Creator of Imba. CTO at Scrimba (YC S20)

Recent public activity

  1. story
  2. comment
    Comment #43774789

    We are finalizing an electron app as we speak. That will allow recording anything that runs on your own system

  3. comment
    Comment #43771912

    Will try to push a fix in the next few hours. We are instantiating the monaco editor with a custom font (Source Code Pro) before we're sure the font has loaded, which throws of the…

  4. comment
    Comment #43771629

    Right now, only js is supported out of the box, but I guess any language that can run via web assembly or other techniques could work. WebContainers has experimental python support…

  5. story
    Show HN: Node.js video tutorials where you can edit and run the code

    Hey HN, I'm Sindre, CTO of Scrimba (YC S20). We originally launched Scrimba to make video learning more interactive for aspiring frontend developers. So instead of passively watchi…

  6. story
  7. story
  8. comment
    Comment #35369160

    In my experience the accuracy is at least a bit better than whisper-small on their enhanced models. But we've just started using it so haven't had time to do many direct comparison…

  9. comment
    Comment #35369107

    Did you try their enhanced models? We're using it for relatively high-quality audio files and their accuracy is better than the whisper small.en model. More importantly, their word…

  10. comment
    Comment #35367655

    We've been researching different speech models at Scrimba, and went for Whisper on our own infrastructure. A few days ago I stumbled onto Deepgram, which blows whisper out of the w…

  11. comment
    Comment #33769699

    Yes, I've also had this experience with React. I've created several imba apps with more complex UI than an average webstore and still rerender from root without even being close to…

  12. comment
    Comment #33769633

    Everything rerenders from the root of the editor (that is - not the syntax highlighting of the code itself - as that is handled by monaco).

  13. comment
    Comment #33447161

    The ltree extension is fantastic if you have data like comments or any other hierarchical structure.

  14. comment
    Comment #33447149

    The ltree extension ( https://www.postgresql.org/docs/current/ltree.html ) is perfect for this usecase.

  15. story
  16. comment
    Comment #30801072

    Brilliant! We're well on our way to migrating. The experience has been buttery smooth so far. And the codebase itself is really well organized. Huge thumbs up!

  17. comment
    Comment #30795371

    What a coincidence seeing this on HN. Great lib! I actually experimented with replacing our use of node-postgres with this today. Your lib was the reason I finally got around to sh…

  18. comment
    Comment #29509559

    I played through it myself and tbh I think the video doesn't do it justice. I haven't been this blown away in years. Until I got to take over the controls I was utterly convinced t…

  19. comment
    Comment #28218470

    Yeah, it's not really optimized for that. The floating labels over the code examples are offset in 3d space (for a subtle parallax effect while scrolling), so when HW acceleration …

  20. comment
    Comment #28209204

    I will try to add v2 to that benchmark relatively soon - it is a lot faster than v1 and has a much lower memory footprint and faster initial load time :) Should probably combine it…

  21. comment
    Comment #28209091

    Tbh, I think the js-framework-benchmark is flawed. It mostly tests the performance of the browser. I should write a whole blog post about this. Just as an example, all the table be…

  22. comment
    Comment #28209060

    You can typeset variables, parameters etc (ie. see the code in https://dev.to/somebee/global-type-augmentations-with-automa... ). But declaring standalone types is still done in `.…

  23. comment
    Comment #28208894

    Yeah, the typescript-imba-plugin does quite a lot of magic and might be a little rough to get into. We essentially do the type-checking by compiling the files to js with jsdoc anno…

  24. comment
    Comment #28208763

    Yes, there are plans for an imba course on scrimba! It is almost comical, but scrimba was originally created with the sole purpose of teaching people Imba. Here we are, 4 years lat…

  25. comment
    Comment #28208629

    There is built-in type-checking, but currently only via the tooling. It integrates with TS as a language service plugin ( https://github.com/Microsoft/TypeScript/wiki/Writing-a-Lan…