Are you still using social media platforms? What's your reason?
For Google and Facebook users here's how you can better protect yourself!
Step 1: Stop Facebook collecting SO much data 👉 tuta.com/blog/what-does-facebo…
Step 2: Reduce how much Google knows about you 👉 tuta.com/blog/what-does-google…
All The Data Facebook Collects - And How To Stop This | Tuta
Want to know what data Facebook collects about you? In this guide we outline what data Facebook collects about its users and how they use it.Tuta
Mamutovo
Vítejte na mastodonní instanci Mamutovo! Instance Mamutovo byla vytvořena pro běžné uživatele, kteří touží po klidném prostředí, ve kterém mohou svobodně sdílet své myšlenky.Mastodon hosted on mamutovo.cz
always amused when someone in Ontario talks about "driving across the province in 8 hours"
buddy, Ottawa to Kenora was 21 hours of straight driving last I checked
most people have no idea how damn big this place is unless they've done the trip themselves
@hub and I wouldn't believe how bad most people are at navigation if I hadn't seen it for myself. it was wild how many folks on my recruit course had never touched a map & compass before, and how many still had no idea how to use them afterwards
it's just not a skill that we teach, or that most people learn
Yesterday I finally solved the third hardest discrete bug I’ve worked on in my career. Took about 3.5 weeks of work. At the end, I spent 10 consecutive days doing nothing but investigating this bug, all day, every day. I then took a day off to pick up my folks in Pennsylvania because they wrecked their car (everyone is fine, just car damage). Came back, and yesterday I finally found it.
1/
reshared this
Pixelfed CZ
Pixelfed.cz je platforma pro sdílení obrázků, etická alternativa k centralizovaným platformám.Pixelfed CZ
The fact that space indents won out over tabs actually makes me a little sad.
I just don't see why pressing a key four times is better.
i just press tab and the editor inserts 4 spaces. 🤷
(Now that I'm writing this, it sounds kind of ridiculous. But also I didn't really think about this for the last x years at all, so I guess that's a success?)
Findings are encouraging so far. The only significant issue is that, if I'm running a Wayland session, I encounter the keyboard handling problem that currently affects the use of Orca with all GTK4 applications. However, at least for reading ActivityPub threads, Tuba is very screen reader-accessible.
#Tuba #ActivityPub #gnome #accessibility
After upgrading to #pipewire version 1.2.5. Finally, I am back to an audio system that works as well (or better!) than my old hand-tweaked setup with JACK1 and PulseAudio.
Unlike that system, this one is fully integrated - things using any of the various Linux audio APIs are all visible and routable to each other.
Latency is the same or better as I got with JACK1.
Truly excellent. Good job @pipewire
(and for those who don't know, I wrote JACK1, with the help of a lot of amazing people).
FediVerseExplorer likes this.
reshared this
Maybe I Think Differently Because I See Differently
Ever wondered how our senses shape the way we think? It’s a fascinating concept, especially when you consider how different sensory experiences, like those between sighted and blind individuals, create unique cognitive worlds. As someone who navigates the world without sight, I’ve often wondered how this influences my thoughts and perspectives. After all, if we see the world differently, surely we think about it differently, too. Let’s explore how our sensory experiences shape our cognitive processes and perceptions.
Visual Dominance in Sighted People
For sighted people, vision dominates daily information processing. Research suggests that around 80% of their cognitive processing is tied to visual input, shaping not only how they see but also how they think. This visual dominance influences thoughts, understanding, and the focus on details like colours, shapes, and spatial relationships. Sighted individuals are often adept at processing visual patterns and details, like reading body language or interpreting facial expressions. For them, “seeing is believing,” but for those of us who cant rely on sight, belief comes from a different place altogether.
Cognitive Adaptations in Blind People
Without sight, blind people are forced to turn to other senses to form our mental landscapes. We rely on hearing, touch, and smell to navigate the world. Imagine walking into a room and, instead of scanning visually, you map it out through sound and touch. These senses aren’t just backups; they become finely tuned tools that create vivid mental representations. Over time, we develop exceptional auditory and tactile skills, and our memories sharpen to store all the information we gather through these non-visual cues.
Strengths Born from Different Senses
There are some advantages that come with thinking in a world shaped by sound, touch, and smell. For instance, blind people often excel in auditory tasks, like picking up subtle tones in conversations or identifying people by their footsteps. Memory is another area where blind people shine, as we frequently have rely on it to navigate and interact. Spatial awareness also becomes second nature, built from a blend of sound, touch, and movement that lets us “see” the world in our own way.
Beyond physical senses, abstract thinking often plays a prominent role in how we understand the world. Without the constant influx of visual distractions, our minds find other ways to stay busy—often diving into deeper, more abstract realms of thought. This can lead to an especially profound connection with concepts that aren’t tied to visual cues.
Neuroplasticity: The Brain’s Remarkable Adaptability
Perhaps one of the most intriguing aspects of sensory difference is neuroplasticity—the brain’s ability to rewire itself. When one sense is absent, the brain often repurposes the areas typically devoted to that sense. For blind individuals, parts of the brain usually reserved for vision get redeployed to boost other senses, supporting our enhanced skills and abilities in non-visual realms.
A Unique Cognitive Landscape
This distinct mix of sensory information creates a rich, varied internal world that offers a unique perspective on life. It’s a powerful reminder that our brains are remarkably adaptable, moulding our thoughts to the sensory input we experience. So yes, maybe I do think differently because I see differently. And maybe, that’s the beauty of it all.
wikiloops.com | Free Backing Tracks | Online Jamsession
The open wiki for Backing Track Collaboration since 2011. Easily find Jamtracks missing your Instrument and Play-Along. Join the international Musical Collaboration by sharing your own home-recorded Remixes.wikiloops.com
The reason I hate C so much has very little to do with its unsafety. Sure, that’s a problem, but the thing I really hate is how bad it is for building abstractions. Even simple things like linked lists or dictionaries require exposing data-structure implementation details in ways that make refactoring hard.
If I write C++ (or almost any higher-level language), I can start with a linked list and then decide that I know the maximum size and want better cache usage and switch to a flat data structure. Iterations stay the same and I change little code. Try building something in C where data structures are exposed with a uniform iteration API or indexed addressing depending on their use.
This extends further to trivial things like object destruction. If you look at Linux or BSD kernel code, you’ll often see a pattern of gotos for cleanup, where each step that can fail jumps to a corresponding error path that frees everything that’s been allocated so far. This exists because a lack of abstractions. In C++ or Rust, RAII would call the destructors on the objects as they go out of scope, so your error handling paths are just return failure and the cleanup happens automatically. You don’t need to write it every driver, the classes that own different resources know how to deallocated themselves.
When I write the same thing in C and C++, I end up writing more code in C, but when I then write another instance of similar code in C, I have to copy and paste a load of things because there is no way to properly abstract them out in C. This is the kind of thing that can cause memory-safety errors (because there aren’t abstractions that enforce properties that the programmer knows) but it also leads to a load of logic bugs.
I have no idea why anyone would choose C today. C++ can target the same ABI and generate identical binaries from less (and more reusable) source code. Rust can enforce more properties at compile time automatically. Garbage-collected languages can let you write complex cyclic data structures and correctly manage them (my current favourite approach for a lot of things is to write some core things in C++ and use Sol3 to expose them into Lua for all of the business logic).
> I have no idea why anyone would choose C today.
Some Unix fans seem to really hate C++. One such person, Drew DeVault, once told me this in an email:
> C's simplicity limits you in all the best ways. It forces you to keep your code simple, readable, and maintainable by someone other than yourself.
>
> sr.ht/~sircmpwn/cstyle
>
> Program conservatively.
That was a few years ago, but the design of his newer Hare language suggests he still feels that way.
I chose Rust.
On the Zig vs. Rust debate, people like to focus on memory safety, but Rust's RAII is just as important to writing clean, maintainable code.
There is something truly magical about seeing my GPU driver cleaning up dozens of nested GPU and host objects when the GPU job completes. Always exactly then, never too early, never too late, never leaking anything. That's all thanks to RAII and automatic Drop calls.
`defer foo.deinit()` really doesn't cut it. You have to explicitly write it, and it only works if all code paths free the object at the end. `errdefer` is just a special case, and then the only way to know if you forgot it is by testing with a leak checker. And then the deinit function has to manually deinit all child objects.
All this stuff is just done automatically in Rust. Most of my types don't even implement Drop, or only do something trivial there, because the compiler recursively dropping objects is 99% of the work.
It's *knowing* the compiler is on your side and taking care of all this that makes it magical. If you have to write out the code by yourself, that's more work, and a huge chance for bugs. The compiler is doing some very complex tracking to figure out what to drop when and where. You'd have to do that all in your head correctly without its help.
if you're putting all your trust in the compiler to keep you safe, wouldn't that lead to being taken down the path of bad habits? Surely it's better to learn how to keep your own code safe and not depend all your trust into a compiler?
The take away, for me, is this; if you can't write clean code and need something else to do it for you, learn. Learning makes you better, and being better makes you want to learn more.
That argument is a fallacy, disproven time and time again by C. Not even the most experienced C coders in the world can write correct, bug-free C.
Pretty much everyone who seriously tries Rust understands just how game changing it is in this regard. In fact, not only does Rust do a lot of things for you, it also encourages you to structure the code in a more logical and maintainable and understandable way, and people who learn Rust often report they also become better C coders as a result, which is the exact opposite of what you suggest.
Software is tens of thousands of times more complex than when languages like C were developed, and we *need* assistance from tooling and compilers to help manage that complexity.
KUnifiedPush: KDE's efficient way of delivering notifications to your apps
KUnifiedPush, KDE's client library for the UnifiedPush protocol, has reached version 1.0.0. KUnifiedPush provides a way to deliver notifications instantly to multiple apps on your devices even if the apps are not running.
Ideal for social media, weather and instant messaging apps, it will also contribute to improving the battery life on your mobile devices.
blogs.kde.org/2024/10/19/kunif…
KUnifiedPush 1.0.0 is out!
KUnifiedPush provides push notifications for KDE applications. Push notifications are a mechanism to support applications that occasionally need to receive some kind of information from their server-side part, and where receiving in a timely manner m…KUnifiedPush 1.0.0 is out!
On this day in 2006, 18 years ago, I started offering the Mozilla CA cert bundle as a PEM file for everyone to use. The service is still running, uninterrupted, ever since.
Because I think we need it.
Today is **fifteen years** since I posted about the "null-prefix domino" - common problems in TLS server certificate verification functions in many projects, including #curl
Oyes, ¿recordáis cuando medio internet daba la matraca sobre como "estar sentado es el nuevo fumar" y como nos vendían los "standing decks" como la gran revolución en el mundo de la salud laboral y casi una obligación si no querías morir de un infarto en tu silla de trabajo?
Pues acaba de salir un estudio al respecto y adivinad qué: no solo no reducen la mortalidad sino que aumentan el riesgo de varices y trombosis venosa profunda.
👉 academic.oup.com/ije/article/5…
Device-measured stationary behaviour and cardiovascular and orthostatic circulatory disease incidence
AbstractBackground. Previous studies have indicated that standing may be beneficially associated with surrogate metabolic markers, whereas more time spentAhmadi, Matthew N (Oxford University Press)
Eine Gruppe junger Leute am Nebentisch.
Es gibt die Frage in die Runde, ob den anderen bei #Instagram heute auch #Werbung über ein Produkt angeboten wurde, über das sie gestern sprachen.
Bestätigung von anderen und für einen Moment macht sich #Unbehagen breit...dann Kichern und Lachen ... man zeigt sich gegenseitig die Smartwatches, es fallen Wörter wie Apple, Garmin und WhatsApp.
Das Leben geht weiter.
Good morning from Germany in the Central European timezone! Yesterday, I spent an afternoon at a thermal spa, spending time with a friend and having some very good relaxing time and fantastic conversations. He is 26, and one example why I get along best with younger and mostly queer people.
I was so relaxed, that I fell asleep at around 8 and, with only one brief bathroom break, slept for over nine hours, which is rare for me. Must say I feel very well rested this morning.
What are some examples of things you used to think but changed your mind on?
In my case, in public transport and urbanism:
* I used to support some tech I now think is a dead-end (large-diameter TBMs, active tilt)
* I used to think local community empowerment and consensus were a good way to run cities
* I thought Japan did both clearly better than Europe
Tilting Trains and Technological Dead-Ends
The history of tilting trains is on my mind, because it’s easy to take a technological advance and declare it a solution to a problem without first producing it at scale. I know that 10 years…Pedestrian Observations
AOL Optimized PC Instructional Video
This is an instructional video that came with the AOL Optimized PC, in both English and Spanish.YouTube
Loving this new era of indie blogs splitting off from their corpo bastards and forming their own coops:
404media.co/
aftermath.site/
defector.com/
Even more listed at the end of Hearing Things’ about page:
hearingthings.co/about/
Google's Extension-Killing Manifest V3 Rollout Is Stepping Up, and It's Time to Jump Ship
Why stick with Chrome when there are so many other options?Gavin Phillips (MakeUseOf)
Speaking of #MyAdoredDaughter this morning... I don't know if I ever posted this photo.
This is ... my daughter? This is how she looks like, exactly - a beautiful, young person with long legs, and wonderful hair. And she keeps telling me "OMG, we look so alike, we could be twins..."
#Trans #Enby #NonBinary #TransJoy #EnbyJoy #NonBinaryJoy #Selfie
...
... but no, this is not a photo of her, this is a selfie of me reflected in a window. When I saw myself reflected in that window, I had to take a selfie and send it to her and she was absolutely amazed at how similar we look now, really, like twins, everything, the form, hair, posture, arms, legs, ... only her face is slightly different (and way younger, obviously 🥰
@Marco TBH, she resembles my wife more than her mother (my wife isn't her mom), but she looks more or less exactly like me. So the photo above could really be me or her, if I didn't tell you who that person is on the photo and you'd see us next to each other, you couldn't tell who that was.
But, and that's the fun part, whenever she is visiting us and we three, her, my wife and me, go out for a walk, people are 100% sure she is our daughter, because she has nearly nothing from her biological mom, but some really interesting similarities with my wife.
In my own case, I have half-half, i.e. about half of me resembles my father, and half my biological mother (as far as I can remember, and I have one single photo of her).
Omlouváme se za způsobené nepříjemnosti a děkuji za vaši trpělivost. Jakmile bude server opět dostupný, budu vás informovat.
Crisper
in reply to Tuta • • •it's kind of ironic