Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Nemo157
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
Nemo157
3y ago
But you are the second party, there is no third party involved when you use the software for yourself.
2.
▲
by
Nemo157
3y ago
You don't need to pay to have an organization, I just created a personal organization to hold my non-experimental source repos.
3.
▲
by
Nemo157
4y ago
Since unsoundness is a property of an interface, that private safe function would be unsound but could be used as part of the implementation details of a sound public API. It's not something I would do personally, and would be somethin
4.
▲
by
Nemo157
4y ago
Then your code calling `pre_exec` is unsound, it is calling into `foo1` which is not documented to be async-signal-safe. Without any documentation saying otherwise you can't assume a function can be called within weird contexts with no
5.
▲
by
Nemo157
4y ago
If you're improving the UI around here it would also be good to see how the list was determined. For automated detection in particular it seems like the tooling used also should be made public to allow testing. I know of at least one d
6.
▲
by
Nemo157
4y ago
The hash you have is computed from the hash of the content and other data. You would need to send that additional data out-of-band to allow the client to compute the overall hash and verify it. (Not to mention with urls like ipfs:/
7.
▲
by
Nemo157
4y ago
A long time ago Cloudflare was experimenting with support for E2E integrity via their public gateway: https://blog.cloudflare.com/e2e-integrity/ It looks like they've taken the FF addon down and archived the sourc
8.
▲
by
Nemo157
4y ago
JS being required for the interactive features would be fine. My personal problem is that I end up on some random gitlab instance to just take a look at the source or issues for some library, and get a blank white page. For the read-only pu
9.
▲
by
Nemo157
4y ago
Though IIRC from some bugginess I was noticing a while ago, only to the JS API, it will still obey the dark color scheme media query (but sometimes inconsistently, I would load the same page in multiple tabs and sometimes get dark or light
10.
▲
by
Nemo157
6y ago
> In most cases, it just blocks or hides cookie related pop-ups. This bit is actually the opposite. All tracking _must_ be opt-in, therefore by blocking the pop-up and not opting-in the website cannot track you. It's only for the we
11.
▲
by
Nemo157
6y ago
Just block them in your ad blocker, because they must be opt-in, by not interacting with them you are asserting your right to not be tracked.
12.
▲
by
Nemo157
6y ago
A good one-time-sign-in-link implementation will send a link to authenticate a session elsewhere, so you can click the link on your phone to complete login on the computer.
13.
▲
by
Nemo157
6y ago
JSON has the equivalent JSON Pointer described in RFC 6901 ( https://tools.ietf.org/html/rfc6901 ).
14.
▲
by
Nemo157
6y ago
IPv6 != static addresses. My IPv6 prefix changes at least once a day too.
15.
▲
by
Nemo157
6y ago
It would if it worked, but every time I've tried using it I've hit some combination of crashes and weird false positives.
16.
▲
by
Nemo157
6y ago
Yes, this is basically erasing type invariants by moving them into runtime code. Similar things have been done with things like GPIO pins in embedded code, having the pin numbers carried in the type (`struct Pin1;`) and being able to erase
17.
▲
by
Nemo157
6y ago
Wow, did not expect to see grarr mentioned on HN. I should mention that it's basically dead at this point, and IMO would need a full rewrite to resurrect (the web framework it's built on is unmaintained and has been superseded by
18.
▲
by
Nemo157
7y ago
The long term plan is to make assert! smart enough to recognise the assertion and provide good error messages based on its shape, maybe eventually deprecating assert_eq! etc.
19.
▲
by
Nemo157
7y ago
I have a feeling that's a bug. I have an app that I want to have background location and was asked twice soon after upgrading to iOS 13, then iOS was silent for about a month, then started popping up a prompt for it 2 or 3 times a day
20.
▲
by
Nemo157
7y ago
non_exhaustive only affects downstream code, within the crate you can still treat it exhaustively. For example in this playground[0] if you build in test mode the match works inside the crate, but fails in the doc-test because that is trea
21.
▲
by
Nemo157
7y ago
It's impossible to use the guarantees provided by the `Pin` type without `unsafe` code, except in `async fn`.
22.
▲
by
Nemo157
7y ago
The email address I use for Apple ID is not the same one my contacts would have.
23.
▲
by
Nemo157
7y ago
In your link there is a photo of what looks to me like a school hall that could very easily be a cropped and color changed version of a photo included in the OP (/vice-versa).
24.
▲
by
Nemo157
7y ago
And yet iOS calendar is also more powerful in that you can set different time zones on the start and end of a single event, which macOS calendar will show but not let you edit.
25.
▲
by
Nemo157
8y ago
It also supports a catch-all alias though.
26.
▲
by
Nemo157
8y ago
The standard separator for build metadata fields is a period, since the section is ignored for version comparison it doesn’t really matter, but the spec does specify it (and some tools may display separate fields differently).
27.
▲
by
Nemo157
8y ago
What cokml19 said, it’s all about minimising the work. This is just a normal Jekyll site hosted on github pages, but with just minimal css and js inlined into the page. There are actually a few more lines of js hidden around the place, e.g.
28.
▲
by
Nemo157
8y ago
The actual Future implementation comes from std, std::future::from_generator takes a generator with the right associated types and turns it into a future. Yep, the generator created by quote_encrypt_unquote is creating internal self-referen
29.
▲
by
Nemo157
8y ago
Tried to clarify this, it's not that C# and JS are implemented as CPS-like, rather that that's how they're commonly explained; and because of the GC this difference is not really externally visible, whereas with borrowing in
30.
▲
Inside Rust's Async Transform
(blag.nemo157.com)
203 points
by
Nemo157
8y ago
|
75 comments
More ›