Viewing profile — netvl
netvl
HN member- Joined
- Fri, Mar 10, 2017, 10:48 AM UTC
- HN karma
- 20
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About netvl
No profile information was provided.
Recent public activity
-
comment
Comment #40859448
FWIW it's ladybird, not ladybug :)
-
comment
Comment #40677149
Yup - my correction is not very strong, I usually don’t wear glasses at all, and I was able to use Vision Pro without inserts just fine, but with inserts subjective sharpness is mu…
-
comment
Comment #40677123
Front display is very dim, and yes, it mostly turns on for interactions.
-
comment
Comment #40665980
Yes, almost every day. I spend approximately 60-70% of my time working with the headset on, connected to my MacBook. It’s actually better for me than my physical display because of…
-
comment
Comment #40103720
So this is a direct reimplementation of your example in Java - https://gist.github.com/netvl/32698cc97b88267fecee9b30f00d16... It is under 120 lines, uses Java SE API only, and the…
-
comment
Comment #40101429
> I suppose it would be much harder to do it without the transferTo function, No, it would not: public class Test { public static void main(String[] args) throws Exception { byte[]…
-
comment
Comment #40101389
Typo, yeah :( I don’t agree that it is true) I can try doing it later today, but I’m 100% sure that TCP example will look pretty much the same in Java, in terms of complexity. > Th…
-
comment
Comment #40100434
1 is really trivial and took me like 5 seconds to write: public class Test { public static void main(String[] args) { System.in.transferTo(System.out); } } 2 is anything but trivia…
-
comment
Comment #39552458
Interesting concepts, but dependency on Bazel is meh :( Also, there are some passionate statements about other languages: > As it's currently defined, there's nothing requiring the…
-
comment
Comment #39359971
It does not - my M3 continues to keep the speed if I override autopilot with the steering wheel. If I press the brakes, then both systems are shut down.
-
comment
Comment #38341647
After Java’s JSR-310 almost any other API in almost any other language looks broken or insufficient. Threeten’s modeling of different time types seems so powerful and natural - spe…
-
comment
Comment #37560048
I use one sim card for day-to-day life in the US, and another sim card from my home country to interact with digital services there, when needed.
-
comment
Comment #37264433
This is not true for Maven and overall the general Java ecosystem. Your own build may have arbitrary logic, true (this holds for Maven, Gradle, SBT - virtually any build tool for J…
-
comment
Comment #34350072
You’re right in that knowing pronouns is sufficient to determine grammatical gender of words to be used with relation to a character in Russian. Combining a particular gender of pr…
-
comment
Comment #32967827
The problem with SparkJava is that it is not maintained anymore :( according to GitHub, meaningful work on it last happened in 2020. It was indeed a great tool, but now I’d choose …
-
comment
Comment #29244233
The key benefit of the Kotlin DSL is that in this precise example, IDEA does suggest valid stuff: https://imgur.com/a/vFYNIU1 Kotlin DSL is miles ahead of Groovy in terms of discov…
-
comment
Comment #28985021
The whole point of a local date is that it is just a container for three values - year, month and day, and nothing more than that. You cannot go from `Instant` to `LocalDate` witho…
-
comment
Comment #27190014
#159 kind of works with the `string collect` mechanism, although it is indeed not very obvious, compared to bash: set file_contents (cat filename | string collect -N) I understand …
-
comment
Comment #27001523
Android apps are written in Kotlin, and Gradle config is also written in Kotlin. How come it is different from the JS situation? Even though Gradle can be configured in Groovy, and…
-
comment
Comment #25851824
While Gradle does have a lot of issues, some of the things you mentioned are not correct. > Don't forget you need a basic .properties file in META-INF that just gives out the plugi…
-
comment
Comment #16965462
This post, as far as I can see, does not mention scala-meta-based macros (project called scalamacros I think) at all. What happened with this direction of macros development? Was i…
-
comment
Comment #16369264
As far as my understanding goes, performing a .so injection at least on Linux systems is much easier: you just need to set up an LD_PRELOAD variable before running the program and …
-
comment
Comment #13837724
> I've never seen people using UTF-8 deal with a code unit stage. They parse directly from bytes to code points. Well, that's probably because in UTF-8 code unit is byte :) Quoting…