So one need to have 100K to run for NDP leadership. That's a mighty gatekeeping which mean that no just anyone (competent) can run for it.

That mean if you run, you are beholden to a financier. If that's not corruption then WTF that is?

Do they have a minimal number of Rolexes required too?

(don't point at other parties, it is the exact same shit, but they all currently have a leader, even incompetent ones)

#cdnpoli

This entry was edited (1 day ago)

Question for my #blind followers: Would you be interested in buying, and if so, how much would you be willing to pay, for a screenless Linux-based computer with Braille keyboard and TTS output, like the BT Speak (blazietech.com/bt-speak-pro), but with these distinguishing features:

- Actually open-source software
- RK3588 SoC (4 performance cores, 4 low-power cores)
- Faster and more robust software updates
- Option to boot from SD card (full-sized), for fearless OS tinkering

(continued)

Musharraf reshared this.

in reply to Matt Campbell

Regarding a QWERTY device, I think the bigger you make it, the more comparable it gets to a full laptop. And if you have a QWERTY device based on the RK3588, and the Optima comes out which will be based on the Framework and be a laptop without a screen and a Braille display below the keyboard, I would definitely go for the Optima because at that point the Optima probably wouldn't be any less portable and the Intel Core or Ryzen processors would be significantly more powerful but still have good battery life. So I think a Braille keyboard is best for something like this because you can make it small and portable but still powerful for its size without competing with laptops.
in reply to Matt Campbell

An idea I've had is to make a Linux environment based on NixOS that could run on the BT Speak, the BT Braille, the Optima, and probably mainstream devices too like laptops and SBCs. Then I could write my own applications for something like a traditional mode (I haven't planned exactly how that would work yet but I would definitely want it to synchronize things like the clipboard with other environments), and provide easy access to other environments like the desktop, the shell, Emacs, Android apps on Waydroid, Windows in a VM on the more powerful devices, etc, which each environment having its screen reader set up for easy control with a Braille keyboard, common speech and Braille output through Speech Dispatcher or Spiel and BRLTTY, etc. Maybe you could focus on the software first and create something that can run on the BT Speak and then make a hardware board that could also run your Linux environment.

Today's random throwback: in the 80's, the Polish TV broadcast programme which explained different scientific phenomena and technological advancements, often using imported TV material from abroad, e.g. the UK. Turns out there was an episode from the beginning of 1983 on blindness tech at the time. The whole thing is in Polish but contains sounds of the first electronic Braille typewriter manufactured in Poland, an experimental speech synthesizer, a system to read punchcards, a calculator beeping numbers in a Morse-like system and others. Would be fun to have an English translation and audiodescription for it some day. youtu.be/HQyFfMpWvRk #Blind #Accessiblity #Retro #Tech

BlueZ profiles aren’t hot-potatoes you can toss around without planning.
Since I had such a huge Pipewire headache this weekend, I wrote my findings into a Linux script. Please check it out and run it if you find it safe. It does everything: Installs pipewire, writes an espeakup override if you have it it'll be useful, stops LightDM from spawning its own socket and using the shared /tmp/pulse.soc instead, and just, works to move Bluetooth syncs from HFP to A2DP. Again, verify verify. I had GPT help me write it so I cannot give it 100% trust.
eurpod.com/setup-pipewire-a11y…
Looping in @fireborn and @storm, other Linux geeks, love you all, PLEASE weigh in. :D
This entry was edited (1 day ago)
in reply to Tamas G

this isn't totally in my field of knowledge, e.g. I use USB headset and nodm as my display manager, but it looks mostly fine. If it works, and you have sound on boot, this may not be helpful.

I noticed that you enable the user services for pipewire:

sudo -u "$TUSER" systemctl --user enable --now pipewire.service pipewire-pulse.service wireplumber.service || true

But unless I missed it linger isn't enabled for $TUSER so sound may not start at boot. If you have problems with no sound, try adding the following around where those services get enabled:
sudo loginctl enable-linger "$TUSER"
in reply to Billy

I updated the script. It is now 8 KB. It has a --h flag for help text, but essentially: You can choose to enable lingering or not, and if Espeakup as a service is not found, it's enabled for you. This is because the Espeakup.service does expect pipewire to be loaded by the user in that override, so it's sort of like, fake lingering, but per service. It's still not great for multi-user setups, which is why I didn't make lingering explicit, but it's still good for single users. In all cases, the shared socket will mean audio works anyway, hats off for that nice socket script.
This entry was edited (1 day ago)
in reply to Billy

ah, argh. you wanna know today? Upgrading pipewire from 1.2.X to 1.4.X for the LEAudio Bluetooth bits I wanted. Well well. Turns out, the Stormux script sets WirePlumber 0.4-style Lua tweaks. On WirePlumber 0.5 those are ignored, so BlueZ endpoints don’t come up until your full user session finishes and policy loads. O, M, G. Also disable seat monitoring so WirePlumber registers BlueZ endpoints without a logged-in seat. (This is the key for pre-login use.) But it's really not about the shared pulse socket. You would just need to move your “no suspend” ALSA tweak to wireplumber.conf.d rules. Oh, and the Bluetooth tweak. so:
"cat > "$xdgPath/wireplumber/bluetooth.conf.d/50-autoconnect.conf" <<'EOF'
# WirePlumber 0.5
bluez5.auto-connect = [ a2dp_sink hfp_hf hsp_hs ]
bluez5.default.profile = "a2dp-sink"
EOF

