Live data from Hacker News

Viewing profile — vivekseth

vivekseth

HN member
Joined
Sun, Sep 07, 2014, 5:30 PM UTC
HN karma
509
Public activity
107 items

About vivekseth

Software Engineer

Blog: https://vivekseth.com

Twitter: https://twitter.com/viveks3th

Recent public activity

  1. comment
    Comment #35928004

    In case anyone is curious, this problem does not seem to be simple to solve using multiple messages like this: Message 1: I will send you a snippet of text. Please output a summary…

  2. comment
    Comment #35574607

    Yeah it has not been trivial so far! Let me know if you have any tips you can share

  3. comment
    Comment #35573770

    https://masala-joy.vercel.app/ I scraped ~100k recipes from across the internet, and made this site to focus on south asian recipes (~2k). I will soon add features to better sort a…

  4. comment
    Comment #24765047

    I would try to look for academic papers on the topic. Even if you can’t find an exact match, papers typically have a section that describes other related work. You can also scan th…

  5. story
  6. story
  7. comment
    Comment #24664694

    Maybe this would be a good start! https://github.com/ssloy/tinyrenderer It covers how graphics libraries like OpenGL go from triangles to screen coordinates, and how they "shade" p…

  8. story
  9. story
  10. story
  11. comment
    Comment #24466661

    Ah sorry, typo

  12. comment
    Comment #24466087

    There’s a little more nuance than that. Even if text is drawn using plaintext data there’s no guarantee that the characters/words appear in the correct order or have the proper whi…

  13. comment
    Comment #24465894

    India has only been independent since 1943.

  14. story
  15. comment
    Comment #24277861

    Another related conversation when this was discussed on The Morning Paper: https://news.ycombinator.com/item?id=19316737

  16. story
  17. comment
    Comment #24094117

    This is super cool! One suggestion I have is to try to optimize the arrangement of the cut-outs to use the paper more efficiently. In some cases I think up to 2x the cut-outs could…

  18. comment
    Comment #24075355

    Not mentioned in the article, but the author also built psychopg2 ( https://www.varrazzo.com/software/ )

  19. comment
    Comment #24050486

    I learned this concept by watching 3blue1brown's series on Linear Algebra: https://www.3blue1brown.com/essence-of-linear-algebra-page Would highly recommend. I feel like Grant's vi…

  20. story
  21. story
  22. story
  23. story
  24. comment
    Comment #23870767

    100% agree. I found this to be a good guide: https://developer.mozilla.org/en-US/docs/Web/CSS After spending a few hours reading up on topics I thought would be relevant, I find th…

  25. comment
    Comment #23805252

    For single server/database web-apps, CRDTs might be useful because they allow offline edits, and (to me at least) they are simple to understand and implement. OT does allow offline…