Viewing profile — Alexander-Barth
Alexander-Barth
HN member- Joined
- Sun, Aug 10, 2025, 3:45 PM UTC
- HN karma
- 27
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About Alexander-Barth
No profile information was provided.
Recent public activity
-
comment
Comment #49226232
I use the Eumetsat FCI (Flexible Combined Imager) full disc images on board of geostationary satellite MTG centered at 0 degree longitude. A single image (distributed as netcdf fil…
-
comment
Comment #48596557
I think this is quite similar to julia's handling of a struct. An array of mutable structs is just an array of pointers, where every pointer directs to the underlying structure. Ho…
-
comment
Comment #48568699
I did not know about EuroLLM. I had a look to the paper ( https://arxiv.org/abs/2602.05879 ) describing it: Specifically, we discard documents shorter than 200 characters (Xue et a…
-
comment
Comment #47193161
Are you using this code for Julia? https://github.com/JuliaParallel/rodinia/tree/master/julia_m... It was touched 9 years ago, but maybe you have ported it to current standards. I …
-
comment
Comment #46816987
For the datasets, I tried to access (like the full disc image in visible wavelength, MTG 0 degree), it is sufficient to register at eumetsat to get a username and password. The eum…
-
comment
Comment #46287406
I wish you all the best luck with your product! Unfortunately, mathworks is a quite litigious company. I guess you are aware of mathworks versus AccelerEyes (now makers of ArrayFir…
-
comment
Comment #46273238
I use the command line tool arduino-cli (with plain Makefile) to compile and upload the code (obviously usable in any editor). It has also a --verbose mode to show exactly what is …
-
comment
Comment #45427565
The incorrect example of julia's documentation was fixed 2021: https://github.com/JuliaLang/julia/commit/f31ef767ef9cb0eb1d... As an experiment, I would be interested to see if som…
-
comment
Comment #45138088
Actually in julia you can write kernels with a subset of the julia language: https://cuda.juliagpu.org/stable/tutorials/introduction/#Wri... With KernelAbstractions.jl you can actu…
-
comment
Comment #45138029
I guess that the interoperability with Python is a bit better. But on the other hand, the PythonCall.jl (allowing calling python from julia) is quite good and stable. In Julia, you…