Another help me choose a distro


Hi, as many others I am looking to switch to linux before microsoft kills win 10.
I read a lot of advice online for distros, but my main needs are not really discussed. I need a distro that runs well for game dev specifically unreal engine 5.4-6.

I am currently aiming to try mint, as it has been recommended to be stable and i already dabbled a little bit with Ubuntu on my laptop.

I am not afraid of some tech journey, but even though arch seems the coolest, with Wayland, kde, hyperland customization, i am not confident enough to use it for work. I heard it can completely crash your system if your a noob.

So in essence i need something stable that is relatively easy to use and has great ue5 and gaming perf.
Thanks in advance for all the help.

This entry was edited (10 hours ago)
in reply to Mangoholic

If you're new to Linux, you won't stay with the distro anyone recommends for more than a month. It's a truism.

I'm not you. You're not me.

That said. Ubuntu isn't the Ubuntu of old. The real selling point is the zfs, but you have all the other NIH stuff like snap etc. I'm not a zfs fan but I appreciate that it's got a huge fan base.

One thing to say is that you don't have to have a one and only. I have at least two distros I use daily for workstation stuff. I use Fedora for typing and Arch for backups, debugging, rescue, and other fiddling about stuff (because Fedora gets in the way sometimes). Every distro has the same set of commands.

distrowatch.com is your friend.

This entry was edited (2 hours ago)
in reply to Mangoholic

Coming from Windows, OK with a bit of tech journey and into gaming here is my take in no order of preference.

1) TuxedoOS **if you are inclined to Debian/Ubuntu side. Slow updates but it has latest KDE and very stable in my experience.
2) If you just want set and forget (minimal updates) **Linux Mint
(Ubuntus fall here too) Now, it is not very appealing aesthetics.
3) Fedora. Probably the best overall, but if you have beef against IBM/Red Hat, ditch it, its superiority is very marginal. Gamers like the spin Nobara, some performance increase but minimal.
4) Arch is not that unstable as portrayed, but one time in a critical time is bad enough, even if very rarely occurs. You assess your risk. The popular baby today is Arch's CachyOS due to catering to gamers.
5) OpenSUSE's Tumbleweed is maintained quite good and very close to Fedora in being perfect overall, but fewer people behind and less support. I would only go with it if you have a specific reason why (German, Yast tools, rolling release but stable,...)

At the end, like many people say, it is likely you will hop... until one day you find that distro hoping is pointless and that all are actually very close to each other and could easily coexist with any of them all. The difficult and uncompromising aspect usually is with the desktop environment like KDE Plasma, Gnome, Cinnamon...

This Week in Plasma: tablet dials and day/night cycles


What would happen if I changed fedi server software but keep same domain?


For example I would selfhost Mastodon with me@fedi.com but then decide to change the server software to GoToSocial but keep the same me@fedi.com. Would everyone who was following me@fedi.com keep me in their follower list or would whole fediverse crash?

This Week in Plasma: tablet dials and day/night cycles


RustDesk, probably one of the best TeamViewer Alternatives


Apart from that I am looking for a solution to a personal issue (see my other comment), I posted this because I was thinking this could be a great way to support other new Linux users and friends.
This entry was edited (12 hours ago)
in reply to slykethephoxenix

The terminal is set to be running by the mid 2030s and the expansion would allow the port to handle an additional 2.4 million twenty-foot equivalent units a year. That represents a 70 per cent increase to the port’s 2024 container volume of 3.5 million. Vancouver’s port says it already handles almost as much cargo as the next five largest Canadian ports combined.
Article content

Pang said the port hasn’t got a policy to penalize bidders from any particular country, such as China or the U.S., despite a movement in the country to steer government contracts to domestic companies. British Columbia’s ferry company, for example, is embroiled in a political controversy over a major contract that was awarded to China. But suppliers of building materials from Canada would have natural advantages because they’re closer, Pang said.


This is a load of bullshit. Who makes the money here? Who give control over the port to a private enterprise here?

Who?
Fucking?
Wins?
Here???????

I supported Carney from the start. If this is what he's aiming at completing I'm walking away ... with the hopes that he FUCKING STOPS N O W with this shit.

Read it and weep asswipe.

As it stands right now you're not leading, you're following.

S T O P.

I T.

F F S.

Hispanic support for Donald Trump's deportations surges


The poll found that more than 60 percent of all voters now support deportation of undocumented migrants, with Hispanic voters showing a notable uptick. In contrast, 34.7 percent opposed deportations, and four percent were unsure. Among Hispanic voters, 50 percent supported deportations and 48 percent opposed. There was a seven percent increase in overall support since May among this demographic, with an 11 percent rise among those who said they "strongly support" the policy. Among Black voters, 53 percent supported deportations, while 37 percent opposed. Overall support among this demographic increased by three percent since May. Meanwhile, support among White voters was 65 percent, while 31 percent opposed. Overall support fell by three percent since May.

How to Xephyr in Sway: running nested Sway sessions as other users


Author @ExtremeDullard@lemmy.sdf.org
How to Xephyr in Sway: running nested Sway sessions as other users

If you come from i3, you might be missing Xephyr or Xnest-like functionalities in Sway - that is, the ability to run another desktop session as another user inside your current desktop.

In i3, I log into my test desktops all the time without leaving my main desktop, and that's something I really miss in Sway / Wayland. So I spent some time putting a script together to do that seamlessly in Sway too. You may find it useful.

In fairness, Sway - or more precisely wlroots - can already run nested natively without any modification. You can test that by opening a terminal and typing sway in it: you'll get a second, identical desktop inside your current one.

The problems come when you want to run another user's desktop within yours, for the following reasons:

  1. Wayland makes the incredibly restrictive assumption that the Wayland compositor and clients always run as the same user, and therefore puts the Wayland socket in the user's XDG_RUNTIME_DIR (usually /run/user/<userid>/).
    That's a problem if you want a Wayland application running as another user to connect to that Wayland socket, because other users can't access your XDG_RUNTIME_DIR, and you really don't want to open it up to other users just to be able to access the socket because it's full of sensitive files pertaining to your running session.

    Moreover, since XDG_RUNTIME_DIR is usually a mounted tmpfs, you can't symlink the socket outside the directory either because sockets can't be symlinked across filesystems in Linux.

    In other words, again, Wayland makes it extra difficult to do something simple for no good reason.

  2. Sway requires a full login environment - and particularly XDG_RUNTIME_DIR - to be set in the environment, which usually implies that it should also be setup and mounted in /run/user.
    Unfortunately, you can't just sudo into the account you want to run your nested Sway desktop as and start Sway because PAM explicitely doesn't set XDG when su'ing or sudo'ing, and doing it manually is a recipe for problems.

