Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
slrz
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
10 ms
·
1.
▲
by
slrz
4y ago
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 line with usage elsewhere, no?
2.
▲
by
slrz
5y ago
I guess that basically everything you'd consider for production use allows you to configure queue sizes and related behaviour however you fancy.
3.
▲
by
slrz
5y ago
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 looked at the Git history and this is plain
4.
▲
by
slrz
5y ago
> 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 your shell and run `LC_ALL=C dat
5.
▲
by
slrz
5y ago
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 example: https://www.redhat.com/sysadmin&#
6.
▲
by
slrz
5y ago
This was never an intended feature. If I understand the article correctly, they were using an undocumented ("private") API which happened to stop working.
7.
▲
by
slrz
5y ago
You can always use sendmmsg(2), writev(2) or other iovec-based APIs.
8.
▲
by
slrz
5y ago
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 from the University of Minnesota would li
9.
▲
by
slrz
5y ago
Most common distributions turn it on when running on a device with UEFI Secure Boot enabled.
10.
▲
by
slrz
5y ago
So CentOS is actually getting better with a more open development model. Awesome.
11.
▲
by
slrz
5y ago
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 isolation (true at least for the Github-hosted ones,
12.
▲
by
slrz
5y ago
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 environments) and not at all specific to macOS. Referen
13.
▲
by
slrz
6y ago
It basically expects a string as the source and a fixed-size, not necessarily zero-terminated, buffer as the destination.
14.
▲
by
slrz
6y ago
> 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 Chrome-specific and more or less experimental interfaces?
15.
▲
by
slrz
6y ago
This is asking for a different thing, though. % taskset 1 nproc 1 % taskset 1 getconf _NPROCESSORS_ONLN 8
16.
▲
by
slrz
6y ago
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 other commonly-needed transformations that have an eve
17.
▲
by
slrz
6y ago
This one is an informational RFC though. No internet standard.
18.
▲
by
slrz
6y ago
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 small UDP header mostly for compatibility with existing inf
19.
▲
by
slrz
6y ago
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.
20.
▲
by
slrz
6y ago
Actually, it used to be called just that.
21.
▲
by
slrz
6y ago
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 getting rid of the clumsiness of proprietary synthesis too
22.
▲
by
slrz
6y ago
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 observe the same thing with many other ecosystems/platforms o
23.
▲
Gitlab Critical Security Release: 13.0.4, 12.10.9, 12.9.9
(about.gitlab.com)
3 points
by
slrz
6y ago
|
1 comments
24.
▲
by
slrz
6y ago
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 repositories. This issue is now mitigated in the latest release and
25.
▲
by
slrz
6y ago
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 prevented its roots from getting in
26.
▲
by
slrz
7y ago
How is Google's work-from-home policy nowadays? Does it differ between Europe and the US?
27.
▲
by
slrz
7y ago
ANSI C heavily mixed up the conversion rules for expressions involving both, signed and unsigned, integer types (value-preserving vs. unsigned-preserving in K&R C). This might have been a factor here, given that most of Gosling's p
28.
▲
by
slrz
7y ago
They have become a lot better at upstreaming their changes. Also note that the Zdnet headline seems bogus. Better look at the actual source[1] for their "news" which was posted to HN some time ago. [1] https://googlepro
29.
▲
by
slrz
7y ago
And yet, maps and slices are implemented in Go. https://golang.org/src/runtime/map.go https://golang.org/src/runtime/slice.go I don't see why you couldn't do something simila
30.
▲
by
slrz
7y ago
The SHA-2 checksums to verify packages against are delivered as part of the (signed) package index (as the article alludes to).
More ›