Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mre
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
mre
4mo ago
Author here. I use the term 'genuinely' too often, but that's just me. I do that when speaking here as well. Suffice to say that I'm not a native speaker, so that might have something to do with it. I will go over the te
2.
▲
by
mre
8mo ago
We use httpmock [1] for lychee, and it works quite well. Haven't looked too closely at the differences yet. [1] https://docs.rs/httpmock/latest/httpmock/
3.
▲
by
mre
8mo ago
https://archive.ph/wcArc
4.
▲
Base: SQLite Editor for macOS
(menial.co.uk)
2 points
by
mre
1y ago
|
0 comments
5.
▲
by
mre
1y ago
As a counterpoint, I quite enjoyed the writing style. Not everything has to be summarized. To me, it was more about the human experience.
6.
▲
by
mre
1y ago
My vote goes to .ws which redirects to a beer brand.
7.
▲
by
mre
1y ago
Recently watched Mickey 17 and it reminded me a bit of Idiocracy. Maybe someone is looking for related movies.
8.
▲
by
mre
1y ago
Fair point. Your wording was a bit strong, but I assume you meant well. I will update the article.
9.
▲
by
mre
1y ago
Author here; thanks! I had the same impression, which is why I started writing these short-form articles about idiomatic Rust. The blog post overview is here: https://corrode.dev/blog/
10.
▲
by
mre
1y ago
Do you mean `Arc<Mutex<T>>`? Yeah, I agree. Wrote a blog post on that topic as well: https://corrode.dev/blog/prototyping/ The title is a bit of a misnomer, but it's about beginner-friendly escape
11.
▲
by
mre
1y ago
The thing is, once you internalized the concepts (ownership, borrowing, lifetimes), it's very hard to remember what made it difficult in the first place. It's "curse of knowledge" in some sense. What's changed since
12.
▲
by
mre
1y ago
For people who don't get the reference, this might be referring to the notoriously gnarly task of implementing a doubly-linked lists in Rust [1] It is doable, just not as easy as in other languages because a production-grade linked-lis
13.
▲
Flattening Rust's Learning Curve
(corrode.dev)
4 points
by
mre
1y ago
|
0 comments
14.
▲
Peering into the Linux Kernel with Trace
(alexdowad.github.io)
78 points
by
mre
1y ago
|
3 comments
15.
▲
by
mre
1y ago
It's true that he no longer steers the project, but his first version shaped the internet as we use it today. At least one could how a modern version of a similar idea would look like. What has changed since then? Which issues should b
16.
▲
by
mre
1y ago
In my book that's not a guess, but a hypthesis, which is indeed a great way to narrow down the problem space. What I meant was to avoid blind guessing in the hope of striking luck, which comes back to haunt us most of the time.
17.
▲
by
mre
1y ago
The creator matters because they are the key to understand the reason was created in the first place and under which circumstances. You get to learn about their other work, which might also be relevant to you, the limitations of the tool ba
18.
▲
by
mre
1y ago
Author here. That's the answer. Or at least it used to be the answer when I still cared about analytics. Nowadays, friends send me a message when they find my stuff on social media, but I long stopped caring about karma points. This is
19.
▲
by
mre
1y ago
Author here. The site was down because I'm on Cloudflare's free plan, which gives me 100k requests/day. I couldn't care less if the site was up for HN, honestly, because traffic costs me money and caches work fine. FWIW,
20.
▲
by
mre
1y ago
Sorry, it's fixed now.
21.
▲
by
mre
1y ago
True, I should add the wrapping types. They are actually quite useful if you know that you have a fixed range of values and you can't go above the min/max. Like a volume dial that just would stay at "max" if you turn up
22.
▲
by
mre
1y ago
> However, their use is the exception, not the rule, and their use—in particular in combination—requires security expertise and investment that is not common. For them to provide real-world, large-scale improvements in the security outco
23.
▲
by
mre
2y ago
If you're looking for a Firefox fork, a couple of options come to mind: - Floorp ( https://floorp.app ) - Zen ( https://zen-browser.app ) - Mullvad Browser ( https://mullvad.net/browser ) - LibreWolf
24.
▲
Ad-Hoc Effects in Rust
(capi.hannobraun.com)
2 points
by
mre
2y ago
|
0 comments
25.
▲
by
mre
2y ago
Genuinely curious, what's wrong with that? Did you expect a different platform like Slack?
26.
▲
by
mre
2y ago
Exactly. I wrote an entire blog post about that: https://corrode.dev/blog/dont-use-preludes-and-globs/
27.
▲
by
mre
2y ago
Author here. That sums it up pretty well. I don't mind making quick decisions, but the execution should be deliberate. One of the best things of working for myself is that all-hands meetings are pretty short. I have an idea, I ask a fe
28.
▲
by
mre
2y ago
Author here; pleasantly surprised to see this on HN! This started off as a rant with a friend a few days ago. We both lamented the sorry state of the web, particularly web browsers. There's a monoculture that we both have trouble under
29.
▲
by
mre
2y ago
Author here. Thanks for posting. Just to clarify, there are some cases where globs make sense, e.g. for importing types in tests: struct Foo; struct Bar; mod tests { use super::*; } Apart from that, I use globs very rarel
30.
▲
by
mre
2y ago
Good question. I asked Jakub, and he said they don't currently use camera feed in their flight controller. The video feed is routed outside the flight controller through a telemetry module.
More ›