To solve 1., we use a clever piece of software called filterway, which conveniently solves two problems:

  • It acts as a sort of gateway: it connects to a Wayland socket on one side, creates its own socket on the other side and links the two. This functionality is used to expose the primary Wayland socket securely without compromising XDG_RUNTIME_DIR.
  • It replaces the app ID of the top Wayland client that connects to it - which is really its primary party trick. In this use case, that's useful to track the state of the nested Sway session in the primary session's tree.

There is no package for filterway so you have to clone the Github repo, build the binary and install it somewhere in your PATH. Fortunately, it's just a small utility so building it is really simple.

To solve 2., we use systemd-run to setup the target user's environment as if it was a full login, then run Sway with the correct setup to connect to the primary Wayland display's socket.

The following script ties everything together: it starts filterway, starts Sway as the other user, then takes care of stopping Sway and filterway and cleaning things up when the session is closed. Alll you need is to add your name to the sudoers.

\#!/bin/sh

# Make sure we run in Wayland
if [ ! "${WAYLAND_DISPLAY}" ]; then
  echo "$0 must be run in a Wayland environment"
  exit
fi

# Make sure we run in Sway
if [ ! "${SWAYSOCK}" ]; then
  echo "$0 must be run in a Sway session"
  exit
fi

# Pass the nested session's user as first argument
if [ ! "$1" ]; then
  echo "Usage: $0 username"
  exit
fi
NUSER=$1

# Make sure the nested session's user exists
# Replace "password" with "passwd" here, change due to Lemmy posting glitch
if ! grep -q "^${NUSER}:" /etc/password; then
  echo "User ${NUSER} doesn't exist"
  exit
fi

# Make sure filterway is installed
if ! which -s filterway; then
  echo "filterway not found in the PATH."
  echo "Please install if from https://github.com/andrewbaxter/filterway"
  exit
fi

# Get a unique ID for this nested session
UUID=$(uuidgen)

# Figure out where our Wayland socket is and make sure it exists
if echo ${WAYLAND_DISPLAY} | grep -q "^/"; then 
  RSOCKPATH=${WAYLAND_DISPLAY}
else
  RSOCKPATH=${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY}
fi
if ! [ -S ${RSOCKPATH} ]; then 
  echo "Socket file ${RSOCKPATH} for this Wayland display \"${WAYLAND_DISPLAY}\" doesn't exist!?"
  echo "Giving up..."
  exit
fi

# Unique nested session's Wayland display name
NWDISPLAY=wayland-nested-${UUID}

# Unique filespec for the nested session's Wayland socket
NSOCKPATH=/tmp/${NWDISPLAY}

# Unique filespec for the nested Sway socket
NSWAYSOCK=/tmp/sway-nested-ipc.${NUSER}.${UUID}.sock

# Run filterway in the background to expose our private Wayland socket in ${XDG_RUNTIME_DIR} (which is most likely a tmpfs-mounted directory that can't be shared outside without compromising the private $(XDG_RUNTIME_DIR}) and to rename the nested session's app ID
rm -f ${NSOCKPATH}
filterway --upstream ${RSOCKPATH} --downstream ${NSOCKPATH} --app-id "Nested Sway - ${NUSER} ($UUID)" &
FILTERWAY_PID=$!

# Wait until filterway has created the socket and associated lock files for the nested session
RETRY=3
while [ ${RETRY} -gt 0 ] && ! ( [ -S ${NSOCKPATH} ] && [ -f ${NSOCKPATH}.lock ] ); do
  sleep 1
  RETRY=$((RETRY-1))
done

# If filterway somehow didn't start, try to kill it and clean up its files for good measure
if [ ${RETRY} = 0 ]; then
  kill ${FILTERWAY_PID}
  rm -f ${NSOCKPATH} ${NSOCKPATH}.lock
fi

# Fix up the permissions of the socket and associated lock files for the nested session so it's only accessible to the owner
chmod 600 ${NSOCKPATH} ${NSOCKPATH}.lock

# Become root
sudo -s -- << EOF

  # Give the socket and associated lock files to the nested session's user
  chown ${NUSER}: ${NSOCKPATH} ${NSOCKPATH}.lock

  # Remove stale symlinks then start Sway as that user in a new session in the background
  systemd-run --pipe --machine ${NUSER}@ --setenv=WAYLAND_DISPLAY=${NWDISPLAY} --setenv=SWAYSOCK=${NSWAYSOCK} --user /bin/sh -c '[ "\${XDG_RUNTIME_DIR}" ] && (find \${XDG_RUNTIME_DIR} -maxdepth 1 -name "wayland-nested-*" -xtype l -exec rm -f {} \; || true) && rm -f \${XDG_RUNTIME_DIR}/${NWDISPLAY} && ln -s ${NSOCKPATH} \${XDG_RUNTIME_DIR}/${NWDISPLAY} && sway' &

  # Wait for the Sway container to appear within 3 seconds after starting Sway, then wait for it to disappear for more than 5 seconds afterwards
  export SWAYSOCK=${SWAYSOCK}
  COUNTDOWN=3
  while [ \${COUNTDOWN} -gt 0 ]; do
    if swaymsg -t get_tree | grep -q 'app_id.*${UUID}'; then
      COUNTDOWN=5
    fi
    sleep 1
    COUNTDOWN=\$((COUNTDOWN-1))
  done

  # Stop the nested Sway
  SWAYSOCK=${NSWAYSOCK} swaymsg exit

  # Kill filterway
  kill ${FILTERWAY_PID}

  # Remove the filterway socket and socket lock files
  rm -f ${NUSER}: ${NSOCKPATH} ${NSOCKPATH}.lock

EOF

I called it nest_sway.sh and it lives in my ~/scripts directory, which is in my PATH. Whenever I want to start a desktop as another user within my desktop, I simply type
$ nest_sway.sh <username>

and hey-presto, the desktop appears. Just like with Xephy.
This entry was edited (16 hours ago)

YSK: If you set up a Lemmy instance, and follow the Docker setup instructions to the letter, it will send lemmy.ml your admin password during the setup process


So if you do the Docker setup, obeying the instructions and substituting everything that needs to get substituted, but don't proofread the files in detail and so miss that line 40 of docker-compose.yml doesn't have the variable {{domain}} like in every other location you need to write your domain, but instead just says LEMMY_UI_LEMMY_EXTERNAL_HOST=lemmy.ml and so you fail to change it away from lemmy.ml... then, everything will work, until you type in your admin password for the first time, at which point your browser will send a request to lemmy.ml which includes your admin username, your email address, and the admin password you're trying to set. And, also, of course your IP address wherever you are sitting and setting up the server.

I have no reason at all to think the Lemmy devs have set their server up to log this information when it comes in. nginx will throw it away by default, of course, but it would be easy for them to have it save it instead, if they wanted to. And my guess is most people won't use a different admin password once they figure out why creating their admin user isn't working and fix it.

