Viewing profile — vivekseth
vivekseth
HN member- Joined
- Sun, Sep 07, 2014, 5:30 PM UTC
- HN karma
- 509
- Public activity
- 107 items
- HN profile
- View on Hacker News ↗
About vivekseth
Blog: https://vivekseth.com
Twitter: https://twitter.com/viveks3th
Recent public activity
-
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…
-
comment
Comment #35574607
Yeah it has not been trivial so far! Let me know if you have any tips you can share
-
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…
-
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…
- story
- story
-
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…
- story
- story
- story
-
comment
Comment #24466661
Ah sorry, typo
-
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…
-
comment
Comment #24465894
India has only been independent since 1943.
- story
-
comment
Comment #24277861
Another related conversation when this was discussed on The Morning Paper: https://news.ycombinator.com/item?id=19316737
- story
-
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…
-
comment
Comment #24075355
Not mentioned in the article, but the author also built psychopg2 ( https://www.varrazzo.com/software/ )
-
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…
- story
- story
- story
- story
-
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…
-
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…