Viewing profile — atoko
atoko
HN member- Joined
- Wed, Jul 30, 2014, 6:37 PM UTC
- HN karma
- 124
- Public activity
- 82 items
- HN profile
- View on Hacker News ↗
About atoko
Recent public activity
-
comment
Comment #43950015
Hello! One of the main challenges of figuring a JSX syntax out is what to do about the “children” prop. Experientially, typescript still has a bit of trouble figuring out the right…
-
comment
Comment #43949964
I’m working on the documentation, but I have a useful implementation of JSX: https://github.com/levicape/fourtwo The best way to use template JSX is either with a CLI, or by using …
-
comment
Comment #43930767
Thanks! More concisely: it’s not always the case that prop drilling is possible within a component hierarchy. In a more involved application you store this object in context. Is wh…
-
comment
Comment #43930225
I wonder if the omission of React Context in this example is intentional. Do you think Context is compatible with suspense? In the sense that posts is being passed to components as…
-
comment
Comment #42805282
From what I can tell, this change was merged and released without a passing build. Indicating that the project’s quality assurance process is little more than lip service. I’m not …
-
comment
Comment #29021635
I would bet on the source probably being gitlab-ci configurations
-
comment
Comment #29002816
Are there any plans to address Bazel compatibility? I understand that the Next philosophy is very monolithic but so far I’m having trouble getting it to play nice with build toolin…
- story
-
comment
Comment #21326028
Probably Kaggle competitions
- story
- story
-
comment
Comment #19881590
Spring Boot with Webflux and any rx supporting libraries you can get your hands on
-
comment
Comment #19658093
I believe we’re still trying to dig ourselves out of that particular hole since html days :)
-
comment
Comment #19379931
How is it slow? [Citation needed] The async model is easy to use so you get good performance before even optimize it. It comes out of the box with good json serialization/parsing, …
-
comment
Comment #19330878
Then you end up with data fetches being tied to the rendering lifecycle in a way that makes modifying the mechanism painful
-
comment
Comment #19311071
It's single threaded. You can usually stick the context in the request object itself.
-
comment
Comment #19272076
I would vouch for IntelliJ. It's clean, customizable and nothing is hidden away
-
comment
Comment #19268189
I would appreciate better naming on the variables. Some of this is hard to read through with single letter names
-
comment
Comment #19232219
It’s probably rendering what would be “front page” given the same data but with today’s engine. It would be interesting to see how everything is being cached for a particular day, …
-
comment
Comment #19145887
It's not the sharpness but the incredible amount of real estate you have. I can have documentation, a preview window and the code open at the same time in what would be their full …
-
comment
Comment #18708287
This seems like a good example of what the OP is preaching: Learn the box model[0], and you won't have to 'fiddle' anymore, you'll know why your elements are arranged the way they …
-
comment
Comment #18707596
A transaction log is too detailed and specific. Typically an event log lists actions from the business domain rather than what got affected. It should explain what happened, not ho…
-
comment
Comment #18378981
This. It makes Implementing CQRS in a single service really easy. GETs load the event log, replay and display the results while POSTs send a command that gets translated into an ev…
-
comment
Comment #17808907
It's fun to throw "A house of dust"[0] generated poems at it. [0] https://nickm.com/memslam/a_house_of_dust.html
-
comment
Comment #16584691
You could set up a CI server that watches commits, and then commit to a branch, have it deploy automatically.