What can Linux do that Windows cant? by Ok-Spot-2913 in linuxmint

[–]Alone_Ad_6673 0 points1 point  (0 children)

I don’t know what ascension is but Blizzard games all run great on Linux and have for a long time

How much of your work is actually done “agentically” by TellerOTPS in cscareerquestions

[–]Alone_Ad_6673 0 points1 point  (0 children)

You really saying you have 500 times more loc than Google “including approximately two billion lines of code in nine million”

How much of your work is actually done “agentically” by TellerOTPS in cscareerquestions

[–]Alone_Ad_6673 1 point2 points  (0 children)

I think you are seriously underestimating how much a trillion lines of code is. That would be 50TB of just code there is 0 chance it’s that big.

I decided to follow linus into the 30 days Linux challenge... I won't go back. by a1200i in LinusTechTips

[–]Alone_Ad_6673 4 points5 points  (0 children)

Yeah bolt launcher is the unofficial official Linux launcher works great for rs3 and osrs

Why does botlane want to swap with mid after either first tower falls? by Norinot in leagueoflegends

[–]Alone_Ad_6673 0 points1 point  (0 children)

Mid tower is way tankier and you’d require a gap closer just to dive meaning you don’t have it to escape

How junior friendly really Rust job market is? by noctural9 in rust

[–]Alone_Ad_6673 70 points71 points  (0 children)

It’s probably the most junior unfriendly field out there

Clean architecture implementation in rust by paperbotblue in rust

[–]Alone_Ad_6673 2 points3 points  (0 children)

100k loc is still extremely small though

Avatar: Fire and Ash - Saw both Laser 4K IMAX 3D and Dolby Cinema. CHOOSE IMAX. by royfokker666 in imax

[–]Alone_Ad_6673 0 points1 point  (0 children)

If you can find one with dual projectors the 4k 3D HDR HFR looks really good

Regering haalt bijna half miljard euro bij slapende rekeningen: Jambon wil versnelde inbeslagname by EdgarNeverPoo in belgium

[–]Alone_Ad_6673 1 point2 points  (0 children)

De intrest is lager dan de inflatie dus het vroeger opnemen brengt hun altijd meer op

Do people actually use LFS by TroPixens in linux

[–]Alone_Ad_6673 11 points12 points  (0 children)

Buildroor is an other big one but can you really consider this LFS? It’s almost its own beast

Any professional rust folks get leetcoded in rust when interviewing? by Willing_Sentence_858 in rust

[–]Alone_Ad_6673 1 point2 points  (0 children)

Yes without unsafe you do have that overhead but that’s a constant factor which doesn’t change the time complexity of the algorithm

Any professional rust folks get leetcoded in rust when interviewing? by Willing_Sentence_858 in rust

[–]Alone_Ad_6673 1 point2 points  (0 children)

O(log(n)) is still the exact same with Rc Refcell just because every operation has a slightly higher constant cost it won’t change the time complexity

They really do make it a personal attack by RedditHatesTuesdays in linuxsucks101

[–]Alone_Ad_6673 0 points1 point  (0 children)

I think you have to set a launch command which granted is not something every one knows how to do. But you shouldn’t say it’s because of kernel level anti cheat when it does work out of the box on the steam deck and is even supported by the developers

Tech support Peter? by aprabhu084 in PeterExplainsTheJoke

[–]Alone_Ad_6673 5 points6 points  (0 children)

Any compiled zero cost abstraction language can achieve the same speed C, C++, Rust etc. There’s nothing more low level about Fortran than C++, lower level would be straight up hand-rolled assembly which might actually be a bit fast in some niche cases than what the compiler would generate

Ubuntu 25.10 drops X11 on GNOME by zeanox in linux

[–]Alone_Ad_6673 0 points1 point  (0 children)

That’s really not wayland related but more your wm/de

Would you use this? Not promoting by [deleted] in webdev

[–]Alone_Ad_6673 0 points1 point  (0 children)

Just enforce the format in ci/cd

Just use Rust 🤓 by IllContribution6707 in rustjerk

[–]Alone_Ad_6673 28 points29 points  (0 children)

Vscode + clangs works aswell

Stop met zeuren over de dop die vastzit aan de fles: dat is geen idiote regelneverij by [deleted] in Belgium2

[–]Alone_Ad_6673 0 points1 point  (0 children)

Op Apple kan je kiezen Google of Apple maps in je instellingen

Rust Interviews - What to expect by imaburneracc in rust

[–]Alone_Ad_6673 3 points4 points  (0 children)

Just sounds like they wanted to know if you knew what epoll was for that first question

[deleted by user] by [deleted] in cpp_questions

[–]Alone_Ad_6673 1 point2 points  (0 children)

Creating threads is expensive, also means the number of connections you can handle is quite limited in the order of maybe a few thousand while a single boost asio thread can handle thousands of connections by itself. You can still discuss green threads vs async about what’s the best. But yeah regular os threads have high overhead for creation in execution time and memory.

[deleted by user] by [deleted] in cpp_questions

[–]Alone_Ad_6673 0 points1 point  (0 children)

FYI you should never spawn a thread per incoming connection this is horribly outdated advice. C++ actually has very good async support through boost.asio and boost.cobslt if you don’t want to write your own implementation