So, The Fifa Awards
- 0 Posts
- 46 Comments
Yeah, I agree it still is. Like I am not going to subscribe for $10+ a month for a single show on a single streaming service. I need at least 3 for about $6 for it to even seem reasonable at a minimum. Like if the more streaming services were more like Movies Anywhere, I would love that. Like this service works better for me, I will give them my money type shit.
RedWeasel@lemmy.worldto
Technology@lemmy.world•Open source calculator firmware DB48X forbids CA/CO use due to age verificationEnglish
39·28 days agoThat is wild. There is no exceptions in Colorado for hobbies projects or userbase size. Here is the definition of device. This would apply to an Apple II, calculators, possibly printers, TVs, monitors, and who know what else.
"DEVICE " MEANS ANY GENERAL- PURPOSE COMPUTING DEVICE THAT CAN ACCESS A COVERED APPLICATION STORE OR DOWNLOAD AN APPLICATION .
RedWeasel@lemmy.worldto
Technology@lemmy.world•Western Digital runs out of HDD capacity: CEO says massive AI deals secured, price surges aheadEnglish
3·1 month agoI am sure you will be able to subscribe to use a share along with hundreds of other people for 1 computer at $19.99 a month going forward.
RedWeasel@lemmy.worldto
Technology@lemmy.world•Scientists say quantum tech has reached its transistor momentEnglish
1·2 months agoI can currently only see them used as accelerators of some type right now. Could see them used potentially for GPUs, but generally I suspect some form of compute first. GenAI anyone? SkyNET? But that is only if they can be made portable for laptops or phones which is still a major issue still needing to be addressed.
I don’t expect them to replace traditional chips in my lifetime if ever.
RedWeasel@lemmy.worldto
Technology@lemmy.world•Scientists say quantum tech has reached its transistor momentEnglish
55·2 months agoSo, around 1947. Took about 14 years to get to being able to put into chips. So another decade and a half?
Edit: and another 15 to 25 years after that for it to be in consumer households?
RedWeasel@lemmy.worldto
Linux@lemmy.ml•help made mistake with export and ~/.bashrcEnglish
3·3 months agoTry opening a new terminal. If the commands don’t work, type “export PATH=/usr/bin” not quotes and try again and fix what you did.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Linux kernel version numbers (Greg Kroah-Hartman's blog)English
3·4 months agoI must have been tired when I did that math. I’d be happy with the year as well. Just don’t use the firefox/chrome model.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Linux kernel version numbers (Greg Kroah-Hartman's blog)English
3·4 months agoIf semantic versioning is:
MAJOR version when you make incompatible API changes MINOR version when you add functionality in a backward compatible manner PATCH version when you make backward compatible bug fixes
then I think that would be on like 3.77.0 or something right now. Not terrible, but honestly prefer it to be like the major upped in the new year every year. It is about 43 years old,so 43.x in 2026. Would be easier to know how old a kernel release is without looking it up.
RedWeasel@lemmy.worldto
No Stupid Questions@lemmy.world•How come glasses for hyperopia/farsightedness (reading glasses) are there on the shelves, but glasses for myopia require a prescription?English
51·7 months agoPupillary distance is more important for looking at a distance than looking at something close and eyes often have different prescriptions. Reading glasses are just magnifying glasses on your face.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Thought I'd Died & Linux Was the MessengerEnglish
24·7 months agodead.letter is email draft in some clients when they crash.
RedWeasel@lemmy.worldto
Technology@lemmy.world•Grok’s “white genocide” obsession came from “unauthorized” prompt edit, xAI saysEnglish
18·10 months agoHmm, sure.
RedWeasel@lemmy.worldto
No Stupid Questions@lemmy.world•As a child of the 90s we grew up with PC Political Correctness. Is that WOKE but just in a different form?English
31·11 months agoYou mean treating people with respect and empathizing about their life situations? Shouldn’t that just be normal?
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
2·11 months agoI wonder why colorizing manpages like this is not default in most distros. That seems like an obvious thing to configure for end user’s quality of life.
My best guess would be that each terminal could display differently or be buggy and a “lowest common denominator” approach where it work everywhere. I know blue tends to be to dark unless I change the color to a lighter shade and the font could make a difference as well.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
2·11 months agoNo
I wasn’t intending to come off confrontational, I apologize for that. I was looking at this from it sounding like you wanted any command on a system. I did find that you can colorize man. see script below for an example. As for busybox, it is a small project, so colorizing just it would be relatively easy and easy to add as a patch to a system. Not sure if that would upstream though as it is intended to work well on low memory systems among others.
#!/bin/bash export PAGER="less -r" export GROFF_NO_SGR=1 export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m' man ls
Edit: it does seem that this man colorization is disabled by default.
Edit2: “export MANROFFOPT=-c” can replace “export GROFF_NO_SGR=1” to limit just man.
Edit3: source Arch Linux bbs
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
1·11 months agoI am getting the feeling the you are mis-understanding than each project has their own independent implementing function and that each one would need to be rewritten. There a 10 of thousands of projects. This is not some simple, change 1 project task.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
2·11 months ago16 Color terminals didn’t really start getting used until the 90s and early 2000s. And 256 after that. A lot of software was written back then and it would take a lot to add something that might not display well because of the terminal’s color scheme and now we have color theming.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
2·11 months agoI agree, I just didn’t want to make assumptions about how newer things work with localization these days.
RedWeasel@lemmy.worldto
Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English
4·11 months agoNot everything uses groff. A lot will have their own function or another.
Edit: I think for what you indicting you are wanting to try you’d need to either patch your shell of choice or write your own.
Edit2: If you did patch it, the best way I can think of to get something upstreamed would be to patch bash to use CTRL-Enter to automatically pipe the output to the default pager defined in BASHPAGER followed by PAGER if it doesn’t exist. Then set the BASHPAGER to your “bat” command.

The feature you are going to want to look for is USB Attached SCSI (UAS) or USB Attached SCSI Protocol (UASP) support.