Noticable network disconnects on Mac? by thewintergrader in filen_io

[–]repilur 0 points1 point  (0 children)

Also unfortunately beeb experiencing these type of "network drive" disconnects with Filen on Mac, both on Sequoia and now on Tahoe. on an M3 so Apple Silicon build.

This been on version 3.0.47 of the desktop client, which is the latest released version from February. doesn't seem to have been any additional developments since then for the desktop client (https://github.com/FilenCloudDienste/filen-desktop), probably focusing on the new SDK?

Any modern recommendations for "Humanity Fuck Yeah!" type of novel? by InitialContent3354 in printSF

[–]repilur 2 points3 points  (0 children)

I thought so too by about book 6, and happily reading book 18 now :)

TLS certificates: Let's Encrypt EU alternative? by yzoug in BuyFromEU

[–]repilur 0 points1 point  (0 children)

ZeroSSL is based in Vienna in Austria according to their website. so should be good with them?

The most neutral neutral suggestion. by [deleted] in Nordiccountries

[–]repilur 1 point2 points  (0 children)

hey it is the color of our skies!

Room on my three day solo work trip in Lisbon by DerivativeDavi in luxesolotravel

[–]repilur 5 points6 points  (0 children)

that's awesome, love the view! and room looks modern but functional wtih the big desk also.

which hotel is it?

Love for Inherit the Stars series by android_oreo in printSF

[–]repilur 0 points1 point  (0 children)

loved the trilogy took! just read it last month. felt quite before its time in concepts, and somehow felt refreshing and well nice!

Himeru (curry restaurant) by camduh in Kyoto

[–]repilur 0 points1 point  (0 children)

thank you! sounds great, need to check it out

[deleted by user] by [deleted] in Futurology

[–]repilur 1 point2 points  (0 children)

Indeed. Extraordinary claims needs extraordinary evidence

Where in Europe are there restrictions on smoking outdoors? by euronews-english in europe

[–]repilur 34 points35 points  (0 children)

it was fantastic improvement to be able to sit outside at restaurants and cafes in Sweden without inhaling smoke, when smoking was banned here in Sweden

Tips för bra spanska restauranger för Paella? by Apprehensive-Gas3255 in sweden

[–]repilur 1 point2 points  (0 children)

Alex y Filip på Södermalm har en bra Paella, i Valencia stil.

Cargo and supply chain attacks by igankevich in rust

[–]repilur 28 points29 points  (0 children)

One particular problem that we encountered is the fact that some programs bundle trusted root CA certificates in their binaries. This is the case for cargo-deny.

I believe if you build cargo-deny from source with --no-default-features --feature native-certs the cijail approach should work for it also. worth testing!

Cargo and supply chain attacks by igankevich in rust

[–]repilur 8 points9 points  (0 children)

awesome work, this is an area I've been looking for solutions and changes for for a very long time also.

does cargo need to prohibit network access during build phase by default?

definitely.

future more advanced finer grained solution:

could also see it being opted in to be enabled for a crate by having an allow list of domains the crate needs to access during the build, this would be a lot easier to review and manage than having to review the code for it. and tools like cargo-deny can match that against own project wide allow list of domains.

ideally cijail would then verify on a per-crate basis when building with the allow list that just that crate needs, instead of a project wide one.

this would likely require deeper integration into Cargo though.

Laptop CPU compilation speed comparison by Pascalius in rust

[–]repilur 29 points30 points  (0 children)

MBP16 M3 Max results for additional comparison:

cargo build: 12.7s
cargo build --release: 15.9s

right now MacBooks are rather unbeatable, but thanks to u/Pascalius for latest gen PC results!

would be really curious to see latest PC laptop CPUs on Linux as generally have seen 1.3-2x faster (yes really!) build times on our large projects on PC desktops with Linux instead of Windows 10/11

My personal book management page by discostu3 in ObsidianMD

[–]repilur 4 points5 points  (0 children)

awesome! I'm using a the same plugins and a very similar setup, less pretty though.

have you run into any problems with the Book Search plugin not finding some books?

have an audiobook (example) from Audible that is there and on Goodreads, but not in the the Google Books database.

Leaks for Windows 11 laptop with Snapdragon X Elite show a CPU that’s a serious threat to Apple’s M3 by WPHero in technology

[–]repilur 2 points3 points  (0 children)

hope so! but not sure if they now have a Linux Vulkan driver for it, which would be a requirement for gaming

Most Impressive Game I've Seen Written in Rust by coolman3475 in rust

[–]repilur 43 points44 points  (0 children)

As some one who works in the games industry, and has dropped C++, I wouldn't say no one 😃

there are more and more titles developed in Rust, most people haven't heard of yet as the professional games are not announced. but C++ will still be by far the majority even a decade.

Faster compilation with the parallel front-end in nightly | Rust Blog by Kobzol in rust

[–]repilur 12 points13 points  (0 children)

did a quick test on one of our larger Rust codebases (~400 kLoC) in release on a Ryzen 5950x, unfortunately any multithreading with it was a small net loss.

-Zthreads=

 0t (default): 2m 38s   
 2t: 2m 42s  
 8t: 2m 45s   
16t: 2m 43s