Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
atoko
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
atoko
1y ago
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 types for these nested structures. Even with a typed jsx fu
2.
▲
by
atoko
1y ago
I’m working on the documentation, but I have a useful implementation of <GithubActions > JSX: https://github.com/levicape/fourtwo The best way to use template JSX is either with a CLI, or by using #! pragma to ou
3.
▲
by
atoko
1y ago
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 what you are describing compatible with this pattern? How does
4.
▲
by
atoko
1y ago
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 props three times over. Is it because each component is exp
5.
▲
by
atoko
2y ago
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 sure how you would track regressions if your tests are flake
6.
▲
by
atoko
5y ago
I would bet on the source probably being gitlab-ci configurations
7.
▲
by
atoko
5y ago
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 tooling.
8.
▲
by
atoko
7y ago
Probably Kaggle competitions
9.
▲
Reactive RunLength Encoding
(simonbasle.github.io)
1 points
by
atoko
7y ago
|
0 comments
10.
▲
Would you pay 100$ for a can of tomato sauce?
(giangonz.com)
2 points
by
atoko
7y ago
|
1 comments
11.
▲
by
atoko
7y ago
Spring Boot with Webflux and any rx supporting libraries you can get your hands on
12.
▲
by
atoko
7y ago
I believe we’re still trying to dig ourselves out of that particular hole since html days :)
13.
▲
by
atoko
8y ago
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, so that’s one less dependency. Not really sure where yo
14.
▲
by
atoko
8y ago
Then you end up with data fetches being tied to the rendering lifecycle in a way that makes modifying the mechanism painful
15.
▲
by
atoko
8y ago
It's single threaded. You can usually stick the context in the request object itself.
16.
▲
by
atoko
8y ago
I would vouch for IntelliJ. It's clean, customizable and nothing is hidden away
17.
▲
by
atoko
8y ago
I would appreciate better naming on the variables. Some of this is hard to read through with single letter names
18.
▲
by
atoko
8y ago
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, though.
19.
▲
by
atoko
8y ago
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 screen resolution. To anyone considering one, make sure
20.
▲
by
atoko
8y ago
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 are. Or, you could keep ploughing throug
21.
▲
by
atoko
8y ago
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 how it happened.
22.
▲
by
atoko
8y ago
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 event. If it is valid it gets appended to the log. This approa
23.
▲
by
atoko
8y ago
It's fun to throw "A house of dust"[0] generated poems at it. [0] https://nickm.com/memslam/a_house_of_dust.html
24.
▲
by
atoko
9y ago
You could set up a CI server that watches commits, and then commit to a branch, have it deploy automatically.
25.
▲
by
atoko
9y ago
For what it’s worth I agree with the person you’re replying to. The OP is saying: given two senior applicants with the same coding skill level, the one most suited to the job is the person who can communicate to juniors and delegate effecti
26.
▲
by
atoko
9y ago
You are supposed to modify and fit Agile into your specific process, not follow it dogmatically. It's literally the first thing on the manifesto: "Individuals and interactions over processes and tools". Change the process, or
27.
▲
by
atoko
9y ago
Exactly. The OP should learn the underlying technologies, instead of learning frameworks. They even admitted to not being willing to learn properly. At that point, how can you even make a fair comparison?
28.
▲
by
atoko
9y ago
Most software is moving data around. All the abstractions you mentioned have a purpose. It makes sense to test each in isolation. For example, a controller whos’ service is a mocked implementation. You can test that your controller and its
29.
▲
by
atoko
9y ago
I’m finding the wix style guide very useful, because it provides baytle tested components for atomic elements (buttons, dropdowns, checkboxes) without imposing an overreaching design on you. (But still provides layout components) https:&#x
30.
▲
by
atoko
9y ago
Your second choice is just coupling it again. I've only seen few frameworks that let you render both HTML and json (Ruby on Rails). You still have to map a model to HTML, regardless.
More ›