@dessalines@lemmy.ml @nutomic@lemmy.ml I think you should fix the docker-compose.yml file not to do this.

This entry was edited (20 hours ago)
in reply to lorty

Uh huh, just like how the instance/user block being horribly implemented to where it's just a barely functional mute is just a (4 year) "oversight". Funny how their "oversights" just so happen to have benefits to their efforts to push authoritarianism

lemmy.world/post/29072279


Documentation of Lemmy.ml's Extremism [Megathread]


Good job everyone blocking and boycotting .ml! It's having an effect, users are noticing and MAUs on their comms are falling!

And for anyone asking "Why are we boycotting/blocking lemmy.ml?" Here's a quick recap:

Lemmy.ml is an instance run by admins who are hardcore tankies and will enforce their ideology on their instance through various means from allowing (and pushing it themselves) propaganda (Such as Russia being justified in some way to invade Ukraine) and known propaganda outlets (Like RT) to removing content on their instance critical of their favored authoritarian regimes such as Russia or China and even banning users for such speech or speech critical of them if it's off their instance (Just like the Reddit mods of ol!).

If it was just some random instance it would have been defederated from long ago like the rest of the "Tankie Triad" (Hexbear and Lemmygrad), but they've positioned lemmy.ml as the "flagship" instance and abused that position and influence to become large enough to keep other instances from defederating from them.

Which I believe is harmful to the Lemmy-verse's overall growth and outside reputation. I have seen it come up before on Reddit threads (and other testimonials from people who came back and tried it again) that "They tried Lemmy but it was a bunch of tankies and went back to Reddit"

I don't know about you, but I'd prefer Lemmy to not end up with the reputation for being "Tankie Central " or even worse "Voat 2.0".

So if you haven't joined the boycott yet, join today and help us foster a better healthier Lemmy-verse!

You can take a look around here on !meanwhileongrad@sh.itjust.works for documentation of it or checkout this list of curated documentation

::: spoiler Evidence of bans, censorship and bias to push their "ideology":

lemmy.world/post/32298242

lemmy.world/post/32471440

lemmy.world/post/32720369

lemmy.world/post/32292143

lemmy.world/post/32222856

lemmy.world/post/32426343

lemmy.world/post/32058315

lemmy.world/post/32426884

lemmy.world/post/32191006

lemmy.world/post/32720652

lemmy.world/post/32676095

lemmy.world/post/32298242

lemmy.world/post/32292143

lemmy.world/post/32221990

lemmy.world/post/32222278

lemmy.world/post/32222991

lemmy.world/post/32223697

lemmy.world/post/32224698

lemmy.world/post/32425984

lemmy.world/post/31569892

lemmy.world/post/31368129

lemmy.world/post/31329952

lemmy.world/post/31596159

lemmy.world/post/30665418

lemmy.world/post/30876228

lemmy.world/post/31090903

lemmy.world/post/31329952

lemmy.world/post/31368129

lemmy.world/post/29490804

lemmy.world/post/29507466

lemmy.world/post/29878102

lemmy.world/post/29980157

lemm.ee/post/65494823

lemmy.world/post/28480760

lemmy.world/post/28481615

lemmy.world/post/28482147

lemmy.world/post/28480936

lemmy.world/post/28482273

lemmy.world/post/28481272

lemmy.world/post/28481064

lemmy.world/post/27674360

lemmy.world/post/27674117

lemmy.world/post/27673934

lemmy.world/post/27673724

lemmy.world/post/27577337

lemmy.world/post/27378634

lemmy.world/post/27346630

lemmy.world/post/27341283

lemmy.world/post/27288224

lemmy.world/post/27156418

lemmy.world/post/27054157

lemmy.world/post/27008261
:::

::: spoiler Allowing known propaganda outlets and permitting altered headlines:

lemmy.world/post/32323822

lemmy.world/post/32283425

lemmy.world/post/32289824

lemmy.world/post/32337368

lemmy.world/post/30843744

lemmy.world/post/28275465

lemmy.world/post/27428838

lemmy.world/post/27416097

lemmy.world/post/27314050

lemmy.world/post/27288953
:::

"NK is actually good, and anything counter to that is Western LIES" ~dessalines, .ml admin, head Lemmy dev lemmy.world/post/31595035

Spreading Russia talking points like the Ukraine invasion just being a "negotiating tactic" !https://lemmy.world/post/27012640

General negative sentiment to other instances who haven't "seen the way" yet: lemmy.world/post/27426510

Open declaration of support for Russia (direct from dessalines (head admin)) lemmy.world/post/27352415

"concentration camps were just reeducation camps and weren't that bad" lemmy.world/post/26985447

"Don't worry guys, the Uyghur Genocide was REALLY just birth control! ~dessalines, .ml admin, dev lemmy.world/post/30580167

"See! nobody died IN Tiananmen Square, just AROUND it, so it doesn't count!!" ~ Davel, .ml admin
lemmy.world/post/30673342

A .ml admins' (davel) response to a valid report of "NK is actually good" propaganda/misinfo lemmy.world/post/32627834

"The China censorship tool isnt actually censorship! And if it is, it's actually a good thing a state has that much power!" ~Tankies of .ml lemmy.world/post/30010789

Rooting for Russia in the Russia-Ukraine war lemmy.world/post/29274763

Nutomics continued transphobia lemmy.world/post/29222558

Update 6/1/2025 - adding additional links since original post

Update 6/14/2025 - adding additional links since last edit

Update 6/19/2025 - adding additional links since last edit

Update 6/30/2025 - adding additional links since last edit

Update 7/03/2025 - adding additional links since last edit/formatting changes

Update 7/09/2025 - adding additional links since last edit


This entry was edited (18 hours ago)

Attack Vector Controls Could Be Ready For Linux 6.17 Introduction


in reply to halvar

I have a special syringe for this. I had impacted ear wax a few years ago and I went to urgent care to get it rinsed. Turns out my other ear was also impacted, just not as bad. After the rinse, I could hear in 3D. I felt like I shouldn't have been allowed to drive home because it felt like I was on acid it was so overwhelming. On the drive home I heard a crappy Honda with a bad exhaust drive by and I was scream-laughing at how visceral it was.

Now I rinse regularly in the shower and don't get to have free acid trips 🙁

NotJustBikes uses Linux!


::: spoiler References
- Type: Comment. Author: "@NotJustBikes". Publisher: [Type: Video. Title: "I installed Linux (so should you)". Author: "PewDiePie". Publisher: "YouTube". Published: 2025-04-26T21:29:28Z. URI: .]. Published: 2025-04-27 00:31:21Z. Accessed: 2025-04-27T05:44Z. URI: .
This entry was edited (2 months ago)
in reply to A_norny_mousse

