

Nextcloud.
And a subsonic app. There is also another protocol available so you have quite the choice for which you prefer. Currently using Tempo.
Nextcloud.
And a subsonic app. There is also another protocol available so you have quite the choice for which you prefer. Currently using Tempo.
At least the internet crowd went :
Silksooooooooooong ! New images and half revealed date of “you will be able to play it on day one”. So either same launch day or a bit before. 2nd time (after the switch 2 trailer) that they mention silksong for this year. So maaaaybe ?
Oh by the way, why are the image shown at an angle? Is it really only to showcase the console? Whatever.
Yeah, I also read that they stopped the project of building an official Xbox handheld to focus on 3rd party hardware. Because otherwise the delay would make them not launch at the same time than the home console.
I would recommand to never copy paste but retype so you have the commands on your finger memory.
Also don’t be afraid to --help
everything. It give more option for commands you know quicker than the man
.
Yes. I talked about screenshots because the first message said:
I can’t see any screenshots from the article, all require a bluesky account. At least on twitter you could see images without login before the takeover.
For “text source only” I’m with you quotes are enough.
And if images are post anywhere, always provide an alt text, plz everyone !
I don’t say “remove the source”, I say “the source can disappear, the way back machine have already been attacked, just do your own copy of the source and make it available”.
I know screenshots can be faked, but if your news source does it it is not reliable. Drop it immediately.
Source can be destroyed. An alternative screenshoot backup/proof is good measure. Especially in web its better to not depend on an outside server.
Like if they close (or some billionaire buy them and requires an account for everything), your content becomes worthless.
Collecting the traces can cost some performance, but that is a small price to pay for the advantages and could even be turned off in production builds.
They clearly intend this post for developers.
But yeah I want my stacktraces… in my IDE/debugger where I can see them and jump the stack. Most of the time I just need the head, where the breakpoint (or crash) is.
They also complain about rust where you can RUST_BACKTRACE=1 <program>
. The default error tells you so !
I’m with the others: fd
default syntax is easier to remember.
And for the interactive search I’m using skim
. With it I cd
to the dir I want and Alt t
to trigger fuzzy finding. There are also bindings to search for dir or in the history. The neat part is that results are inserted as is in the command line, no need to xargs or copy them. It also make the history look like I always know where the files I want are when in reality they are just fuzzy-found
First time I hear about checked exceptions. How do you use them ? Are you forced to handle them explicitly ? Is the handling checked at compile time ?
- Is a modern language with a good build system (It’s like night and day compared to CMake)
Meson exists … as do others.
But they are not the default option. And your new job may not use them.
- And I just like how the language works (errors as values etc.)
Fair enough; though why? What’s wrong with exceptions?
Exceptions is a non standard exit point. And by “non standard” I’m not talking about the language but about its surprise appearance not specified in the prototype. Calling double foo();
you don’t know if you should try/catch it, against which exceptions, is it an internal function that may throw 10 level deep ?
By contrast fn foo() -> Result<f64, Error>
in rRst tell you the function may fail. You can inspect the error type if you want to handle it. But the true power of Result in Rust (and Option) is that you have a lot of ergonomic ways to handle the bad case and you are forced to plan for it so you cannot use a bad value thinking it’s good:
foo().unwrap()
panic in case of error (see also expect
)foo().unwrap_or_default()
to ignore the error and continue the happy path with 0.0foo().unwrap_or(13.37)
to use your defaultfoo()?
to return with the error and let the parent handle it, maybeI’m using helix with arrows. On a standard layout its not so great, but on my main keyboard I have a layer with arrow keys near hjkl. So I can use that on all software even on my BÉPO (DVORAC like) layout.
From the article’s own summary.
False Load Output Prediction and Speculative Load Address Prediction allow for data leaks without malware infection
But I guess “IA summary” did its best ¯\_(ツ)_/¯
Why should I use a sudo alternative?
-g
is not documented, what does it do?
Note: this made me discover topless (SFW) and its Caveat section.
From your example, I have a hard time inferring what is it doing.
--single-branch
neither strictly nor strictly typed.
I think one of them should be “strongly”, but I understood your point.
Thinking back, I don’t have the doc easily accessible (on phone), but I think the C API state the type you want to read. Like get_int(smt, VALUE_INDEX, …)
, so at least in the C API, most of this should not be visible. Maybe only the SELECT 1 = '1'
part (or others comparaison fully done in the SQL string)?
But they silently converted the string ‘1’ into the number 1. So now in my same code, I want to select back my stringy ‘1’ that I putted in the type affined INTEGER column.
And you are telling me its normal that I don’t get it back ? Or maybe I’m misunderstanding something?
From where are you downloading the app? I’ve read that either F-Droid reject Android-Auto because of binary blobs, or Google have some way of blocking non-approved builds (not from the playstore) in the car.
Edit: there is another Android-Auto thread.