Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
vivekseth
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
vivekseth
3y ago
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 of this text and nothing else. Message 2: <The Text>
2.
▲
by
vivekseth
3y ago
Yeah it has not been trivial so far! Let me know if you have any tips you can share
3.
▲
by
vivekseth
3y ago
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 and filter these recipes by various diets, i
4.
▲
by
vivekseth
6y ago
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 through the citations to see if anything might be a match. If
5.
▲
Ask HN: How do you invest your money?
17 points
by
vivekseth
6y ago
|
26 comments
6.
▲
Learn Computer Graphics Using WebGL
(learnwebgl.brown37.net)
3 points
by
vivekseth
6y ago
|
0 comments
7.
▲
by
vivekseth
6y ago
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" pixels in those triangles to
8.
▲
Improving your writing through editing (2000)
(its.caltech.edu)
5 points
by
vivekseth
6y ago
|
0 comments
9.
▲
Writing a book: is it worth it?
(martin.kleppmann.com)
642 points
by
vivekseth
6y ago
|
287 comments
10.
▲
Swift Calling Conventions on ARM64: Float / Double
(vivekseth.com)
2 points
by
vivekseth
6y ago
|
0 comments
11.
▲
by
vivekseth
6y ago
Ah sorry, typo
12.
▲
by
vivekseth
6y ago
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 white space between them.
13.
▲
by
vivekseth
6y ago
India has only been independent since 1943.
14.
▲
How I sped up a visualization using graph theory, vector processing framework
(vivekseth.com)
5 points
by
vivekseth
6y ago
|
0 comments
15.
▲
by
vivekseth
6y ago
Another related conversation when this was discussed on The Morning Paper: https://news.ycombinator.com/item?id=19316737
16.
▲
Swift Calling Conventions on ARM64: Int / Bool
(vivekseth.com)
1 points
by
vivekseth
6y ago
|
0 comments
17.
▲
by
vivekseth
6y ago
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 fit on a page. You may also want to consider trying to arra
18.
▲
by
vivekseth
6y ago
Not mentioned in the article, but the author also built psychopg2 ( https://www.varrazzo.com/software/ )
19.
▲
by
vivekseth
6y ago
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 videos gave me a better understandi
20.
▲
Pawel Szulc – Formal verification applied (with TLA+)
(youtube.com)
2 points
by
vivekseth
6y ago
|
0 comments
21.
▲
TEDxCaltech – Tony Hey – Feynman and Computation
(youtube.com)
2 points
by
vivekseth
6y ago
|
0 comments
22.
▲
Introduction to parsing Swift code with the SwiftSyntax Library
(vivekseth.com)
1 points
by
vivekseth
6y ago
|
0 comments
23.
▲
Setting up a custom 404 page with Caddy v2
(vivekseth.com)
2 points
by
vivekseth
6y ago
|
0 comments
24.
▲
by
vivekseth
6y ago
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 that I am significantly more p
25.
▲
by
vivekseth
6y ago
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 edits too, but (I think) has poor performance if there
26.
▲
by
vivekseth
6y ago
You don't actually need to keep a log of all events. You only need to keep around just enough information to merge any 2 replicas. Here's a very simple example: If there are only 5 users concurrently editing a document and each us
27.
▲
Ask HN: How often do you read academic papers?
1 points
by
vivekseth
6y ago
|
1 comments
28.
▲
by
vivekseth
6y ago
If I'm remembering correctly (this was from 3 years ago), the string was moved to a different section if it had a null byte in the middle of the string. That's why coming up with the assembly I used was kinda tricky. Here's t
29.
▲
by
vivekseth
6y ago
clang seems to work this way, and macOS aliases gcc -> clang by default. Wrote more about this here: https://news.ycombinator.com/item?id=23634495
30.
▲
by
vivekseth
6y ago
On macOS, "gcc" puts strings that don't include a null byte in the TEXT section. I put quotes around gcc, since it seems that by default macOS aliases gcc to clang. You can run the program I built here to see for your self:
More ›