designed | 3 years ago | on: Show HN: Chrome extension to summarize blogs and articles using ChatGPT
designed's comments
designed | 3 years ago | on: Ask HN: What device do you use to read PDFs (papers and eBooks)?
I'm thinking of getting a second hand iPad for this very reason. I read a lot of articles on my phone, and have been wanting a bigger screen. I think a used tablet is the best bet. Remarkable looks nice but like you said is expensive for what it is.
designed | 3 years ago | on: How to build a program that cannot do the wrong thing
I would use a state machine in this case. The best tool for doing this in JavaScript/TypeScript is XState. Highly recommend.
page 2
> What does 'SSE' stand for in the following code sample: <pasted fetch-sse.js>
"In this code sample, 'SSE' likely stands for "Server-Sent Events". It is the name of the fetchSSE function and it is used to fetch data from a server using the Server-Sent Events protocol. This protocol allows a server to push data to a client in real-time, rather than requiring the client to continually poll the server for updates."
Not sure how accurate this is but it gave me enough information to look into it more!