- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
Boomers will also get locked out of a lot of content because verifying their age is too complicated. I feel no sympathy.
They did the thing they were supposed to do. They voted for the Ultra-Far Left Woke Labour Party.
Labour are far left are they. I feel your political compass is somewhat misconfigured.
Shh
Labour hasn’t been anywhere near the left since Tory Blair became leader, he grew up a Tory supporter, failed to get in as a Tory politician so decide on transforming Labour into the neo-Tory party which he was successful at, not that Labour before hand was the friend of the average worker or the poor but at least they were better, now they are hostile to the working class and the poor 😞
Labour hasn’t been anywhere near the left since Tory Blair became leader
Well, there was that brief bright moment with Corbyn. But then he got the Julius Caeser treatment for siding with the Radical Islamist Extremism of the anti-genocide movement.
now they are hostile to the working class and the poor
Okay, but have you considered all the new AI they are helping create.
I cannot tell if you are serious
Dumb take, here take my downvote.
Most zoomers are adults. 96 to 2010 means only the youngest zoomers are minors. In 3 years, every zoomer will be a legal adult.
😂
What has the setting of nVidia or visiting the Wikipedia to do with child protection? Certainly old guys which confuse a remote control with an smartphone , don’t should be authorized to make internet laws.
Makes sense, because with the nvidia graphics card you could generate AI porn.
You can do that with a CPU, it’s just slower.
You could generate AI porn on a 6502; I don’t see Commodore or Atari pulling this crap.
Why would you?? Commodore 64 unzipping still makes my day 😤
(and if anyone can find an article or screen grab of the following… Let me know, I can’t find any references :()
I remember a game / joke where you would rub the Commodore 64 gameport with a wet finger, and the faster you went, the nicer the on-screen lady became… ;-)

