Viewing profile — slrz
slrz
HN member- Joined
- Sun, Jun 14, 2015, 1:17 PM UTC
- HN karma
- 455
- Public activity
- 385 items
- HN profile
- View on Hacker News ↗
About slrz
No profile information was provided.
Recent public activity
-
comment
Comment #30859240
What is it that Go supposedly calls casting? The term (or its variations) does not show up in the language specification. People sometimes use it for type conversions but that's in…
-
comment
Comment #30601915
I guess that basically everything you'd consider for production use allows you to configure queue sizes and related behaviour however you fancy.
-
comment
Comment #30561040
For example, debug/pe ImportedLibraries(), which is supposed to return all the libraries that a module imports, was stubbed out to return "nil, nil" in a minor release [1] I just l…
-
comment
Comment #30321702
> google's 'reference' layout Nothing to do with Google here, by the way. It's just the default format of the Unix date command. So if you can't remember the order, just switch to …
-
comment
Comment #28691458
No longer true. Podman nowadays ships with an optional daemon that serves a Docker-compatible interface, so you can use docker-compose directly if that's what you want. See for exa…
-
comment
Comment #28022418
This was never an intended feature. If I understand the article correctly, they were using an undocumented ("private") API which happened to stop working.
-
comment
Comment #27315904
You can always use sendmmsg(2), writev(2) or other iovec-based APIs.
-
comment
Comment #26890546
I don't like it either but it's not as bad as it sounds: the ban almost certainly isn't enforced mindlessly and with no recourse for the affected. I'm pretty sure that if someone f…
-
comment
Comment #26771747
Most common distributions turn it on when running on a device with UEFI Secure Boot enabled.
-
comment
Comment #26771654
So CentOS is actually getting better with a more open development model. Awesome.
-
comment
Comment #26683874
Getting a hold of someone's secrets is not possible just by doing a pull request. It's really only about resource usage, at least when the runners in question provide sufficient is…
-
comment
Comment #26678124
I don't think this is doing any HTTP. Autofs is generally used to mount remote file systems like NFS shares. It's pretty common on Unix-like systems (especially in multi-user envir…
-
comment
Comment #26366860
It basically expects a string as the source and a fixed-size, not necessarily zero-terminated, buffer as the destination.
-
comment
Comment #25804381
> As a website owner myself, I’ve had to make changes about once a year to keep things running properly in Chrome due to deprecated APIs Does this refer to standard Web APIs or Chr…
-
comment
Comment #25225490
This is asking for a different thing, though. % taskset 1 nproc 1 % taskset 1 getconf _NPROCESSORS_ONLN 8
-
comment
Comment #25022116
Seems reasonable to me: this way, you don't have to duplicate the BOM stripping in the decoders of every single format you want to support. It's also more general as there are othe…
-
comment
Comment #24893196
This one is an informational RFC though. No internet standard.
-
comment
Comment #24723228
No. QUIC is a transport protocol. Its purpose is roughly equivalent to TCP: provide a reliable byte stream transport over an unreliable datagram service (IP, though QUIC prepends a…
-
comment
Comment #24607728
Not libc. The stack probe was inserted by the compiler when compiling the vDSO (part of the kernel, but mapped into user processes) with certain ricer^Whardening flags enabled.
-
comment
Comment #24526892
Actually, it used to be called just that.
-
comment
Comment #24488384
Even for moderately complex designs the synthesis times are way too long for that to be feasible. Unfortunately, a lot of it is inherent to the problems/algorithms involved. So get…
-
comment
Comment #24487133
I find it somewhat odd that Peter ascribes the valuing of stability and backwards compat to some weird Google-specific mindset, unheard of in other circles. Instead, you can observ…
-
comment
Comment #23410473
Any guesses on how to interpret the description? > An authorization issue discovered in the CI jobs token handling allowed read access to public projects with restricted repositori…
- story
-
comment
Comment #22912052
I'd be more optimistic if you had included a note that you know the history of CAcert ( https://en.wikipedia.org/wiki/CAcert.org ) and have a plan on how to tackle the issues that …