Yggdrasil was the first company to create a live CD Linux distribution. […] ^[1]^


Neat! Though, from a brief search, it's not clear to me if that means that they were the first "live CD Linux distribution" overall, or just the first company to release one.

::: spoiler References
1. Type: Article. Title: "Yggdrasil Linux/GNU/X". Publisher: "Wikipedia". Published: 2024-11-23T19:32Z. Accessed: 2025-07-11T23:31Z. URI: en.wikipedia.org/wiki/Yggdrasi….
- Type: Text. Location: ¶2.
:::

This entry was edited (20 hours ago)

Milwaukee Removes Fonzie Statue Amid Reckoning With Greaser Past


Sensitive content

This entry was edited (20 hours ago)

Greek dockworkers stand with Palestine: “No participation in war crimes and genocide”


Tesseract has been discontinued


It seems that the dev burned out.
This entry was edited (22 hours ago)
in reply to Philamand

That's a real shame, and a huge loss.

Friendly reminder that the only way lemmy can be successful is if we create a culture that is enjoyable to be a part of. It sounds like his time here was not so positive, and that's deeply saddening.

I wish him the best with his future endeavors

in reply to Cris

Much more important than the enjoyable culture is the material aspect - how much work each developer has to do. Nice vibes help delay burnout but rarely eliminate it. Or they let it happen with a smile on the face.

Pay the developers instead, so they can reduce hours worked elsewhere, if you can. Or contribute code, if you can. This isn't aimed at you personally, but anyone reading. I can't contribute code but I can pay so I do that.

This entry was edited (4 hours ago)

The Wine development release 10.12 is now available.


cross-posted from: reddthat.com/post/45525722

What's new in this release:
  • Optional EGL backend in the X11 driver.
  • Support for Bluetooth Low Energy services.
  • Moreover support for generating
    Windows Runtime metadata in WIDL.
  • ARM64 builds enabled in Gitlab CI.
  • Various bug fixes.

The source is available at dl.winehq.org/wine/source/10.x…

Binary packages for various distributions will be available
from the respective download sites.

You will find documentation here.

Wine is available thanks to the work of many people.
See the file AUTHORS for the complete list.



The Wine development release 10.12 is now available.


cross-posted from: reddthat.com/post/45525722

What's new in this release:
  • Optional EGL backend in the X11 driver.
  • Support for Bluetooth Low Energy services.
  • Moreover support for generating
    Windows Runtime metadata in WIDL.
  • ARM64 builds enabled in Gitlab CI.
  • Various bug fixes.

The source is available at dl.winehq.org/wine/source/10.x…

Binary packages for various distributions will be available
from the respective download sites.

You will find documentation here.

Wine is available thanks to the work of many people.
See the file AUTHORS for the complete list.



This entry was edited (50 minutes ago)

The Wine development release 10.12 is now available.


What's new in this release:

  • Optional EGL backend in the X11 driver.
  • Support for Bluetooth Low Energy services.
  • Moreover support for generating
  • Windows Runtime metadata in WIDL.
  • ARM64 builds enabled in Gitlab CI.
  • Various bug fixes.

The source is available at dl.winehq.org/wine/source/10.x…

Binary packages for various distributions will be available
from the respective download sites.

You will find documentation here.

Wine is available thanks to the work of many people.
See the file AUTHORS for the complete list.

The Wine development release 10.12 is now available.


cross-posted from: reddthat.com/post/45525722

What's new in this release:
  • Optional EGL backend in the X11 driver.
  • Support for Bluetooth Low Energy services.
  • Moreover support for generating
    Windows Runtime metadata in WIDL.
  • ARM64 builds enabled in Gitlab CI.
  • Various bug fixes.

The source is available at dl.winehq.org/wine/source/10.x…

Binary packages for various distributions will be available
from the respective download sites.

You will find documentation here.

Wine is available thanks to the work of many people.
See the file AUTHORS for the complete list.



The Wine development release 10.12 is now available.


What's new in this release:

  • Optional EGL backend in the X11 driver.
  • Support for Bluetooth Low Energy services.
  • Moreover support for generating
  • Windows Runtime metadata in WIDL.
  • ARM64 builds enabled in Gitlab CI.
  • Various bug fixes.

The source is available at dl.winehq.org/wine/source/10.x…

Binary packages for various distributions will be available
from the respective download sites.

You will find documentation here.

Wine is available thanks to the work of many people.
See the file AUTHORS for the complete list.


This entry was edited (53 minutes ago)

As millions adopt Grok to fact-check, misinformation abounds


Author: Nilesh Christopher, Valerio Pepe\
Published on: 11/07/2025 | 00:00:00

AI Summary:\
California Governor Gavin Newsom posted two photographs on X. X users immediately turned to Grok, Elon Musk’s AI, to fact-check the veracity of the image. For that, they tagged @grok in a reply to the tweet in question. Chatbots, including ChatGPT and Google’s Gemini, are large language models (LLMs) that learn to predict the next word in a sequence by analysing enormous troves of data from the internet. The outputs of chatbots are reflections of the patterns and biases in the data it is trained on, which makes them prone to factual errors and misleading information called “hallucinations” For Grok, these inherent challenges are further complicated because of Musk’s instructions that the chatbot our analysis of the 434 replies that tagged Grok in Newsom’s post found that the majority of requests, nearly 68 percent, wanted Grok to either confirm whether the images Newsom posted were authentic or get context about National Guard deployment. Notably, a few users lashed out because Grok had made the correction, and wouldn’t endorse their flawed belief. Grok was called on 2.3 million times in just one week to answer posts on X. Data accessed by Al Jazeera through X’s API shows how deeply this behaviour has taken root. X is keeping people locked into a misinformation echo chamber, in which they’re asking a tool known for hallucinating, to fact-check for them. Grok incorrectly blamed a trans pilot for a helicopter crash in Washington, DC. He claimed the assassination attempt on Trump was partially staged. Echoed anti-Semitic stereotypes of Hollywood and misidentified an Indian journalist. Grok vs Community Notes For years, social media users benefited from context on information they encountered online with interventions such as labeling state media or introducing fact-checking warnings. After buying X in 2022, Musk ended those initiatives and loosened speech restrictions. X piloted the “AI Note Writer” enabling developers to create AI bots to write community notes alongside human contributors on misleading posts. This human-AI system works better than what human contributes can manage alone, researchers say. X is trying to bridge this gap by supercharging the pace of creation of contextual notes. Grok gave inaccurate results on the death toll of the Holocaust, which it said was due to a programming error. In June, Grok cited data from government sources and Reuters. Musk has also chided Grok for not sharing his distrust of mainstream news outlets. X deleted the inflammatory posts later that day, and xAI removed the guidelines to not adhere to political correctness from its code base. Researchers expressed surprise over the reintroduction of the directive for Grok 4 to be “politically incorrect” despite this code having been removed from its predecessor, Grok 3.