a pen can generate porn
Question: how good do you have to be at drawing to have a successful wank to your own art?
This seems like it can be easily avoided by just downloading the drivers without using the nvidia app.
Are you actually able to do that now? You used to not be able to or they were sufficiently hidden.
They’ve never been hidden. You just go to the website, put in your model and download it. There’s apps that do it for you now which is where this must be coming from. Still doesn’t change the fact you can directly download the driver.
Maybe they were harder to find on their site like a decade ago when I first got an Nvidia card and I just never tried looking again.
Nope. Always been that way. Enter model, choose platform, download drivers. Ive had to do it for at least a decade and a half since the nvidia program has never not borked out trying to update drivers.
you are speaking about the advanced search page, but I don’t even know how would I find it without my bookmark
lol. Yeah navigating any driver website is a pita. I just search nVidia driver download and it drops me there.
It’s been the same for 20 years at least. My first nVidia card was a geforce2 but I had an integrated SOC one that borrowed main board memory before that called a RIVA TNT 2. Prior to that had an ISA SVGA card but can’t remember who made it:
Windows will do it for you as well but you have to enable it.
That’s what in used to use but there are some features you can’t access without the physx components so I get the whole package now. For baseline it’s good for sure.
You can just use the manual search tool on nvidia to find your driver. My understanding is the 9 & 10 series support is going to end soon.
https://www.nvidia.com/en-us/drivers/
When you run the installer you have a choice to install their app or not.
They’re hidden in the same sense that the real “download” button is hidden on most torrent sites.
deleted by creator
You can on Linux just saying
It’s like people are just now noticing that they have zero ability to control their own digital lives because they traded it all away in order to not have to take the time to learn how to do things for themselves.
not trying to be rude, but it’s easy to get tunnel vision especially with tech spaces. before becoming involved in tech i had no idea that linux was even a thing. most of these people need education, they just didn’t know their options. they didn’t “choose” to throw away their rights because they didn’t know they had a choice.
I agree with this.
We all need to make what we know freely available in a friendly manner to make the path to Linux easier and more fun.
Up until now, we’ve been hiding it in wikis and books, where we know nobody will look. 😂
There are some user friendly distributions, but even they will be uncomfortable and frustrating to use when you’re new.
Having to relearn how to use a computer is daunting for people. It’s a lot easier to just touch an app and have the instant gratification.
The point of all of these apps and services is to get people dependent on them so that they’re unwilling to leave because the alternative requires effort. I don’t know that Linux, as a whole, can ever be that user friendly. But, eventually some people will be tired of being squeezed for cash and spyed on just to save a few weeks of reading and learning.
I have been offering 1:1 chats on signal to anyone who wants help switching to Linux.
Asking questions in forums and social media is intimidating. I despise the snobbery that often represents this community. I just want to help people regain some control over their digital lives.
Man you are doing <insert deity>'s work there
deleted by creator
Sent you a DM, Interested to hear more about these problems!
Or raising the polling rate of USB mice above 10 Hz (as in ten - that’s not a typo).
I don’t know the answer, but I’m interested, what do you use that for?
Fortunately, copying or moving more than 1 GB to or from USB sticks without crashing the entire machine (no matter if NTFS or ExFAT) was solved last year, probably because of a kernel update.
I believe it has a lot to do with the default amount of dirty memory. dirty memory is mostly the write cache, which is unnecessary to have a lot of, as that does not improve anything after a certain point, but at best it can mislead you to believe that a copy opetation started with 200 MB/s and that it finished when it actually did not yet.
https://www.kernel.org/doc/html/latest/admin-guide/sysctl/vm.html
you can fix these limits with sysctl files. they are loaded on boot on typical systemd systems. suggestions are in the manjaro post, relevant for any desktop linux system.
maybe it’s worth to set these up even if you are good for now. It’s good to hear a kernel change could have fixed it though. maybe they have finally revised the defaults, they wanted to do that for a few years now…
deleted by creator
I will have a look, didn’t even know about kernel.org, nobody before you mentioned it.
its mostly developer documentation about programming APIs, but there’s also admin docs, not only at the admin-guide pages.
if the script would get executed whenever I start the machine or go out of standby. Which is not the case, sometimes it just doesn’t happen and I have to do it manually.
what is its current trigger?
if yours is a systemd based system, it’s often recommended to make a service unit file for the script, like this:
[Unit] Name=restore gamma on resume WantedBy=sleep.target [Service] After=sleep.target Exec=/usr/local/bin/yourscript.shsave this in /etc/systemd/system/gammasleep.service (runs services as root), and run systemctl daemon-reload for it to notice the new file. systemctl enable --now to start it and make it autostarted on boot.
I have written this from memory on phone, so it might need corrections, but this is basically it, plus edit the exec line. docs is in man systemd.service, man systemd.unit. man systemd.directives tells you which man page documents a specific key.
you can check logs with journalctl -u gammasleep.service. an f gives you a running log with shorter history.
probably I could have written all of this after you confirmed you did not use a systemd service yet…
It’s all those little inconvenient and unreliable things that keep me from using Linux for anything that goes beyond browsing the web or doing office stuff
oh I felt the same when I first tried to switch to linux on my main desktop. everything was inconvenient without my usual tools and the system was breaking down from time to time. I got burned out, 2 years later I retried and now I haven’t gone back to the windows install for months, and there’s not much problems now. probably I was being clumsy and doing things the wrong way 2 years ago, but it’s hard to tell because I don’t remember.
in a friendly manner
Emphasis on “friendly” because there’s a big “RTFM” issue on some Linux communities. Sure, it can be annoying getting the same questions constantly. But the “RTFM” response is condescending and artificially inflates the barrier to entry. People shouldn’t be expected to read, understand, and remember 200 pages of dense documentation just to learn how to update their graphics drivers. If someone is learning how to drive, telling them “read the owner’s manual for your car” is just toxic. Sure the owners manual will have lots of useful info, but that doesn’t actually help the person who is trying to get started.
At the very least, point them in the right direction. You can say “RTFM” while still being helpful. Oh, you want to know how to do something specific via CLI? Cool, here’s a link to that specific section, which explains what the command you need does. As it currently stands, a lot of the most crucial info for newcomers is buried in obscure wiki articles and books. And longtime Linux users treat the struggle like a rite of passage. But not everyone is interested in that; They just want to ditch Windows because they can’t install Win11, and they’re looking for friendly alternatives.
My literal job consists of helping other (generally much less technically savvy) representatives provide support to our end users, and it being their literal job to provide “tech” help to users is still not enough of an incentive for 80+% of them to learn anything beyond basic computing. Sometimes it’s like pulling teeth just to get a fucking click path or screenshot of what’s actually happening.
Now expand that out to now I am not getting paid to help people and those asking for help are often VERY entitled that they deserve to have their hand held through the entire process. It’s frustrating and often thankless.
There’s an older manual for how to ask a “hacker” for technical help that I think is so spot on for setting proper expectations: http://catb.org/~esr/faqs/smart-questions.html
I do agree with a lot of what you’re saying.
Linux has historically been a space for tech people and so the default assumption is that the user is competent (jokes aside…) and capable of understanding technical writing.
So, naturally, if a person asks a question which is answered in the documentation then they’re reminded that the answers exist already in the expected places and asking other people to do your own research for you rude.
The Linux demographic is shifting and we need to adjust, but cultural norms change slowly.
and they’re looking for friendly alternatives.
I think that this is part of the trap that keeps people stuck in the spyware/enshittification market.
Technology is complicated.
Try to imagine, from a technical point of view, how complex it is to run a service like Netflix. There are a lot of highly trained people designing, managing and maintaining the various systems to run the service that lets a user touch a picture on their phone screen to see a movie.
The user has an easy, friendly experience but that’s only because Netflix handles all of the complexity. This seems like a good deal initially. I mean,
$10$12$15$19.99/mo is a good price to pay to not have to know how to do all of that.But, now the user is completely dependent on service providers to stand between them and the complexity of technology so they never have a chance to learn because they never see how anything works.
This Faustian bargain is what lets these companies continue to spy on people and jack up the price of services while offering less service. Where are the users going to go?
Linux and the open source community offer a different bargain. You have to learn how to do things for yourself, but now you have actual meaningful choices about how you use technology and a community of people who are trying to solve the same problems as you.
Sure, it isn’t as easy. But easy isn’t free, and I’m tired of paying what they want to charge.
Imagine if more people actually voted for candidates that shared their policy concerns instead of just complaining into the void. In a democracy, the people get exactly the government they deserve.
the people get exactly the government they deserve.
You are extremely naive about “democracy”
You are taking the fake choices at face value
This is not democracy
Voting once in a while is not democracy, it’s not even politicsLook at the rotating cast of 100 or so loser leading just about every democracy, do you really believe that the current leaders really are these despicable, reprehensible, deceptive and bootlicking politicians are the best people among hundreds of millions of people ?
Of course not, what a crazy idea, and you want to blame the victim about it ? The victim which are US ??? How dare you !
Every country has their own version of first past the post, electoral college and all kinds of rules that ensure that even if they can’t apparently influence politics, the politics have nevertheless NEVER left the hands of the power elites. The people who have always owned everything and will always own everything. You might be feeling some protest and the desire to point to some “rags to riches” story to rebut me, but no you know just as well as I do that these exception are far and few in between and they don’t save the system.
The system designed to perpetuate the concentration of power into fewer and fewer hands, as much as possible, stopping just short of monopoly and kings unless we stopped looking.
Face it, our democracy is rotten bull shit ! It’s NOT OUR FAULT, it was rigged from the start by GOD DAMNED SLAVE OWNERS !!!
So stop repeating the thought terminating platitudes like “the people get exactly the government they deserve”, “it’s the worst system, except for all the others”, “western liberal democracy is the end of history”.
This was and always been fake no matter how much the elites want us to believe it.
Democracy was fake then, it is fake NOW and that is not even taking into account just how incredibly WORSE it is getting in recent years. Not only were the elites content with assassination of dissenters of anything that would champion any kind of change everywhere on Earth, from Martin Luther King to an endless series of political activists but now we have even worse and more deadly than assassinations going on.
Here are just a few of the new technology that ensure your old fake democracy will never EVER amount to anything and you will scientifically never matter to any kind of policy. (even though it was scientifically proven a decade ago that the people’s preference have no effect on congess’ policies)
The new nails in the airtight, steel reinforced concrete coffin of democracy are
1. Behavioral Microtargeting Data-driven psychological manipulation that hijacks emotions to steer voter behavior without their awareness. 2. Algorithmic Information Control Algorithms decide what people see and believe, shaping political reality to favor power. 3. Surveillance-Based Targeting Every movement, message, and purchase is tracked and fed into systems designed to pre-empt resistance. 4. Neuromarketing & Biometric Influence Ads and messages are engineered to exploit subconscious emotional and physiological responses. 5. Digital ID & Programmable Money Financial and identity systems can be weaponized to reward obedience and punish dissent instantly. 6. Rigged Electoral Architecture Voting systems and rules ensure only establishment-friendly candidates ever make it to power. 7. Deplatforming & Soft Censorship Unapproved voices are quietly erased, throttled, or discredited before they can gain traction. 8. Algorithmic Bureaucracy (AI Governance) Opaque algorithms control critical life decisions with no transparency or accountability. 9. Weaponized Legalism ("Lawfare") Laws are selectively enforced to crush dissent while protecting the powerful. 10. Manufactured Hopelessness The system convinces people that resistance is pointless, ensuring compliance without force.We are totally boned, we should all go piss on the tomb of Edward Bernays and Ivy Lee in mourning because our democracy is NEVER COMING BACK
Some* people get the government they deserve.
In a first-past-the-post system, the election outcome does not really reflect the will of the electorate. Which is why things are so fucked up in places that use these systems.
The British don’t seem to be doing so well anymore with their parliamentary system. it would appear that there is no governmental system that can’t be manipulated effectively anymore.
They have an FPTP system. This is exactly what I’m talking about.
the osa was dreamed up by the tories and enthusiastically implemented by labour. even if proportional rep or whatever alternative to fptp was established before the act came into force, there is little chance that one of these main parties wouldn’t have had enough influence to push it through regardless
Any time you have an election, the winning choice is always ‘first past the post’. No matter how many rounds of voting you place in the way.
I get your point, but what those systems do is they don’t let massively unpopular candidates win by dividing the opposition and they let third parties compete without splitting the vote.
there are other methods, ranked choice for example
Uh, no, that’s not how this works at all.
How would under age people vote? Where I am from, you can only vote at 18 (16 for some special elections), so bad luck if you are under 18 and want to be represented
b-but how are they going to protect us minors
from the evil NVIDIA app?!
serious talk tho the overreach was unsurprisingI don’t use that shitty application. Just use Nvidia Inspector and Nvidia Control Panel. That application is data collection spyware.
I don’t use that shitty application. Just use Linux.
I’ll switch to Linux when there isn’t a performance trade off for using an Nvidia GPU.
Just switch to CachyOS and so far I’ve noticed improved performance if anything (on a 3080 10gb). The latency difference between it and Windows is just unreal.
That’s the case for DX11 or older games but any DX 12 game it’s 20 to 15 percent less performance and that’s a no go for me. Once it gets addressed, then I’ll consider switching.
Maybe it’s system to system, or something with the older nvidia drivers, but I’ve specifically noticed the improved performance in Expedition 33 and Jedi: Fallen Order which I think are both DX11/12?
Looks like they are working on it.
Running a 3060, no issues I can tell.
YMMV obviously: There was some driver fuckery I had to sort out because I’m stupid (curious and clueless is a dangerous mix), and I might not be running the most demanding games or programs (Jedi: Survivor might be one of the heavier ones? I have no idea)
I also might have lower standards: I’m playing 1080p 60fps and generally don’t notice FPS issues unless it drops below ~45, because I grew up using to an old-as-fuck laptop to play Skyrim at 20fps (unless there were too many spells flying around and it dropped to 5-10).
Still, the consensus seems to be that AMD is better for Linux, and I’m coming around too.
If there are Linux applications that aren’t complete janky shit, I’ll switch.
I need a multitrack DAW recorder that understands older and newer audio interfaces and a good multi-camera video editor.
I use bitwig and davinci and they work great. not sure what you mean by “applications that aren’t complete janky shit.” there are a ton of applications available on linux, both paid and free, and their quality varies as much as anywhere else.
“I tried nothing and I’m all out of options!”
They are denying us the power of the digital age, taking it for themselves.
Lol good luck, the entire thing that makes it so powerful is the collective
So it sounds like the wall was written to police more than just porn sites? Or is this companies doing this to harvest your data?
It’s to prevent autonomous agency. It’s to prevent people from having privacy and individuality end of discussion. The last system like this was under the gestapo and secret police under Hitlers regime.
Sorry. I thought this was about the Nivea app.
How the fuck does this protect kids? Adjusting graphics settings? Why not bar them from adjusting volume while they’re at it.
Some of those graphics might be showing boobies. Obviously this must be regulated.
No it is not. Dont be a fucking ridiculous idiot.
Nvidia app is DEI woke. Gotta protect the kids.
wow, wow there. no loud music after 8. If the nightstand mic doesn’t pick up the nightly potus prayer, your front door is getting bust open
You are in violation of the Community Guidelines due to not marking the comment “NSFW”.
Of course we are not going to tell you why, but you get 1 strike./s












