No wonder the Scots wanted to secede from this mess.
And it would’ve worked too, if it weren’t for those meddling
kidsBBC and MSM propaganda machines!
Zoomers can’t be bothered to spell Nvidia correctly. I wouldn’t let ‘em install my drivers either 🥲
You can download the Nvidia driver directly from their website
People who care about privacy wouldn’t use the Nvidia app. (And wouldn’t be on Windows)
Yeah, but Nvidia Cards on Linux are “fun”. Fuck Nvidia
They have worked for a while now. They just aren’t as good as AMD cards but that’s true on all platforms
The majority of zoomers are 18 or older. The youngest are 13.
😂
Microsoft could pull this off nicely. One nice foggy morning in the UK, and all Windows boxes go BSOD … Hmm, I think, they do that anyway, most of the time, don’t they.
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.
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
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.
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.
I would be interested. So far I can’t say that I have ever been helped on social media or dedicated forums when it comes to Linux. It went mostly like this:
Me: “I have problem X. How can I solve it or at least get closer to a solution?”
Answer: “Lol, you idiot, you don’t even know how to do that!”
Me: “No, I don’t know. That’s why I’m asking. So what do I have to do? Edit a certain script? Get a certain program?”
Answer: “Grow a brain you noob!”
(Rinse and repeat)
Alternative answer, rarely: (Crickets)
I came to two conclusions because of this. First: The Linux community has the highest density of trolls of all communities. By far. Second: None of those people actually knew the answer to any of my questions, otherwise narcissism would have kicked in at least once and made someone slip a solution, just to brag with their knowledge and skills. Which means that the Linux community is also the least tech-savvy community as well. By far. So if someone actually knows something about Linux, they can’t be found in any Linux-dedicated place. At all.
Everything I learned about Linux to this day is based on trial-and-error. But I don’t have the time anymore to do that and it’s in general too time-consuming to reinstall distros over and over again because I went too far when trying something new. Currently I’m using Mint to browse the internet or do office tasks. But I would like to do more, like running certain Windows programs like DAWs with low latency. Or raising the polling rate of USB mice above 10 Hz (as in ten - that’s not a typo). 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. Well, it’s a work-in-progress-project, I know that Linux is more of a beta version of an OS and it’s free, I’m not complaining about such issues. I’m experimenting, having a look what can be done.
I’m okay with things actually not being possible. I would never complain about ReactOS not running modern Windows programs either. But I’m tired of Linux trolls claiming all kinds of stuff without ever providing any description, tutorial or evidence. And I’m tired of them insulting me because I don’t know something they obviously don’t know either. It’s ridiculous. So yeah, I’m still interested in talking to a single person who might actually know something and who is not part of “that Linux community”.
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…
Thanks for the links. I will have a look, didn’t even know about kernel.org, nobody before you mentioned it.
I suspect the polling rate to be responsible because the movement of all USB mice turns out to be incredibly slow and choppy. A few years ago it was the worst, it looked and felt like it was down to 2 Hz. This got slowly better with kernel updates, now it seems to be around 8-10 Hz but that still makes using USB mice pointless. The mouse problem always occurs no matter if the machine is close to idle or doing a lot (with or without USB, doesn’t matter) and no matter which brand or model.
I also wrote a script to apply gamma correction via xgamma whenever the machine starts or returns from standby (because gamma isn’t remembered and returns to default). A little inconvenient in comparison to Windows or Mac. I would be okay with that - 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. So what’s the point of trying to automate anything then if Linux does things whenever it feels like it?
Yes, there are applets for gamma adjustment which also remember settings. But it turned out updating them crashes Cinnamon when it tries to restart (depending on the kernel version), forcing me to force a shotdown with the power button. This is one of those problems that keeps disappearing and reappearing for years. At some point I had enough and decided to use xgamma.
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 (not mentioning missing drivers). I end up spending too much time with maintenance or finding workarounds, ultimately serving the machine more than the other way around.
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.sh
save 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.
Man you are doing <insert deity>'s work there
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.
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.
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
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.
is this real? what the f does a gpu driver have to do with the safety act?
Relevant:
Why is it called “Lost Generation”?
Going into WWI was a bad time to be coming of age.
Personally, I don’t know.
From https://en.m.wikipedia.org/wiki/Lost_Generation :
The Lost Generation was the demographic cohort that reached early adulthood during World War I, and preceded the Greatest Generation. The social generation is generally defined as people born from 1883 to 1900, coming of age in either the 1900s or the 1910s, and were the first generation to mature in the 20th century. The term is also particularly used to refer to a group of American expatriate writers living in Paris during the 1920s.[1][2][3] Gertrude Stein is credited with coining the term, and it was subsequently popularized by Ernest Hemingway, who used it in the epigraph for his 1926 novel The Sun Also Rises: “You are all a lost generation.”[4][5] “Lost” in this context refers to the “disoriented, wandering, directionless” spirit of many of the war’s survivors in the early interwar period.[6]
In the wake of the Industrial Revolution, Western members of the Lost Generation grew up in societies that were more literate, consumerist, and media-saturated than ever before, but which also tended to maintain strictly conservative social values. Young men of the cohort were mobilized on a mass scale for World War I, a conflict that was often seen as the defining moment of their age group’s lifespan. Young women also contributed to and were affected by the war, and in its aftermath gained greater freedoms politically and in other areas of life. The Lost Generation was also heavily vulnerable to the Spanish flu pandemic and became the driving force behind many cultural changes, particularly in major cities during what became known as the Roaring Twenties.
Later in their midlife, they experienced the economic effects of the Great Depression and often saw their own sons leave for the battlefields of World War II. In the developed world, they tended to reach retirement and average life expectancy during the decades after the conflict, but some significantly outlived the norm. The Lost Generation became completely ancestral when the last surviving person who was known to have been born in the Lost Generation or during the 19th century, Nabi Tajima, died in 2018 at age 117.[7]
Tldr: looks like life shit completely down their throats. Kinda feels familiar…
Life and the wealthy have been shitting on people for ever.
It’s OK, they were saved in the end … by a war that killed 100 million people.
As one of the first Baby Boomers, it’s somewhat surrealistic for me to proof that I’m old enough to access an fucking web page.
I hear that - I was around when Arche and Fido-net and BBS’es were king. You want my id? Great I’ll just fax it to you.
As a millennial, it, too, is insane.
Which begs the question: who thinks this is a needed thing and a good idea? Who is pushing this agenda?
somebody in another post a few days ago suggested that this was about gaining control of the media narrative by gradually locking down parts of the internet. The idea being that today it’s adult content but tomorrow its about disagreeable narratives on YouTube, TikTok, and other secondary sources of Information.
-I’d think it were a stretch of the imagination but it was shown that the motives for trying to ban TikTok (in the U.S.) were the narratives shared on the platform about Israel’s ongoing genocide.
It’s about surveillance and control. Censor what people can see, require ID so you can monitor who’s viewing what, and let people know you see what they’re doing so that they become wary of using the internet for political organization. Pedophiles and terrorists are just convenient bogeymen to scare people into assenting to this.
Why don’t we just say people in their 20’s, 30’s, teens, why we gotta have an extra fucking label
Because when you were born correlates with your cultural experiences and therefore your behaviors. Not always, bit broadly. And if you try to define groupings for those years, you can see clearly defined generations, that were really clear with the baby boomers, who were the American children of American soldiers coming back from world war 2, and then their resultant children, generation y/the “millennials”, named thusly for coming of age around the time of the millennium.
Like sure, it’s all social constructs. But, so is language.
Baby boomers generally got some of the biggest economical booms in history, along with the population “boom” of their births. But that was only if you were able, white, cisgender, heterosexual, and male. The civil rights movements of the 50s, 60s, and onwards were both possible but also necessary because of the empowerment of those demographics.
But also, because of that general success, a lot of baby boomers (cishet white men) took on the behavioral traits of being largely pieces of shit. Not all, just like “not all men”. But, it’s enough of a pattern of entitlement and sexism and repression and psychosocial behavioral resultant of lead poisoning, that that’s what the baby boomer generation is kind’ve seen as, now, regardless if any individual does or doesn’t fit any of those things.
And so, we can largely group and label the generation and attach it to a current age group and try to predict or explain behavior.
Unfortunately, this is also discrimination in many cases where it isn’t true. Personally, I try to avoid profiling entirely because the habit is gross. But, I would be lying if I said I didn’t clearly see a solid pattern. I know, that they’re just people like the rest of us, and if we were in their shoes, we would entirely end up just like them. But then that again brings it to it being generational, and not just age.
You think I like being reminded and disappointed when people end up fitting their negative stereotypes? You think it’s easy to try to be a good person against my own upbringing? It’s not. But we have to try. And working to understand is a big part of that. More people need to ask “why”, and, I know you were asking rhetorically, but you were close enough that I think it deserves recognition. So, good on you for that.
Whatever the millennial generation ends up being known for, I’m curious. But until then, we can’t give up trying to make ourselves, the world, and each other better. Because once you give up… Well… We can never give up.
“Why not?” Etc etc.
So 1 in 3 Zoomers are under 18. A little less, since birth rates fall every year.
Oh great, a graph telling me I’m going to die soon. I’m not even that old.
I know we don’t know each other very well, but… Can I have your stuff?
I’ve let my family know that SCmSTR@lemmy.blahaj.zone can have my VHS tape of the original West End production of Cats, my Windows 98 CD-R with the license key written on it in marker pen, my Tazos collection (all 4 of them) and my Haynes Workshop Manual for Ford Escort. Enjoy.
The little dance I just danced. This is all I’ve ever wanted. Happy day. Praise the god of the toilet.
damn, a haynes manual. you really are gonna die soon. me too.
I have been out of the loop for a while so please excuse my question: Is it really necessary nowadays to let NVIDIA software connect to the internet to enter/change the graphic card settings? Years ago they only had this bullshit tool for looking up pre-made settings and an update agent, but all you had to do was to not install both when running the driver setup. I can’t even remember the name of them, deselecting this crap became like muscle memory. Did NVIDIA really change that in the meantime?
Reminder that there is a petition for UK residents, now with 500 000 signatures: https://petition.parliament.uk/petitions/722903
Reminder that they already responded
The Government has no plans to repeal the Online Safety Act, and is working closely with Ofcom to implement the Act as quickly and effectively as possible
A huge petition that undermines the government’s democratic mandate is never a bad thing, even if they responded.
Ok but they should still attempt every avenue no?
Doesn’t stop us from continuing to push. Since they responded we got 300 000 more signatures.
Wouldn’t it be sick if y’all just responded on voting day?
Here’s the pitch: Do you want to prevent horrible nonsense shit from happening? Do you like money? Are you okay with people in general? Fucking vote.
You do realise that Labour were voted in as the progressive alternative on a bunch of pretty progressive campaign pledges right? The Online Safety Act and treating peaceful protesters as terrorists certainly weren’t what people voted for.
Guess you should be on the street protesting and banging down the doors of politicians then.
I do not realize that, I’m not from there nor do I pay attention to their politics. This was more so a call to everyone everywhere to show up at whatever booth it may be and prevent shitty policies from being considered, let alone passed.
That said, I do appreciate the info, and moreso appreciate that you archived it and linked a paywall free version. That was thoughtful.
To translate it to American, it’s a similar two party system as yours, and the UK Dems are the ones doing this.
Yeah unfortunately one vote every 4 or 5 years is not enough granularity to weigh in on specific issues. Also, politicians lie about what they will do all the time.
Showing that a large amount of people are against an action, whether by petition or protest, is one of the tools we do have.
This particular piece of legislation has been in the works for two administrations of two different parties. We’re kind of sick of both of them so I think many people will likely vote for a 3rd party the next time around. Possibly the more progressive splinter group of our 'left" party.
I hope you’re right. But in my experience, every country ends up voting for 1 of the 2 largest parties because “that other party will not get even 5%” and the whole population ends up disregarding them. And this is by design.
Honestly, I pray that you’re right and the UK people actually tells the main parties to fuck right off.
Your voting chose have already been scientifically proven to be meaningless, democracy is fake.
The game has been rigged.
Voting exists to stop you changing things.
It makes you believed you solved the problem
when you’ve actually accomplished nothing yetThe voting is game is lost before it began
with psychometric micro demographic targetting
they can convert money into votes with simple manipulation
it’s just a matter of which money interest push more
on their preferred optionbut neither of the two choices is on your side
None of the choices in democracy are working for you
So main issue with this comment is the UK system allows for more than 2 choices.
Yes there are many choices, very similar degrees of ultimately the same thing. Same thing here in Canada.
Often it’s the business elite party and the “business elite but pretending to care about the people’s interest party” and that second one is also split so the straight up business elite party has a chance to win. Followed by series of do-nothing statistically insignificant, flavour-text parties just for the impression of diversity. It’s all a little circus to give you the idea the population is in control while being completely out of the equation. It only really serves to dissipate their frustration and make them believe they’ve already done everything they could so we don’t get guillotines in the streets.
Make no mistake Fukuyama is right, this IS the end of history, there will not be any democratically elected changes unless the powerful decide change is in their interest and will maintain or increase their power.
Nothing will change until the power is physically taken away from them and history restarts.
Point is, this law was not created in service of the public. It’s just another surveillance measure. Much like Chat Control, which they’ve pushed over and over again, despite getting pushback from literally everyone around the world every time. You could have everyone in the EU sign that petition and it wouldn’t matter because it’s not for you.
Never thought living in a second world country would have it’s benefits
Second-world means axis-power (Germany, Hungary, Australia, Italy, Finland, Japan, etc). It doesn’t mean something like “half-way between first-world and third-world” like Latin America or the USA.
Australia being a famous axis power
Second world doesn’t mean axis powers, it represented the Soviet Union and Soviet aligned countries.
Its a cold war term. The terms represent the two remaining superpowers after WW2.
1st world = The US and US aligned countries
2nd world = Soviet Union and Soviet aligned countries
3rd world = Non-aligned countries. Which just happened to be mostly under developed countries, which is why the term is now used for that. It didn’t actually mean under developed at first. For example, Switzerland is technically a 3rd world country despite being rich and highly developed.
Australia is an axis power! Salutschüsse.
sorry to break this to you, but zoomers are all adults now
deleted by creator
The youngest millenials are almost 30, dude’s gotta get a new hobby or something, rants about Millenials haven’t been the in thing for like 10 years now.
Relevant XKCD
*They’re
nope, their kids. the MTV kid’s kids
From Alpha to Beta in No Time Flat: Consequences of the Online Safety Act
These delineations are quite silly especially when used in a derogatory way. But if one plays that game, there are still “zoomers” who are minors.
Those are probably only on mobile so their knowledge of navigating a PC is probably worse than a boomer and don’t even understand the concept of folders and files.
Yep. I feel like a failure of a father. I was talking to my 12 year old about some website and she was all “what app is that?”
It’s not an app, it’s a website.
But there’s no website app.
You use a web browser? Like Firefox?
What’s a a web bowser? Is Firefox a new furry?
I personally know several in that age group (minor zoomers) who game on Windows and Linux.
There’s always going to be exceptions among those with a more natural tech based interest, but it used to be that everyone was exposed to using a desktop and not something that someone had to individually go out of their way to learn.
This article all day way from back in 2021 showed professors having to rethink how to teach the basics, since now skills that were expected to be known were starting to not be common knowledge.
Gradually, Garland came to the same realization that many of her fellow educators have reached in the past four years: the concept of file folders and directories, essential to previous generations’ understanding of computers, is gibberish to many modern students.
https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z
So yeah people who are more interested in PC gaming, streaming, and even pirating are more likely to find resources to be self taught. But, the regular people who are increasingly growing up only using phones as their computing device aren’t doing the same until forced to.
Nearly positive that the youngest are still minors, but most of them are adults for sure.