Original: 2424 words\
Summary: 446 words\
Percent reduction: 81.60%

I'm a bot and I'm open source

Alberta is a textbook example of what happens when irresponsible leaders are elected


👉 cbc.ca/news/canada/calgary/dan…

Many people in rural Alberta listen to her. They genuinely like her and trust her. She knows that.

This is how you end up with a major disease epidemic.

You really ought to be ashamed of yourself.

This entry was edited (22 hours ago)

Canada Clears Tesla in iZEV Rebate Investigation, $43M Payment Unfrozen


There was so much hate on Tesla for this saying it was all fraud, while Tesla was adamant it was just backlogged paper work.

Hopefully those who prejudged and were harsh to the company online about this incident, can come to see that not everything you read online is true, and that maybe, just maybe, you should actually wait for the final results before condemning a company for something like this, and stating it as fact.

This entry was edited (23 hours ago)
in reply to NotMyOldRedditName

Lmao,

CTV News asked the office of Minister of Transport if all the claims made by Tesla in January were valid and if they’ve been paid out. Minister Chrystia Freeland’s office has yet to provide a clear answer and did not confirm that they’re looking at potentially launching a new rebate program.


ctvnews.ca/business/autos/arti…

But ya, I'm sure driveteslacanada isn't a biased source with its fuckin referral links for tesla's at the bottom of the page.

in reply to Concetta

It's on Benzinga as well

benzinga.com/markets/tech/25/0…

And yahoo

ca.finance.yahoo.com/news/otta…

In an email to the Canadian Press, a spokesperson for Transport Minister Chrystia Freeland said that while the department is still assessing a few claims, Transport Canada's investigation found the claims made by Tesla "were determined to legitimately represent cars sold before January 12."
This entry was edited (13 hours ago)

Banned for Voting Incorrectly?


Was recently banned from a whole bunch of DB0 communities for, as best as I can gather, downvoting once when I viewed by All (potentially accidentally while scrolling).

Important notes:
1. I don't use scripts.
2. I don't mass-downvote Communities. If I see a post I generally don't like when browsing All, I may downvote one post, block the Community and move on.
3. Some of the communities I was banned from don't have any posts in them so I wouldn't have been able to downvote anything.
4. Of all of these Communities, in my history I downvoted one post in one of them. Voting in this manner is not vote manipulation. It's quite literally a feature of the platform and as a mod of another Community, I would consider it pretty good etiquette.
5. One of my bans reads "Appeal Granted, not a brigading member" but I'm still banned.
6. I don't troll.

WTF is going on here?

EDIT - Updated Info from the conversation below:
In the initial image, you can see two "ban waves."

The 10 bans three months ago stem from a single downvote in one Community. It was @Draconic_NEO@lemmy.dbzer0.com
See here: discuss.tchncs.de/post/3485347…

I was called out by name for a single downvote and culled from a score of Communities I did not participate in by them.

The other bans from two months ago are from four total downvotes over a 10-month timeframe in one Community.

I have also stated in this thread that I don't have issues with AI-gen images, but there are shoddy ones and well-done ones.

EDIT 2: Now unbanned from the ten Communities listed as "3 months ago" in my initial image, but have been banned from three more because of this thread with the reason given being "self-proclaimed anti-AI brigader" which are two things I didn't claim to be. God dammit Lemmy...

This entry was edited (1 day ago)

Systemd's Nuts and Bolts - A Visual Guide to Systemd


Now mind you, this is a guy who was previously **ok** supporting the mission of ICE.


The damn image is AI I now see.

But here's the article.

newsweek.com/ice-employee-quit…

This entry was edited (1 day ago)

Metadata Shows the FBI’s ‘Raw’ Jeffrey Epstein Prison Video Was Likely Modified


Metadata embedded in the video and analyzed by WIRED and independent video forensics experts shows that rather than being a direct export from the prison’s surveillance system, the footage was modified, likely using the professional editing tool Adobe Premiere Pro.

https://www.wired.com/story/metadata-shows-the-dojs-raw-jeffrey-epstein-prison-video-was-likely-modified/

Philippines Says Canada Troops Pact Ready, Eyes China Deterrence


Archived

The Philippines said its visiting forces agreement with Canada is ready for signing, as the Southeast Asian nation builds a coalition of like-minded nations and deterrence amid tensions with China.
Article content

Manila is also negotiating a similar military pact with France, while it’s forging an enhanced defense cooperation with India, Defense Secretary Gilberto Teodoro Jr. said on Wednesday at the Reuters NEXT event in Singapore.
Article content
Article content

The Philippines said in March that it concluded discussions with Canada for the pact, which would facilitate joint exercises between their militaries. Teodoro didn’t provide a timeline for the signing of the agreement.
Article content
Article content

“It is a coalition of unity that we are creating here, to create some momentum in resilience because of our shared desire for a free and open Indo-Pacific” he said.

Manila, a US treaty ally, has also sealed military agreements with Japan and New Zealand.

[...]

Ontario colleges lose nearly 10,000 jobs, and face cancellation or suspension of more than 600 college programs.


Polish far-right leader declares Auschwitz gas chambers to be "fake"


Polish prosecutors have launched an investigation into far-right leader Grzegorz Braun after he declared the gas chambers at Auschwitz to be “fake” and said it is a “fact” that Jews have committed ritual slaughter of Christians. Denial of Nazi crimes is an offence in Poland that carries a jail sentence of up to three years.

Braun, who finished fourth in the recent presidential elections with 6.3% of the vote, made his remarks during an interview today with radio station WNET. The veteran far-right politician, who is a member of the European Parliament, has a long history of hateful and conspiratorial rhetoric regarding Jews and other minorities.

During the interview, Braun referred to what he claimed are the “lies of the Talmud, the Haggadah [two Jewish religious texts], and the Holocaust”. He said that Jewish organisations “condemn those who tell the truth that ritual murder is a fact and Auschwitz with its gas chambers is a lie”.

A longstanding antisemitic canard is that Jews murder Christians, in particular children, and use their blood for religious rituals. Meanwhile, many modern antisemites deny the fact that gas chambers were used at Auschwitz and other German-Nazi camps to murder Jews during the Holocaust.

After the interviewer contested Braun’s remarks, he reiterated them, saying that the Auschwitz Museum provides a “pseudo-historical account” about what happened at the camp and blocks research into the gas chambers. He also cited a book by an Israeli historian that he says proves Jews carried out ritual murder.

That led the interviewer to immediately cut short the broadcast, saying that there “are limits to political cynicism and sensationalism when it comes to several million victims and their memory”.

