Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jbhoot
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
jbhoot
9mo ago
Andreessen's true colours have often flared up. I noticed it when India banned Facebook's Free Basics scheme. He had needlessly, without provocation, lashed out like a child who was denied an ice-cream cone. I will never forget hi
2.
▲
by
jbhoot
1y ago
Almost every Indian I know (including me) mixes at least two languages in their daily conversations seamlessly, that too within a sentence. Westerners may find that Indians talking among themselves in their native language(s) drop English w
3.
▲
by
jbhoot
1y ago
In my experience, at least some aspects of the Indian English exists because we Indians often mentally translate what we want to say from our native language (which are plentiful) to English before it comes out of our mouth. I don't im
4.
▲
by
jbhoot
1y ago
Not exactly Indian English, but my favourite English word with an Indian origin is Juggernaut. Its a morphed version of the name of an Indian deity – Jagannath. From https://en.wikipedia.org/wiki/Juggernaut : > A jug
5.
▲
by
jbhoot
1y ago
True. I use a few (oversmart) aliases for most frequently used git commands: alias gist='git status' alias stagit='git stage' alias gitcom='git commit' # also toying with comgit For the rest, I just
6.
▲
by
jbhoot
1y ago
Heh. For me, a British ambassador to Spain has all three of you beat (probably due to my frequent visits to gov.uk design system and nhs.uk).
7.
▲
by
jbhoot
2y ago
Yes! This so much! In my circles, I have seen a tendency to perceive fiction as a kind of low-brow, less intellectual reading. But then these people go on and pick up self-help non-fiction books. Fiction has so much more to offer! On top of
8.
▲
by
jbhoot
2y ago
Yep. I like to post my learnings, learning processes, distillation of life experiences. My only criterion is "This feels like a good blog post".
9.
▲
by
jbhoot
2y ago
After I publish a blog post, I sit back and look at the published post. At that point, I feel a lasting moment of fulfillment. Whether or not I get views on that post doesn't matter. I write for this feeling of fulfillment. I don'
10.
▲
by
jbhoot
2y ago
I think CharlieDigital's point is that a bad payload will fail right at the serialisation boundary in case of .NET. We know the problem right there. Now we only need to fix the bad payload. For TypeScript with only types and without va
11.
▲
by
jbhoot
2y ago
Makes sense. Thanks for the tip!
12.
▲
by
jbhoot
2y ago
Thank you! In my PoC ( https://github.com/jbhoot/poc-ocaml-logic-native-ui ) - a tiny hello world CLI on macOS, that has a Swift "frontend" and OCaml "backend" - I followed a similar model: - Both sid
13.
▲
by
jbhoot
2y ago
That makes sense. Do you keep the in-memory data in Racket data structures? I imagine keeping the data fed to Swift UI in sync with data maintained by GC'd Racket would involve some work. Have you used https://github.com
14.
▲
by
jbhoot
2y ago
> Database management > syncing with the backend server Do features like these, when implemented in Racket, consume more resources (battery, CPU, etc.) than if they were implemented using the native API equivalents (e.g., NSURLSession
15.
▲
by
jbhoot
2y ago
As the other commenter mentioned, its a mistranslation. I read string_of_int as "string out of int" to make it better.
16.
▲
by
jbhoot
2y ago
OP here. Thank you for posting this here, and for all the corrections. I have updated the post with them. My idea behind a mental model is to describe how I visualise a concept in my mind when I think about it. The level of abstraction of
17.
▲
by
jbhoot
2y ago
There is also "cp -P". My purpose for the I/O sub-section was only to have a convenient logic of memorising how I/O operations work on soft links by default. Memorising techniques don't really gun for technical accu
18.
▲
by
jbhoot
2y ago
Sorry about that! I hand-wrote the whole post on my tablet. More motivation for me to write more legibly next time!
19.
▲
by
jbhoot
2y ago
The marketing has kept changing. I have always found state management easier in React if I keep it out of React.
20.
▲
by
jbhoot
2y ago
> all data manipulation (∆) happens outside of React components, I do something similar. State and its management lives outside the React components, which only consume this state via hooks. Keeping the state in chunks, and outside the t
21.
▲
by
jbhoot
2y ago
`okcontract/cells` seems to be missing one of the two FRP primitives though: streams (of events). One of the best FRP environment for JavaScript is/was FlapJax: https://en.m.wikipedia.org/wiki/Flapjax , which