Viewing profile — majoe
majoe
HN member- Joined
- Tue, Mar 24, 2020, 7:20 AM UTC
- HN karma
- 278
- Public activity
- 102 items
- HN profile
- View on Hacker News ↗
About majoe
No profile information was provided.
Recent public activity
-
comment
Comment #49254178
> C++ is also surprisingly good, but you pretty much have to tell the LLMs to treat it like Go and don't use any of the dangerous features for normal code. For existing codebases I…
-
comment
Comment #49193412
I stumbled upon the very experimental nix-ninja [0] recently. They seem to create a dynamic nix derivation per compilation unit, which would be very similar to what you describe as…
-
comment
Comment #49073828
Your post sounds like there is some strange rule regarding taxation of solar installations, but it is (or rather was) just treated as any other income from commercial operation. - …
-
comment
Comment #47632903
Some thoughts on why I think this is wrong: If no one needs it during the day, they can't sell it. That's not how markets work. Energy that is generated, needs to be consumed or el…
-
comment
Comment #47576377
> I've seen some examples of C++ contracts replacing CRTP, but it used templates, which again, not a fan of. I think you meant concepts. C++ Concepts are the right answer in my opi…
-
comment
Comment #47563596
I recently read about Aptera, a company building a commercial solar car: https://aptera.us/first-vehicle-off-validation-line/ I think it is quite interesting, because it also tries…
-
comment
Comment #47563266
> Yes, that's drive me insane, west which is biggest advocator of climate change and preaches renewable energy has not done as much as a poor country like Pakistan has done. The "w…
-
comment
Comment #47488444
Had a self hosted nextcloud instance runnning on my homeserver, but migrated away two years ago to a Hetzner Storage share. All in all I'm quite happy with that. There are some dow…
-
comment
Comment #47090323
Probably true, but one unique thing about Julia is, that exposes almost all stages of the compilation to the user. From typed IR to native code generation you can customise the com…
-
comment
Comment #47027268
Nix devShells works quite well for Python development (don't know about JS) Nixpkgs is also quite up to date. I haven't looked back, since adopting Nix for my dev environments.
-
comment
Comment #46841482
I struggled with remote deployment + secret management, too. Like a lot of folks, my nix-config grew over the years as I added secrets management, user management etc ad hoc. I rec…
-
comment
Comment #46840921
Kartoffel is the standard German word. Erdäpfel is used in many dialects and has plenty of variants. Actually the various different words for potatoe and their distribution across …
-
comment
Comment #46756209
I tried different LLMs with various languages so far: Python, C++, Julia, Elixir and JavaScript. The SOTA models come do a great job for all of them, but if I had to rank the capab…
-
comment
Comment #46377564
> nowadays Element is actually on a more economically sustainable path Good to hear. Keep up the good work.
-
comment
Comment #46365823
That's not correct. For ordinary computers there is Landauer's principle, which gives a theoretical lower limit for the energy needed for computation [0]. I say "ordinary computers…
-
comment
Comment #46271420
I came to like auto over the years, although I also use it sparingly. Sometimes the concrete types only add visual noise and not much helpful information, e.g. iterators: auto it =…
-
comment
Comment #46198041
Damn, I always thought Fuchsia is just a colour, but today I learned - Fuchsia is a flower - which is named after a German botanist (Leonhart Fuchs) - Fuchsia in English is pronoun…
-
comment
Comment #45825785
> Thing is that you need a complex JIT like Julia's or stuff like https://github.com/marcoheisig/fast-generic-functions to offset the cost of constant dynamic dispatch. Julia is al…
-
comment
Comment #45792570
> V2G is a pipe dream. Seems a bit early to come to this conclusion, but I would also suspect, that the value of a parking garage full of EVs is not in providing energy to the grid…
-
comment
Comment #45788622
I went through a similar journey recently for the local development environment of my team. I couldn't figure out yet, whether there is a reasonable and safe way to authenticate at…
-
comment
Comment #45769149
Counterintuitively Julia recommends the use of immutable data types for performance reasons, because immutability enables more flexible compiler optimisations An immutable variable…
-
comment
Comment #45764483
> Most of Europe became rich under imperialist, authoritarian governments not with their current system Europe prospered under democratic governments after the second world war. My…
-
comment
Comment #45711183
This lead me done a rabbit hole on wikipedia: Advent calendars in their earliest forms were invented approx. 80 years ago. The four week advent period goes back to the 7th century …
-
comment
Comment #45581017
I was pleasantly surprised, that a recent update for plasma fixed the fingerprint reader for my thinkpad t15. It previously had an issue, where it didn't work after waking from sus…
-
comment
Comment #45402935
I disagree for Julia, but that probably depends on the definition of static typing. For the average Julia package I would guess, that most types are statically known at compile tim…