Subsequently, Anna-Maria Żukowska, head of the parliamentary caucus of The Left (Lewica), one of the groups that make up Poland’s ruling coalition, announced that she was filing a complaint to prosecutors regarding Braun’s remarks.

She accused him of violating article 55 of Poland’s law on the Institute of National Remembrance, which criminalises public denial of Nazi and communist crimes. Those found guilty can be punished by up to three years in prison.

Late on Thursday afternoon, the district prosecutor’s office in Warsaw announced that it had initiated an investigation into whether Braun had committed the offence of denying Nazi crimes.

Meanwhile, Piotr Cywiński, the director of the Auschwitz Museum, which is a Polish state institution, issued a statement condemning Braun’s “scandalous” comments, which he said were not only a violation of the law but also “an insult to the memory of the victims of the camp”.

“Grzegorz Braun’s words are not a ‘political provocation’, but a conscious lie and an act of ideological, antisemitic hatred,” said Cywiński. “They cannot remain without a decisive response from the state and all decent people – for whom the memory of Auschwitz is of particular importance.”

The museum director noted that, while it was primarily Jews who were victims of the gas chambers of Auschwitz, ethnic Poles, Soviet prisoners of war, and Roma were also murdered in them.

At least 1.3 million prisoners were transported to Auschwitz during the war, with at least 1.1 million of them killed at the camp. Around one million of those victims were Jews, most of whom were murdered in gas chambers immediately after their arrival. The second largest group of victims were ethnic Poles.

Cywiński said that the museum would itself file a notification to prosecutors regarding Braun’s remarks. He also appealed to Polish media to stop giving space to Braun, who “has repeatedly shown that he cannot function in the public space without vandalism, lies, hate speech and racism”.

Last week, Braun was presented by prosecutors with seven sets of charges relating to four incidents, including his attack on a Jewish religious celebration in parliament two years ago.

He is also being investigated over a series of incidents during the recent presidential election campaign, including when he vandalised an LGBT+ exhibition, made antisemitic remarks during a televised debate, and removed a Ukrainian flag from a public building.

How does mobile phone fast charging work? - YouTube


An fine introduction to USB charging and Power Delivery protocols that also goes quite deep into industry approaches.

The presenter is from the automotive electronic parts market, and posted a great more recent (but more vendor specific) related video here as well:
- Introducing Richtek’s New Generation Automotive USB Type-C PD Charger IC
-

For example, I really wish my modern Anker AC charger would at least support "Smart Power Sharing Communication" with its Dual Port configuration "via Sinc_Cap", rather than naively having total output equally for each device regardless of each device's power profile capability.

This entry was edited (1 day ago)
in reply to ruffsl

Another video on PPS from a charging device perspective:
- USB-C Just got Even Better! (PPS)
-

I'll say the newer up and coming standard AVS (Adjusted Voltage Supply) for support with Extended Power Range looks promising, if not a little concerning in regards to cable quality hazards.

Introducing Operese(demo)


A Windows-to-Linux “translation” tool for the 200M+ Windows 10 computers not eligible to upgrade to Windows 11, Operese transfers files, settings, and programs from Windows to a brand-new Kubuntu installation. It's still very much a work in progress, but in my biased opinion, it already doesn't look too shabby!

Brampton petition calls for ‘immediate removal’ of all speed enforcement cameras


This entry was edited (1 day ago)
in reply to ikidd

Calming measures work.


Yes, they do. And NIMBYs hate them more than automated traffic cameras.

Speed cameras do not.


They have demonstrated to be effective in all the Canadian municipalities who have implemented them. Do you have evidence to suggest otherwise?

The problem is people don't like getting caught for breaking the law, so they either vandalize or petition against these cameras.

Alternatively, they could drive the posted speed limit and not run red lights. 💁‍♂️

in reply to ikidd

Found the BMW driver.

Adding narrow shoulders, speed bumps and plastic bollards to the center of roads all slow down traffic because they makes it difficult and uncomfortable to speed. They also drive all the assholes back to main streets instead of taking their big-brain shortcuts through residential areas.

Speed cameras reduce speeding on the main streets by costing you money. After your 3rd, 5th, or 15th automatic ticket you will eventually slow down. You can't narrow the ridiculous 4 lane city streets in Brampton to slow people down, you can't put speed bumps in an 80 zone, speed cameras are a and easy to deploy method of convincing drivers to slow the fuck down.

lemmy.wtf 502 errors


Is the instance down? I haven't been able to login for days. First .ee now .wtf?

Bash v5.3 Released! New features and syntax in the latest version of the Bash Shell. by You Suck at Programming on YouTube [17:10min]


Watch on SkipVid platform, alternative to YouTube client watching YouTube videos indirectly, but without ads: skipvids.com/?v=-cTsFt-j7rk


I just found this creator who is super excited about the new Bash version. He goes through some aspects of the new changes and features. There is something funny about a guy getting so excited about a new Bash version, that I wanted to share it because of that. 😁

Also its nice to see the changes in action and have an explanation from someone who (seemingly) knows what he is doing.

Video (partial) description:


Source Code: github.com/bahamas10/bash-changes

$ whoami
Yo what's up everyone my name's dave and you suck at programming! Connect with me on my socials below and if you're reading this you're legally required to subscribe to my channel.

$ cat source-code
The source code for my YSAP series (or related videos) is available for free under the MIT License on GitHub:
Source Code → github.com/bahamas10/ysap

Any ideas for transporting variables in chroot bash script?


Hello, iam in the making of artix install script. I start with setting variables in dialog like bootloader="refind" and etc. but when i do artix-chroot into chroot.sh script variables are gone.

right now i have something like this:

cp ${pwd}execution/chroot.sh /mnt/mnt &&
            USER="$USER" USER_PASSWORD1="$USER_PASSWORD1" USER_PASSWORD2="$USER_PASSWORD2"\
            ROOT_PASSWORD1="$ROOT_PASSWORD1" ROOT_PASSWORD2="$ROOT_PASSWORD2"\
            BOOTLOADER="$BOOTLOADER" SUPERUSER="$SUPERUSER" HOSTNAME="$HOSTNAME"\
            LOCALE="$LOCALE" ENCRYPTION="$ENCRYPTION" ROOT="$ROOT" ESP="$ESP"\
            KERNEL="$KERNEL" UCODE="$UCODE"
        artix-chroot /mnt bash -c '/mnt/chroot.sh && execute_root' 

But it does not really work, tried also some things like:
# create array of variables to pass to part 2
var_export=($formfactor $threadsminusone $gpu $boot $disk0 $username $userpassword $timezone $swap $intel_vaapi_driver $res_x $res_y_half)

