Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
arendjr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Zen: A distraction-free code editor based on Zed
(codeberg.org)
2 points
by
arendjr
4mo ago
|
3 comments
2.
▲
by
arendjr
4mo ago
Zen is simply a fork of Zed for those who are happy to use an IDE free from AI, telemetry, and other cloud-based services. I use it as my daily driver and intend to maintain it so that I can also use it as the base for some non-developer to
3.
▲
Biome Type Inference: A Look Behind the Scenes
(arendjr.nl)
2 points
by
arendjr
1y ago
|
1 comments
4.
▲
by
arendjr
1y ago
Biome is an integrated linter/formatter for JavaScript/TypeScript, CSS, HTML and GraphQL. We are now in the process of implementing TypeScript-like inference (not full type checking!) that allows us to enable type-informed lint ru
5.
▲
Biome partners with Vercel to improve type inference
(biomejs.dev)
4 points
by
arendjr
1y ago
|
1 comments
6.
▲
by
arendjr
1y ago
Biome is a formatter and linter for JavaScript, TypeScript and other web languages. With this partnership, we aim to develop TypeScript-compatible type inference that works out of the box for use in our lint rules.
7.
▲
by
arendjr
1y ago
Sorry, it’s an integrated linter and formatter for web developers.
8.
▲
Biome v2.0 Beta
(biomejs.dev)
6 points
by
arendjr
1y ago
|
3 comments
9.
▲
by
arendjr
1y ago
Biome lead here, so feel free to ask anything! Biome is an integrated linter and formatter with support for JavaScript, TypeScript, CSS, and more. Highlights of the release: * Plugins: You can write custom lint rules using GritQL. * Domains
10.
▲
New Monarchy: A Rethinking of the Values of Democracy
(arendjr.nl)
1 points
by
arendjr
2y ago
|
0 comments
11.
▲
by
arendjr
2y ago
Love it! Great quote and very on point. As for Heraclitus vs. Plato, I think the lesson I’m trying to teach is to not pick a side until you understand each position’s implications and which of those might be more beneficial to the problem a
12.
▲
by
arendjr
2y ago
xD In all seriousness though, you do hit a great point. The moment you stop being embarrassed about your mistakes and set your ego aside, is the moment that you can truly start learning from those same mistakes. At some point it even become
13.
▲
by
arendjr
2y ago
Thanks! I would just like to clarify I’m actually not opposed to OOP at all, and at several points I tell people it’s fine to go in that direction for the problems where you need it. I do try to warn against it as a go-to solution before yo
14.
▲
by
arendjr
2y ago
That’s useful feedback, thanks!
15.
▲
by
arendjr
2y ago
I like this one, thanks!
16.
▲
by
arendjr
2y ago
I actually have nothing against objects and methods, but that’s a very limited subset of OO. I prefer to use algebraic data types for domain modeling, and giving them methods is totally fine too. But I do prefer them to be immutable in most
17.
▲
by
arendjr
2y ago
The keyword to search for is algebraic data types, which are common in functional languages, but for instance Rust also has them. Here is an example comparing C# with F#, where the latter also algebraic data types: https://blog.p
18.
▲
by
arendjr
2y ago
Just know that if you do this, you’re injecting statefulness in the center of wherever it was this procedure was being used. If your entire system already has statefulness everywhere, nobody will bet an eye. But if you want to have any chan
19.
▲
Premature Abstraction
(arendjr.nl)
182 points
by
arendjr
2y ago
|
114 comments
20.
▲
Why I'm excited for Biome's type inference
(arendjr.nl)
2 points
by
arendjr
3y ago
|
0 comments
21.
▲
RFC: Biome Plugins
(github.com)
1 points
by
arendjr
3y ago
|
1 comments
22.
▲
by
arendjr
3y ago
Biome is a formatter and linter for the web, written in Rust. We’re currently asking for input for developing a plugin system, where the main contenders seem to be JS/TS (possibly through the use of Deno crates) and WASM.
23.
▲
by
arendjr
3y ago
Glad to see my contributions included in a public release =) https://biomejs.dev/blog/biome-v1 Congrats to the team, and wishing the project a healthy future!
24.
▲
by
arendjr
3y ago
From what I gather, a lot of Reddit usage comes from Google referrals, similar to how StackOverflow gets a lot of its traffic. If people leaving Reddit delete or scramble their comments (which some are definitely doing), they also screw up
25.
▲
by
arendjr
3y ago
This is mostly an advisory and inspirational tale on how to become a better programmer with a focus on delivering value. It’s primarily based on personal learnings, but I hope they resonate with others. Feel free to share your own thoughts
26.
▲
Ask HN: How do you do release management across repositories?
3 points
by
arendjr
3y ago
|
0 comments
27.
▲
by
arendjr
4y ago
At least Bash doesn’t have that hideous topic selector I would be sympathetic if it were purely `”Hello, World!” |> console.log`. I still wouldn’t use a pipe in such a trivial case, but at least it’s not really worse. But with the topic
28.
▲
by
arendjr
4y ago
Unlike pipe operators in functional languages, the Hack proposal is aimed at composition of expressions instead of functions . This makes the proposal extremely pervasive and unfocused, enabling people to write `a |> %[0]` instead of
29.
▲
by
arendjr
4y ago
The pipeline operator currently sits at Stage 2 as an ECMAScript proposal. Many people (including me) believe the current proposal is a harmful addition to the language, and it would be better to not have a pipeline operator than the curren
30.
▲
`no-pipe` ESLint rule
(github.com)
2 points
by
arendjr
4y ago
|
6 comments
More ›