# Allow BT endpoints without a logged-in seat (pre-login audio)
cat > "$xdgPath/wireplumber/wireplumber.conf.d/10-disable-seat-monitoring.conf" <<'EOF'
wireplumber.profiles = {
main = {
monitor.bluez.seat-monitoring = disabled
}
}
EOF
cat > "$xdgPath/wireplumber/wireplumber.conf.d/50-fenrir-no-suspend.conf" <<'EOF'
monitor.alsa.rules = [
{
matches = [ { node.name = "~alsa_output.*" } ]
actions = { update-props = { session.suspend-timeout-seconds = 0 } }
}
{
matches = [ { node.name = "~alsa_input.*" } ]
actions = { update-props = { session.suspend-timeout-seconds = 0 } }
}
]
EOF"

in reply to Tamas G

I updated this script: new commandline options appear!
--no-linger Do not enable systemd lingering for the target user. --mask-lightdm-audio Mask LightDM's PipeWire/WirePlumber/Pulse bridges so the greeter
*only* uses the shared /tmp/pulse.sock (use if you see BlueZ conflicts).
Beyond this, some bug fixes!
• Now, we check better whether ESpeakUp is installed. systemctl status returns non-zero if the unit isn’t active, which made the script print “not installed” even when the unit exists (or is momentarily restarting). We now go based on LoadState.
• Use curl if present, fall back to wget. (Some minimal installs don’t have wget.)
• Don’t hard-code X/Wayland display ":0" - (Broaden the espeakup override so it skips any display, not just :0.)
• Keep the "prefer A2DP" restart tidy, the unit file is reloaded before restart and we don't yank out existing profiles or connections like in the first script.
Enjoy!
Link again:
eurpod.com/setup-pipewire-a11y…
This entry was edited (1 day ago)

“There is indeed such a thing as a dumb question, and learning to ask the right questions may be the most valuable fruit of a good education.

Many essays on ChatGPT pose various questions to the software, but I want to pose one to the engineers developing these Large Language Models (LLMs) and to the enthusiastic adopters of this technology: What is the problem for which LLMs are the solution?”

Really great 2023 article by Jeffrey Bilbro
plough.com/en/topics/life/tech…

in reply to modulux

@modulux According to this blog post from May this year, it should be possible in theory.

build GTK with the -Daccesskit=enabled build option, and set
GTK_A11Y=accesskit

blogs.gnome.org/gtk/2025/05/12…

"Accessible recruitment is more than a policy - it’s a way to ensure that every candidate can perform at their best, and each role is filled by the person
most capable of doing it."
tetralogical.com/blog/2025/08/…

#accessible #recruitment #accessibility #a11y

Séisme en Afghanistan: les secouristes ont aidé les hommes... mais pas les femmes

slate.fr/monde/tremblement-ter…

Les normes culturelles afghanes, qui interdisent tout contact physique entre les hommes et les femmes qui n'appartiennent pas à la même famille, ont poussé les secouristes majoritairement masculins à ne pas venir en aide aux femmes.

🤮

Jeden z umelcu si na Unreleased hodil lekce kytary. Bez meho pricineni. Coz me tesi zaprve proto, ze nase samoobsluha funguje a za druhe, ze ten nastroj lidi vyuzivaji kreativne.

Sem se kouknul borcovi na IG a tam toto. Jako wtf.

Lekce tu:
unreleased.art/forgetbrennan

IG tu:
instagram.com/forgetbrennan/

Tenhle tyden se stavil u nas ve studiu, tak z toho bude i nejaky pekny content ne-jenom-lekci.

#music #folk #kytara

Loudly shouting at #Microsoft to stop forcing "AI" on #GitHub users might lead to some sort of success. Until the next shiny thing comes along.

I took stock, understood what is really happening, that you are accepting to be locked in to a walled garden that you do not control.

So I silently packed up my stuff a while ago and moved to a place and community that accepts, respects and defends my freedom. My repos have moved to #codeberg, I am running my own #forgejo instance and build runners.

This entry was edited (2 days ago)

⚡️Стаканы из «Вкусно — и точка» лопаются при мытье даже от лёгкого нажима

Тян рассказала, что её стакан лопнул прямо в руке — пришлось накладывать швы, и теперь две недели она не сможет пользоваться правой рукой.

В комментариях люди пишут, что с ними случилось то же самое.

