While not directly as popular, Blazor allows you to make the entire website in C#/ASP.NET and ship it as wasm.
It’s pretty much up to every language to make some library that allows it to work on the web though wasm.
While not directly as popular, Blazor allows you to make the entire website in C#/ASP.NET and ship it as wasm.
It’s pretty much up to every language to make some library that allows it to work on the web though wasm.
Or the tld is .mobi
“Gotta sit on my thinking chair for a bit” or “lemme go listen to my own shit for a while”
Usually in dutch tho, “ff op de denkstoel zitten” or “even naar m’n eigen gezijk luisteren”
They will probably have domesticated us, instead of them.
Not a scientist, but my first assumption would be that everything on earth, but also earth itself will double in size, knock ourself around our nice orbit around the sun and kill everyone either flashly or coldly.
Ignoring that problem, or applying the effect to the entire universe, probably not much would happen.
Missing the joke here? We run a 3090 and a 3900x just fine on ArchLinux.
to be fair, the only real reason to wear the same socks is so they feel the same on your feet
Some Fighting, a pretty good story, awesome music and horrible driving.
It really isn’t for everyone imo but it’s a game kinda in it’s own genre.
Also the reliable income makes them more credit worthy, allowing greater loans from banks and making it possible to grow more.
Tbh it only sucks for the customers
The biggest feature of Wayland for me is mixed refreshrate monitors works OOB. On X this is a pain to get even remotely working and it’s impossible if your monitors aren’t dividable (120/60 works, 144/60 stutters).
This is from my experience something that is starting to be a way more common issue (high refreshrate laptops with 60 external monitors at businesses or high refreshrate monitor for gaming and a smaller secondary monitor for info lookup/discord).
other than that, Xorg does win the “more stable” prize for me, but if I wanted stability, I should’ve become a carpenter.
It’s quite a bad UX, but generally error 2 from make means the called program resulted into an error.
Usually this is accompanied with another error somewhere up the log. Multiple cores can make this a challenge to scan the log for however, so maybe try compiling without the -j
argument, that should get the actual error closer to the end.
From my experience, it’s usually an outdated config for the kernel (like using a config for 5.1 while compiling 6.7) or a missing dependency. However the real error will be somewhere among the logs, who knows, maybe it’s a missing processor instruction (it’s really bad UX).
yes, those two “autofixes” are “fixed” now. (it’s a opt-in setting)
Python is soon to be integrated into excel, I might not be a python fan but if it’s gonna replace vba I’m all for it.
Like a lot of people already mentioned, it’s because of hardware driver’s mostly. But let’s not forget Microsoft has this figured out mostly already, since pretty much all drivers that have a version for Vista 64bit (2006) works on Windows 11.
Android is catching up a bit though, they split the update process and you now receive security updates almost directly from google since Android 10.
I prefer for it to be just a warning so I can debug without trouble, the build system will just prevent me from completing the pull request with it (and any other warning).
While I wholeheartedly support and use linux for gaming, I rather blame this on the attempts of apple to block gaming on a mac as much as possible (removing 32bit support, the switch to ARM and not using established standards like opengl and vulkan but building their own ‘metal’)
For unit tests I usually have a test/ folder next to my src/ folder, that duplicates the folder structure. My brain prefers things being seperate from eachother (resources, source code per language, tests) and this is afaik the only way that you can keep it consistent between different languages (C# for example needs a seperate unit test project)
(╯°□°)╯︵ ┻━┻
It crashed some devices when they scan for WiFi networks (both Linux’s network-manager and a Canon Printer at least)
On that last note, can’t you use the explicit interface implementation in C#?
e.g.
public class SampleClass : IControl, ISurface { void IControl.Paint() { System.Console.WriteLine("IControl.Paint"); } void ISurface.Paint() { System.Console.WriteLine("ISurface.Paint"); } }