Viewing profile — absove
absove
HN member- Joined
- Fri, Feb 03, 2017, 11:43 AM UTC
- HN karma
- 84
- Public activity
- 53 items
- HN profile
- View on Hacker News ↗
About absove
No profile information was provided.
Recent public activity
-
comment
Comment #44533537
In my experience everyone believes they're part of this 15% of travelers interested in the local culture and not one of those stupid NPC going through the motions so the distinctio…
-
comment
Comment #33032778
There's a new version of Head First Java that came out this year, I expect it's reasonably up to date wrt modern language features. I haven't read it personally but it's frequently…
-
comment
Comment #32909473
At a glance an iPhone seems like one of the worst general purpose computing device for the global poor so in this case it's maybe not that big of a deal.
-
comment
Comment #32897458
The blog author is a contributor to cats-effect, if you want to have a look at complicated and adhoc abstractions, look no further. One person's AbstractSingletonFactory is another…
-
comment
Comment #32897348
I'm pretty sure Quarkus tries to stick as close as possible to Java EE APIs with some limitations to accommodate the lack of runtime reflection, being Red Hat's answer to applicati…
-
comment
Comment #32895924
I have noticeable screen tearing on vertical monitors right now when scrolling and dragging windows on Fedora 36/Gnome 42/Xorg/nouveau. Glad to know this issue doesn't exist so I c…
-
comment
Comment #32834980
https://espace-niemeyer.fr/evenements/journees-europeennes-d...
-
comment
Comment #32638513
95% of users have no idea what Firefox for Android with ublock origin is
-
comment
Comment #32605346
I've been using Texmaker for the past 10 years for the few occasions I need to edit some LaTeX file. My needs are really basic so I'm not sure if I'm missing something compared to …
-
comment
Comment #32551074
A daruma.
-
comment
Comment #32148911
I've never used glassdoor myself, but don't you need to use your company email while leaving the review to prove you actually work there, so leaving an anonymous review isn't even …
-
comment
Comment #31917782
> Some banks tried to jump on the Java bandwagon when it was the hyped up thing of the moment and now many are going back to COBOL. What's wrong with Java that COBOL doesn't suffer…
-
comment
Comment #31917600
On ubuntu you open Software, search thunderbird, and click the install button. Or you open the terminal and type sudo apt-get install thunderbird. How come you were able to learn h…
-
comment
Comment #31821668
Why is it people with kids can handle a 2-3 hours long interview on-site + travel that probably required taking time off work but can't handle a 4 hours assignment that they can do…
-
comment
Comment #31736873
The latest additions to the standard library generally follow that approach: java.time, java.nio etc. But of course the older API are still fully mutable OO. A new collections API,…
-
comment
Comment #31422351
Which fedora version is this based on? It's supposed to be documented here https://docs.fedoraproject.org/en-US/quick-docs/fedora-and-r... but it hasn't been updated yet.
-
comment
Comment #30853314
Just had a look at your scala 3 extension, it's really nice. Does it support hot code reload like you would get in quarkus dev mode with java?
-
comment
Comment #30841846
Thanks this looks interesting, there is a youtube playlist with recordings of the lecture too https://www.youtube.com/playlist?list=PL1y1iaEtjSYiiSGVlL1cH...
-
comment
Comment #30441998
Isn't it the case that you can still work elsewhere in the meantime, just not for direct competitors? So you may get 70-80% of your previous salary working outside your more lucrat…
-
comment
Comment #30416402
I found the server code of the Signal messenger to be very readable https://github.com/signalapp/Signal-Server
-
comment
Comment #30358506
It's a GPL library, which is a copyleft license that actually predates the usage of the term "open source". Just because it's on npm/github doesn't mean you don't need to check the…
-
comment
Comment #30344481
Very naive question but is it different from what npm, pip, etc. let you do already? Does the app installed this way get more permissions coming from a signed installer? I'm not fa…
-
story
Ask HN: Learning resource for an overview of security for application developers
Is there a book out there, or any other type of resource (website, video series, online course...) about practical security for (web?) application developers, that is highly regard…
- story
-
comment
Comment #29564307
Not so much a nitpick because with checked exceptions your method signature can declare multiple types of exception whereas Result generalizes your specific exceptions to Throwable…