brandon
- 0 Posts
- 20 Comments
He posted some Tweets about how he believes ChatGPT (or whichever AI service he uses, I can’t recall) is sentient, and of course, female.
People need to start refusing to do this
brandon@piefed.socialto
Linux@lemmy.ml•It seems Linux Mint is dropping GNU coreutils in favor of rust-coreutils following Ubuntu.English
10·20 days agoYeah, the ‘for reasons I don’t quite understand’ bit was intended slightly sarcastically.
brandon@piefed.socialto
Linux@lemmy.ml•It seems Linux Mint is dropping GNU coreutils in favor of rust-coreutils following Ubuntu.English
401·20 days agoOne issue with this is that uutils is licensed under the MIT license, instead of coreutils’ GPL license. In fact, for reasons I don’t quite understand many of these rust rewrites are licensed with the MIT license. This will contribute to long term erosion of the rights granted by the GPL to software projects and users.
brandon@piefed.socialto
politics @lemmy.world•US edges closer to popular vote deciding winner of presidential electionsEnglish
4·1 month agoNo, these states agree to commit their electors to the winner of the national popular vote. This would make it impossible for one candidate to win the election having lost the national popular vote.
brandon@piefed.socialto
politics @lemmy.world•US edges closer to popular vote deciding winner of presidential electionsEnglish
31·1 month agoIt does not end first past the post voting. If it went into effect it would essentially mean that the popular vote would determine the outcome of the presidential election, by forcing the electoral college results to match. The popular vote would still be first past the post.
brandon@piefed.socialto
politics @lemmy.world•Manhattan DA Launches Sexual Assault Probe Against Eric SwalwellEnglish
4·1 month agoI don’t know the details of the allegations, but it’s possible that the assaults occured in New York.
brandon@piefed.socialto
Technology@lemmy.world•Meta and YouTube found liable in social media addiction trial; Ordered to pay $3 MillionEnglish
4·2 months agoThere will be additional proceedings to determine the amount of punitive damages to apply as well. So this probably isn’t the entire judgement.
Whether it survived appeal to establish a precedent for other complaints is another story.
brandon@piefed.socialto
Lemmy Shitpost@lemmy.world•Dry? Damp? Wet? I love it all.English
6·2 months agoBoycott Divest
Sanctions Masochism
brandon@piefed.socialto
Technology@lemmy.world•YouTube ads are about to get even longer and they’ll be unskippable - DexertoEnglish
14·2 months agoBut, topically, will not block YouTube ads
brandon@piefed.socialtoHacker News@lemmy.bestiver.se•Hisense TVs add unskippable startup ads before live TVEnglish
211·2 months agoIf you never give a tv the internet, it stays a dumb tv, so far.
I think it’s only a matter of time before TV manufacturers start disabling the TVs if they can’t connect periodically. Or they’ll start shipping them with SIM cards.
brandon@piefed.socialto
Fuck AI@lemmy.world•Windows 12 Reportedly Set for Release This Year as a Fully Modular, Subscription-Based, AI-Focused OSEnglish
3·3 months agoI’m not sure if you’re being serious, but software engineering and IT systems administration are different roles typically filled by different people.
A company or organization can have a quite sophisticated IT department without having any software engineers on staff.
brandon@piefed.socialto
politics @lemmy.world•America’s teachers are working two jobs and barely getting byEnglish
6·3 months agoThis is already happening.
https://m.youtube.com/watch?v=QptwxcByzTI&pp=0gcJCa4KAYcqIYzv
brandon@piefed.socialto
politics @lemmy.world•Trump’s unprovoked attack on Iran has no mandate – or legal basisEnglish
6·3 months agoIt’s not a branch, it’s the trunk
brandon@piefed.socialto
Technology@lemmy.world•DVDs are the new vinyl records: Why Gen Z is embracing physical mediaEnglish
171·3 months agoFYI, Tidal is approximately the same price as Spotify and there are several tools floating around on GitHub which will allow you to download high quality flac files from that service.
brandon@piefed.socialto
Fuck Cars@lemmy.world•With the right design, even UPS doesn’t park in the bike laneEnglish
6·4 months agoIn my neighborhood there was a bike lane separated from the motor traffic with concrete bollards.
They removed the concrete bollards and replaced them with these shitty plastic ones… because people kept driving their cars into them.
brandon@piefed.socialto
Ask Lemmy@lemmy.world•Whose death signified an end of an era?English
3·4 months agoEmperor Shōwa
brandon@piefed.socialto
Lemmy Shitpost@lemmy.world•Gojira needs more body positivityEnglish
16·4 months ago



By default bash will only expand an alias if it’s the first argument of the command (that is, the command itself).
It’s probably not intended to use aliases this way, and there are probably better options for you.
However, there is a little trick you can do. If the alias command ends in a space, then bash will also check the next argument:
alias cd='cd 'Notice the trailing space after ‘cd’ in the alias definition.
alias docs='/media/docs'then,
cd docsshould work the way you expect.Another method would be to:
alias docs='echo /media/docs'Then you can do
cd `docs`The backticks will cause the shell to replace that portion with the output of the docs shell command, which will be expanded via the alias.
All that said, it’s probably easiest just to use a link, like another commenter suggested.