Then just download it e.g. from github: https://github.com/rsms/inter/releases
Then just download it e.g. from github: https://github.com/rsms/inter/releases
For a fair comparison you should at least use the same font and font size. Did you try that? It will still look different on windows, maybe better, but I think you can get pretty close. I use the “inter” font on debian xfce and it looks very clean (the font is probably in your repos as well).
But of course everyone decided it is just easier to nag all the users with a big splash screen.
Nope, the thing is, you’ll very rarely find a website that only uses technically necessary session/login cookies. The reason every fucking website, yes, even the one from the barber shop around the corner, has a humongous cookie banner is that every fucking website helps google and other corporations to track users across the whole internet for no reason.
I’d say at 1000 lines it usually makes sense to extract some parts into other files. But sure, I guess most obscurities have positive aspects. On the other hand, nothing is stopping you from writing a separate file with only function signatures next to your python scripts. It’s just not required, because why would it ;)
The stone-age called, they want their languages that need header files back!
(I use Rust btw.)
I can recommend debian testing. I’m using it on laptop and desktop for several years, always running “apt update && apt full-upgrade && apt --purge autoremove” and it never broke. It’s not officially a “rolling release” but practically it is.
Obviously not. Building a modern browser engine from scratch is an immense undertaking, so it’s definitely possible that it will never be usable as a replacement for every day webbrowsing. But for now I won’t give up hope :)
“trustworthy AI”
Why? Why can’t we have even a single decent browser? Servo is my last hope.
It’s not a rolling release though, right? I mean mint is nice, but I am absolutely pleased with my experience using debian testing as daily driver for years while it just stays perfectly up to date and never breaks (as opposed to arch or even manjaro).
Debian (testing branch): Add normal firefox to the repo. Firefox ESR is total bullshit that makes zero sense to use. I always install it either as flatpak or from the unstable repos using apt-pinning (which works great though!)
I also think it’s more descriptive. Just like blocklist and allowlist.
Hey! Don’t remove the context menu key, I use that! The alternatives are 1. using the mouse (no!) and 2. Alt+F10 which is awkward.
Hahaha so true
All bluetooth headphones should work.
How can you even use a system with only 3 browsers installed? Quick, install edge! Also don’t forget brave, the famous crypto scam that looks like a browser and is run by a homophobe asshole.
Unfortunately that support would be worthless if only firefox does it.
Python is actually mostly strongly typed. Strongly (e.g. can’t use a number as a string without explicitly converting it), but dynamically (can change type of variable at runtime). You probably would prefer a statically typed language and I agree.
20% is a LOT. That’s probably because of the random shit that nobody ever asked for but windows is always doing in the background anyway. Building a search index, windows update (which consumes an insane amount of CPU for a completely unreasonable amount of time sometimes), other individual updater services (because there can’t be one program that updates everything because every vendor does their own proprietary bullshit to handle updates), compressing and sending all you personal data to microsoft and of course the pre-installed McAffee (on trial license) that works hard to make your system less secure (that HP probably installed for you because apperently you haven’t paid enough money for the computer, so you must pay with your patience and your privacy as well). Depending on the benchmark, the pathetic legacy file system windows uses might also play a role.
I use Inter for the UI and SF Mono (from Macos) for terminal and coding.
Isn’t it obvious? More code to skim, scroll over and maintain if something changes. If you add a struct field, your manual EQ implementation still compiles and seems to work but is wrong and will lead to bugs. Yes, solving this for 99,999% of cases with an attribute is just far superior and does make a difference (while keeping it easy to manually implement it if needed). Hash and Ord and some other traits can be implemented in a similar fashion btw…