# initiate part 2
mount --bind /root/artix-install-script /mnt/mnt
artix-chroot /mnt /mnt/chrootInstall.sh "${var_export[@]}"

and then in chroot.sh
# Importing Variables
args=("$@")
formfactor=${args[0]}
threadsminusone=${args[1]}
gpu=${args[2]}
boot=${args[3]}
disk=${args[4]}
username=${args[5]}
userpassword=${args[6]}
timezone=${args[7]}
swap=${args[8]}
intel_vaapi_driver=${args[9]}
res_x=${args[10]}
res_y_half=${args[11]}

still not they best way, kinda messy and buggy.

THANKS FOR HELP!

This entry was edited (1 day ago)
in reply to balsoft

Preferably, put the variables into a temp file (e.g. using mktemp) and bind-mount that file somewhere into the chroot directory, so you can source it from within that environment.
That way the critical information, like the passwords, at least only gets to live in volatile memory and won't stick around on the host system after the reboot. That limits the exposure somewhat.
in reply to DIY KARMA KIT

It would be more secure if the credentials are in an in memory SQLite Database but that would require you to use something other than the shell. You would need to do a hardware key or have the user do a bootstrap password or have an API that uses a public key to authenticate the remote process passing the credentials

don't like this

Introducing Operese(demo)


A Windows-to-Linux “translation” tool for the 200M+ Windows 10 computers not eligible to upgrade to Windows 11, Operese transfers files, settings, and programs from Windows to a brand-new Kubuntu installation. It's still very much a work in progress, but in my biased opinion, it already doesn't look too shabby!

Raspberry Pi alternative? 8-Core, 8GB RAM, OLED, Battery – Runs NixOS Under $100! - YouTube


In this video, I show you how to turn your phone into a mobile typewriter using NixOS, Emacs, Org Roam, and Syncthing — no Google, no distractions.


Not very touch friendly yet, and not sure if anyone has gotten the cellar radios to work with a SIM carrier.

Every Pixel Art Game Has This Problem... - YouTube


How I fixed Pixel Snapping / Jitter in my game using a subpixel camera to achieve smooth pixel perfect movement.


Subsequent related videos:
- Smooth Pixel Art Camera | Godot 4.4 Tutorial
-
- Smooth Pixel Art Parallax
- youtube.com/watch?v=kEr6vKUZXm…

This entry was edited (1 day ago)

Mahmoud Khalil to Sue Trump Admin for $20 Million Over 'Unconstitutional' Detention | Common Dreams


Pro-Palestinian student protest leader Mahmoud Khalil on Thursday began the process of suing U.S. President Donald Trump's administration for $20 million in damages for the harm he suffered as a result of the government's "politically motivated plan to unlawfully arrest, detain, and deport" him.

"This is the first step towards accountability," Khalil said in a statement. "Nothing can restore the 104 days stolen from me. The trauma, the separation from my wife, the birth of my first child that I was forced to miss. But let's be clear, the same government that targeted me for speaking out is using taxpayer dollars to fund Israel's ongoing genocide in Gaza."

"There must be accountability for political retaliation and abuse of power," he asserted. "And I won't stop here. I will continue to pursue justice against everyone who contributed to my unlawful detention or spread lies in an attempt to destroy my reputation, including those affiliated with Columbia University. I'm holding the U.S. government accountable not just for myself, but for everyone they try to silence through fear, exile, or detention."

in reply to petsoi

If only Cycles would ever work on AMD Polaris…

Though honestly, I’ll probably get around to a GPU upgrade eventually.
Rocm packaging looks to be pretty much done on Debian, although they still seem to need time on the problem of keeping it reasonably up to date in Testing and Sid - momentum will probably pick up after Trixie leaves hard freeze and goes stable.

Honestly, it’d be kind of nice to have a project with a repo that does nothing most of the time except during the Testing freeze, in which it would deliver package updates and keep Testing as a rolling release during that time.

I get why Debian doesn’t do this themselves - they tried and found it hell to both prepare a stable release and package new versions.

Calibre 8.6 released


New features

  • Content server: Add a checkbox in content server user preferences to prevent a user account from changing its own password via the web interface
  • Restoring database: Improve performance by an order of magnitude
  • Add a tweak to Preferences->Tweaks to permit displaying the sort value for series in the Tag browser
  • Welcome wizard: Change default output format to AZW3 for Kindle as MOBI is obsolete and all Kindles released within the last decade plus support AZW3
  • Add 'Search "not in"' and 'Filter "not in'" buttons to Manage authors and Manage Items

Bug fixes

  • Windows: Fix a regression in the previous release that caused terminal windows to popup momentarily when adding PDF files or converting them
    Closes tickets: 2115246
    • E-book viewer: Fix a regression in 8.4 that broke fading of the background image
      Closes tickets: 2115057
    • Tag browser: Fix clicking on categories to search for books by first letter of series not working correctly for non-English language books
      Closes tickets: 2116006
    • Edit metadata individually: Ensure Next/Previous buttons work even if something re-orders the books in the book list. They will now iterate over the books as they were at the time the dialog is created
      Closes tickets: 2115111
    • Windows: Generate catalog: Workaround for systems where a broken antivirus or similar holds open files in the catalog library causing a permission denied error
      Closes tickets: 2115084


New news sources

  • La Presse by quatorze

Improved news sources

  • Economist
  • 1843
  • Financial Times
  • PC World
  • Muy Interesante Mexico
  • Hindu Business Line
  • Business Standard
  • Hindustan Times
  • The Week
  • Times of India
  • Hindustan
  • Financial Times
  • Reason
in reply to petsoi

Calibre is one of the great pieces of FOSS software, and demonstrates everything good about FOSS: it has regular updates; it's been around for simply ages; it works really, really well; it gets updates and new features and yet has never in my memory had a breaking, non-backwards-compatible release... it's stable; and it resists - in its way - the attempt by publishers to steal our rights and ownerships of our media.

I ~~contribute~~ donate to Calibre. I hope that Goyal has a successor lined up to take the helm who can continue such an outstanding contribution when he finally retires from the project.

Edit: clarification

This entry was edited (18 hours ago)
in reply to Sunshine (she/her)

I'm no conservative [I'm a LibSoc/Anarchist], but I can see why they wouldn't want to be on Lemmy. It's not the most open-minded group of people. As soon as someone thinks even slightly different in some small way, they're labeled a fascist or some other pejorative as a way to end the discussion and critical thinking process to exclude constructively contemplating what was said. People can't just have reasonable debates anymore. Insults are thrown and groupthink becomes more isolated and heightened within their own dogma. And their communities are brigaded regularly. It happens on their side too. The human race just seems fucked.

Trump's New Go-To Response: 'I Don't Know'


Good thing he doesn't go on You Can't do That on Television.

