Viewing profile — vbrandl
vbrandl
HN member- Joined
- Wed, Jul 05, 2017, 1:26 PM UTC
- HN karma
- 343
- Public activity
- 92 items
- HN profile
- View on Hacker News ↗
About vbrandl
No profile information was provided.
Recent public activity
-
comment
Comment #41138681
I would guess OSM uses optimizations for eucledian graphs, where the path a->c is always shorter than a->b->c. This restriction makes e.g. TSP solvable. But this property does not …
-
comment
Comment #37299908
There is a virus written in awk that infects other awk scripts[0]. And according to wikipedia, the language is Turing complete. [0]: https://github.com/SPTHvx/ezines/tree/main/dc5/…
-
comment
Comment #37036184
That's the point of EurKey. Special characters are the same as on the US layout with additional, language specific letters available. At least for writing English and German it has…
-
comment
Comment #36905416
Could you give some links or pointers (which city/building/year)? I know of the band but not that story.
-
comment
Comment #36532678
Sounds like a botnet with extra steps
-
comment
Comment #34578522
The linked paper is not my thesis but one of the foundational works, I based my thesis on. Mine can be found here: https://git.vbrandl.net/vbrandl/masterthesis/raw/branch/mast...
-
comment
Comment #34578210
PageRank and similar ranking algorithms on graphs can be used to detect monitoring attempts in P2P botnets [0] (a botmaster can detect when researchers/law enforcement start monito…
-
comment
Comment #34230616
Maybe I did not use it as intended, but I have an app running on fly.io that exposed the metrics endpoint on another port as the webapp itself, so it is not publicly reachable. Thi…
-
comment
Comment #32278184
Since I have no use for it, I like to globally (not just in vim) map caps to ESC.
-
comment
Comment #31712771
I also applaud their user-respecting design choices. E.g. if your browser sets the DNT (do not track) header, they won't show a cookie consent banner and just assume you selected "…
-
comment
Comment #31145089
Maybe cargo2nix? https://github.com/cargo2nix/cargo2nix
-
comment
Comment #30918833
In the end you could use nix to build docker/VM images and use the same, reproducible environment in prod/test/CI/dev/...
-
comment
Comment #30918058
One thing that differentiates nix from things like virtualenv is that each (package + version) tuple exists at most once in your local nix store and is then linked into your projec…
-
comment
Comment #30917809
If you are looking for a language agnostic version manager, the nix package manager [0] might be worth a try. In combination with lorri [1] you will be dropped into a shell with al…
-
comment
Comment #30896998
Private feedback via email is always possible and you can chose to publish specific feedback you deem important. It's the same for printed literature. There is no comment section i…
-
comment
Comment #30720704
I learned typing on German QWERTZ, too. I started using eurkey [0] a few years ago. For me it hits the sweet spot between good position of special characters used for programming (…
-
comment
Comment #30633230
Fear and Loathing in Las Vegas, by Hunter Thompson if anyone is wondering
-
comment
Comment #30025316
Maybe by releasing often (every 6 weeks or out of band for bug fixes like this), they make it easier to use a current version of the compiler, in comparison to the old Java release…
-
comment
Comment #29977643
If the vessel was started at day, the earth was also pushed away from the sun
-
comment
Comment #29793272
~I'm not sure about the semantics, but the type would allow that, yes.~ Edit: fn scatter(&self, ray: &Ray, hit_record: &HitRecord) -> Option , Srgb)> The function takes a `Ray` as …
-
comment
Comment #29793047
Option , Srgb)> can be one of - None - Some((None, Srgb)) - Some((Some(Ray), Srgb)) Only the last one is equivalent to the struct you described
-
comment
Comment #29259748
Here is a small back of the envelope calculation. Websters dictionary includes 470.000 words [0]. 52 lower and uppercase letters + 10 digits + ~20 special chars = 82 possibilities.…
-
comment
Comment #27949604
I think that's intentional and meant as an example of the issue at hand.
-
comment
Comment #27826533
FYI: > a meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular …
-
comment
Comment #27540623
Best would actually be #!/usr/bin/env sh Since this binary is required by the POSIX standard to exist at that location.