Okay, I'm unsure of what to do. I have been unhappy about the way masto is managed, and how people flud local with replies. Poll: Should we merge this account with our plural, or not, or should we keep them separate? We just need some help, lovely people, and we'll appreciate you even more. That is not to say we don't appreciate you, but we will do even more of it. I love fedi, and go to social will be hard to host, hence the poll.

  • Merge, we want to hear stuff (66%, 2 votes)
  • Keep plural/writing accounts separated. (33%, 1 vote)
  • Other, please reply. (0%, 0 votes)
  • I just want to see the results. (0%, 0 votes)
3 voters. Poll end: 23 hours ago

Looking to leave GitHub?

Try Codeberg — it's Git, but based in Germany (Europe), without all of Microsoft's nonsense. They're also on the Fediverse: @Codeberg.

But wait — it gets better!

Codeberg is open source, and you can even host your own instance. The software is called Forgejo, built by the same folks behind Codeberg, and they're on the Fediverse too: @forgejo.

#GitHub #GitLab #Git #FOSS #OpenSource #DigitalSovereignty #Microsoft

Massive Angriffe auf Ukraine - Regierungsgebäude in Kiew brennt

Nach schweren Angriffen ist eines der wichtigsten Regierungsgebäude in Kiew in Brand geraten. Noch ist unklar, ob der Kreml gezielt den Sitz des Ministerkabinetts ins Visier genommen hat. Mindestens drei Menschen wurden getötet.

➡️ tagesschau.de/ausland/europa/a…

#Ukraine #Russland

I've been told ESA, the European Space Agency, spends 250 million euros a year on Amazon cloud services. Today, I received an administrative email from ESA, and it featured an embedded **1.6 megabyte** image as a footer celebrating their 50th birthday, in 4137x953 pixels resolution. Perhaps that's why their cloud bill is so tremendous. A scaled version:
This entry was edited (1 day ago)

⛏️ Včera byl v Sokolově Den horníků.
Na kolotočích narváno už od pátku, všichni statečně bojují s drahotou – trdelník za 150, klobása za 200 a pivko za kilo 🍺.
Horníci pochodují v uniformě, mezi tím projede dodávka ANO s heslem, že „bude líp“ asi s Vildumetzovou nebo s kým 🤷
A večer hulákání pod okny až do půlnoci.

A fakt si nedovedu představit, jak by to vypadalo, kdyby nebyla ta „Fialova drahota“… 😅

This entry was edited (2 days ago)

#audiopub Just gained a big update! We finally now have a notifications system, so you’ll know imediately when something’s happening on audios you're interested in! You automatically get notifications for events related to your own uploads, but if there is an audio by someone else you're interested in, click the follow notifications button for that audio.
Notification badges will appear in the title and the notifications link if you have unread notifications. It will automatically update as you get more notifications, without the need to refresh the page! So if you just keep the site open you could just glance at it every now and then and stay completely up to date. Go check it out, and enjoy the peace of mind of not having to chase down your own comment threads anymore ❤️

audiopub.site/listen/739ea029-…

Tech accessibility question: do you know of a resource to help an adult use an ipad and browse the Internet safely for the very first time? Something pitched at an absolute first time computer toucher, like we used to see all the time in the 80s: instructions that assume you have never seen a home use computer before.

This person has had almost no exposure to any kind of computer, not even an ATM or a smart phone (think long term incarcerated, but not). They have never been on the Internet.

They need to use the basic functionality of a new ipad and generally stay safe online. They need to learn this very fast because they need to do urgent practical things online. They live overseas.

Edit: they are not able to leave their house at the moment. So a visit to a local library is not possible, but we're exploring local library resources.

#accessibility #accessibilityMatters

This entry was edited (1 day ago)

Want to create a direct download link to a Google Drive file? It's a bit more involved than Dropbox's change dl=0 to dl=1, but it's possible.
Most Google Drive links take the form of "drive.google.com/file/d/a-bunc…," though "/view?usp=sharing" isn't always present. To make a direct link to a Google Drive file, change "/file/d/" to "/uc?id=" without the quotes, and remove the "/view?usp=sharing" at the end if it exists.
For example, if you want to get a direct link to this test file, located at drive.google.com/file/d/1SqDH0…, you would change the link to drive.google.com/uc?id=1SqDH0T….
Note that on large files, you will still have to click the download anyway button when Google tells you it can't scan the file for viruses, but it's much more direct than the Google Drive interface.
This entry was edited (2 days ago)

Re: last boost (mindly.social/@Tamasg/11515970…), yes, it's a rant, but I'm amplifying it because if desktop Linux is going to be reliably accessible to blind people, there needs to be a solution to the kinds of problems reported in this post. To all of my followers from the free desktop community, please don't be defensive in your replies. This is an experience that a user had. We should figure out what to do about it.


This Linux "what session owns what process" crap is, I swear, its biggest downfall. Oh, lightDM now owns your pipewire server socket because it started it first? Oh! No Orca for you then, sorry, it can't be started on a Bluetooth device, because then that Pipewire session grabbed the BlueZ service and poof it's now the one connecting to your headphones and its audio socket. Fuck Linux. Fuck it with a big, giant, wide, sharp cactus today.