![](https://programming.dev/pictrs/image/c7e5e951-496d-429c-938e-e518eff2a9fc.jpeg)
![](https://programming.dev/pictrs/image/8140dda6-9512-4297-ac17-d303638c90a6.png)
I’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.
I’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?
Most of the time the fix is: put quotes around your strings (especially when they may contains globing patterns). Sometimes its using newer syntax available in bash but not on the snippet.
I only have to “quotes” strings that contains globs. The rest mostly work or use the newer/recommanded way to do things for posix shells.
But I must admit, I only use it interactively. For scripts I . I will use something else once it won some/most the distro preinstalls (either nu, elvish, fish, but for now it’s sadly python).
Thanks to valve/proton, the biggest issue for playing on linux nowadays is the kernel level anti-cheat they force on some competitive games.
Other than that most of the games just work, especially if they were made in a common engine (godot, unity, ue, …)
The only AAA I play are Nintendo ones (and RTS/MOBA since its a niche genre and you need a community for PvP). Since quite some times already. But I only look out for indies, I love getting new experiences and gameplay.
And even when the gameplay is not new, the attention to details (gameplay wise) is at 1000% only on indies (Celeste, Hollow knight, Factorio, …)
I think some peoples developped an allergy to projects being (re-)written in rust. Not sure why.
I don’t know elvish, but I can’t get into nu
. It is too different than what I learned (bash
). I’m not sure I understand what they want to accomplish… Maybe I’m not the target, I use the shell to start commands as a dev, not as a devops or data guy…
I also had a hard time using fish
the first time I tried it. But since the version on Debian 10 I re-tried and now the only thing to know is “put the arguments in quotes if you want the command to do globbing”. With that you can use 99% of the commands you find on internet as is.
I used Kresus some times ago on a server. It was nice, but my bank don’t play nice and it is not my thing to manage like that.
It should auto import and… I did not follow developments so don’t remember the functionalities.
I’m on Linux and a prebuit PC would be a nice change. But at the same price or lower than Windaube, since I don’t want a licence for them.
I will prefer to build myself rather than paying an extra k…
Apparently stow -t
exist too.
usage
should just be help
(avoid extra step)connect
does not exist (see add
and cmd list)git clone <REPO> <DEST FOLDER>
, no need to cd
maybeCreateDir
is not used each time, there are some mkdir
{MESSAGE:=change}
set -euxo pipefail
at the start of the script if you want to exit at any error. Some sort of bash strict models
’s outputI’m too lazy to open issues/PR for all that, and I still need to learn stow
. Hopfully this might help me ? (I don’t really need help with git
that this sçript look to abstract too much for me.)
Thanks. I think your message is not very clear at first (since I did not know about “nav mesh”). But reading Wikipedia is clear now. It also helped me find the official page (added the link in the post).
But they are not the default option. And your new job may not use them.
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 alsoexpect
)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, maybe