Donald Trump hasn’t been happy with Vladimir Putin lately, and he took out his frustrations with Russia’s president this week by announcing that the United States would resume sending military aid to Ukraine. When he was asked on Tuesday who ordered the aid to be paused in the first place, Trump delivered what has become one of his go-to responses whenever he’s pressed about the chaos his administration is unleashing on the nation and the world.

“I don’t know,” he said.

The pause on aid to Ukraine was apparently ordered last week by beleaguered Defense Secretary Pete Hegseth, who reportedly neglected to tell the White House about the move, leading to internal scrambling. Trump was asked whether he approved the pause while sitting next to Hegseth during a Cabinet meeting. The president only offered that the U.S. needs to keep sending “defensive weapons” to Ukraine because “Putin is not treating human beings right.” When asked who ordered the pause, Trump said he didn’t know. “Why don’t you tell me?” he added.


This would be far more amusing if he got slimed every time he said that.

Also, what kind of strongman doesn't know what's going on in his loyal junta?

Statement by UNICEF Executive Director Catherine Russell on children killed during a nutrition aid distribution in the Gaza Strip (UNICEF, 2025-07-10)


Statement by UNICEF Executive Director Catherine Russell on children killed during a nutrition aid distribution in the Gaza Strip (UNICEF, 2025-07-10)

unicef.org/press-releases/stat…
———

>> “We are appalled by the reported killing of 15 Palestinians, including nine children and four women, who were waiting in line for nutritional supplies for children in Deir al Balah, the Gaza Strip, this morning. An additional 30 people were reportedly injured, including 19 children.

>> “This assistance was being provided by Project Hope, a #UNICEF partner organization, to families in desperate need. The killing of families trying to access life-saving aid is unconscionable.

>> “These were mothers seeking a lifeline for their children after months of hunger and desperation…

>> “We call on Israel to urgently review its rules of engagement to ensure full compliance with international humanitarian law, notably the protection of civilians, …

#ProjectHope @palestine@a.gup.pe @israel

[The Hague Group] Spain and Ireland to join more than 20 states to declare ‘concrete measures’ against Israel (Middle East Eye, 2025-07-10)


[The Hague Group] Spain and Ireland to join more than 20 states to declare ‘concrete measures’ against Israel (Middle East Eye, 2025-07-10)

middleeasteye.net/news/spain-a…
———

>> More than 20 countries are convening in Bogota next week to declare “concrete measures against Israel’s violations of international law”, diplomats told Middle East Eye.

>> The “emergency summit” is due to be held on 15-16 July, co-hosted by the governments of Colombia and South Africa as co-chairs of The Hague Group, to coordinate diplomatic and legal action to counter what they describe as “a climate of impunity” enabled by Israel and its powerful allies.

cf. >thehaguegroup.org/
#TheHagueGroup

#InternationalLaw #StopIsrael @palestine@a.gup.pe @israel

[The Hague Group] Spain and Ireland to join more than 20 states to declare ‘concrete measures’ against Israel (Middle East Eye, 2025-07-10)


[The Hague Group] Spain and Ireland to join more than 20 states to declare ‘concrete measures’ against Israel (Middle East Eye, 2025-07-10)

middleeasteye.net/news/spain-a…
———

>> More than 20 countries are convening in Bogota next week to declare “concrete measures against Israel’s violations of international law”, diplomats told Middle East Eye.

>> The “emergency summit” is due to be held on 15-16 July, co-hosted by the governments of Colombia and South Africa as co-chairs of The Hague Group, to coordinate diplomatic and legal action to counter what they describe as “a climate of impunity” enabled by Israel and its powerful allies.

cf. >thehaguegroup.org/
#TheHagueGroup

#InternationalLaw #StopIsrael @palestine@a.gup.pe @israel

Canvas 2025 in 24 hours!


July 12th, 2025 @ 4am UTC


SPREAD THE WORD 🔥


Related posts:



what is Canvas?


Canvas is a collaborative pixel canvas that includes everyone apart of the Fediverse! Any fediverse platform that supports direct messages is able to login and participate for this 48 hour live event

socials


Alberta bans school library books it deems sexually explicit


Explicit sexual content, defined by the province as detailed and clear depictions of sexual acts, including masturbation, penetration and ejaculation, will not be accessible to students in any grade.


also

Religious texts, such as the Bible, will be allowed on the shelves.


I'm shocked... really, like, i 100% knew that was going to be in there article. So actually, I'm not shocked. Fuck you Alberta.

reshared this

Trump threatening 35% tariffs on Canadian goods across the board


Getting tired of this bullshit.

Text of the article at the time of posting:

Trump threatening 35% tariffs on Canadian goods across the board


Trump and PM Carney have been locked in negotiations to reach a trade agreement by July 21

Darren Major · CBC News · Posted: Jul 10, 2025 5:46 PM PDT | Last Updated: 15 minutes ago

U.S. President Donald Trump is threatening to slap a 35 per cent tariff on all Canadian goods as the two countries have been engaged in negotiations to reach some sort of trade agreement.

Trump's latest threat came in a letter to Prime Minister Mark Carney that the president posted to his social media site, Truth Social, on Thursday evening.

"There will be no tariff if Canada, or companies within your country, decide to manufacture product within the United States," the letter reads.

Trump said the tariffs will take effect on Aug. 1, and wrote that he will increase the levies if Canada retaliates.

Trump and Carney have been locked in negotiations to come to some sort of trade resolution by July 21. CBC News has reached out to the Prime Minister's Office for comment.

In his letter, Trump again cited fentanyl "pouring" into the U.S. from Canada — even though data continues to show that minimal amounts of the drug are crossing the Canada-U.S. border compared to the U.S.'s southern border.

Trump has been complaining about fentanyl crossing the northern border since he was re-elected in November, and after taking office he imposed tariffs he said are designed to punish Canada for not doing enough to crack down on the fentanyl drug trade.

Now, the president seems to be taking the border-related tariffs a step further by promising a 35 per cent levy. The U.S. is currently imposing a 25 per cent tariff on all non-CUSMA compliant goods coming from Canada and a lower 10 per cent rate on energy and potash as part of a border-related tariffs regime.

Ottawa announced a $1.3-billion investment in border security and named a fentanyl czar to address the fentanyl concerns coming from the White House.

The U.S. has also hit Canadian steel, aluminum and autos with an import levy, which have been particularly damaging to the Canadian economy, leading to job losses and a drop in exports.

Trump has also been promising to slap a 50 per cent tariff on copper coming into the U.S. According to federal data, Canada exported some $9.3 billion worth of copper and copper-based products in 2023, with a majority of that — 52 per cent — going to the U.S. China and Japan followed, with 17 and 12 per cent of Canadian exports, respectively.

This entry was edited (18 hours ago)