UK public has paid £200 billion to shareholders since privatisation of water, rail, bus, energy and mail services
UK public has paid £200bn to shareholders of key industries since privatisation
Analysis reveals ‘privatisation premium’ of £250 per household per year paid to owners of water, rail, bus, energy and mail services since 2010Matthew Taylor (The Guardian)
like this
Oofnik likes this.
Israel has committed genocide in Gaza, says UN commission of inquiry
UN commission of inquiry has concluded that Israel is committing genocide in Gaza and accused senior Israeli officials including Benjamin Netanyahu of inciting it.
The United Nations independent international commission of inquiry (COI), which does not speak on behalf of the UN and has been criticised strongly by Israel, cited the scale of the killings, aid blockages, forced displacement and the destruction of a fertility clinic in the territory to support its genocide finding.
Israel has committed genocide in Gaza, says UN commission of inquiry
Report cites scale of killings and aid blockages, and calls on member countries to punish those responsibleJon Henley (The Guardian)
like this
Maeve likes this.
Ubuntu 25.10's Rust Coreutils Transition Has Uncovered Performance Shortcomings
like this
Badabinski likes this.
like this
Sickday likes this.
like this
Sickday likes this.
unsafe. It is often faster if you write naive code (because the Rust compiler can optimize more aggressively due to those same limitations), but an experienced developer with a lot of time for optimization will probably be able to squeeze more performance out of C than they would out of Rust - as you can see in this example. Rust is still better because those limitations all but guarantee that the resulting code will be safer, and the performance differences would be negligible all things considered.
Language isn't everything. While Rust provides some features and safety that C doesn't while being roughly equivalent in performance, the algorithms that developers choose will dominate the performance impact on the program.
GNU core utils has decades of accumulated knowledge and optimisation that results in the speed it has. The Rust core utils should in theory be able to achieve equivalent performance, but differences in the implementation choices between one and another, or even something as simple as the developers not having prioritised speed yet and still focusing on correctness could explain the differences that are being reported.
like this
Sickday likes this.
Well the entire point of the project is that they used algorithms/features of Rust that make it easier to write fast code. This article basically reports on a "bug". Uutils are in many ways already faster than Coreutils.
Correctness is really more of a byproduct of using Rust. Coreutils have had only a few CVEs in their lifetime so it would be sort of redundant to rewrite them in Rust for "correctness".
This should be avoided like the plague because of the choice to use MIT over GPL.
Any work dedicated to this can and will be stolen by corporations without giving back if they find it useful. This is what happened with Sony and Apple and their respective operating systems. They chose to base them on BSD so they could steal work and not give back to the public.
Do not be fooled.
They chose to base them on BSD so they could steal work and not give back to the public.
"Here you can use this as you like, no questions asked"
"Hey! Why did you use that in a way that I told you you could!?!?"
They chose to base them on BSD so they could steal work and not give back to the public.
Emphasis mine.
The intent of the BSD licences is to allow you to do what you want without reciprocating though. It's not an accident, it's explicitly stated. It is, in fact, your right. You profiting from the work of others is an intended result.
I prefer GPL myself for this reason. But you can't blame companies for obeying the terms of the licence.
It's not like improper use of "steal" is unheard of, I see all the time people use "I'm gonna steal that" and similar even when it applies to things openly given for free. And considering that it's quite clear that the MIT allows others to take without sharing back (it's the main difference with GPL) I'm quite sure the commenter was aware that it wasn't really theft, yet chose that word probably with the intention to insult the practice, rather than as a fair descriptor.
So yes, you're right, it isn't theft... but I don't think that was the point of the comment.
The reason Ubuntu switched was Rust's "safety". Which is sort of a dumb reason because Coreutils have had very few CVEs in the past. A less dumb reason is performance. Uutils are faster than Coreutils, this was an edge-case.
MIT license is the schizo reason. Making a closed source version of Unix utilities would not be beneficial for Canonical in any way, but that does not stop the schizos from schizoing.
Not only that but if you edit the MIT licensed files (Read: They have the MIT notice, which you have to preserve, in them.), they will still be MIT licensed. Only new files and the entire project will become GPL.
I am not a lawer.
Author: "I consent to my code being used for proprietary programs!"
Compant: "I consent to using this FOSS code in my proprietary program!"
You for some reason: "I don't!"
They articulated the reason and gave examples of precedence.
And you're dismissing their voice as irrelevant, but as the consumer of the product, their voice is most critical, and more people should be aware of how corporations use their massive wealth to choke and starve open source competition out of existence despite building their products on open source work in the first place.
I continue to fail to see the issue with the author, the person whose actual labour goes into the software, not your labour, deciding that they are fine with their source code being used in any way the general public sees fit provided they simply credit the author and provide a copy of the MIT licence. If I give you something, you're not stealing by accepting my gift. They're choosing voluntarily to make their source code available under such a licence. If they weren't okay with that, they would've chosen a copyleft licence.
And you’re dismissing their voice as irrelevant, but as the consumer of the product, their voice is most critical
That seems insanely entitled, but you're allowed to not use non-copyleft software if you really care that much. The authors of permissively licensed software aren't forcing you to use their software.
There are plenty of valid reasons to license a work as MIT or BSD or similar. Firstly, libraries are almost always going to be permissively licensed, not just because it allows proprietary software to use those libraries, but also because it allows permissively licensed FOSS to use those libraries. If I want to use a GPL library, it's not just that I have to make my software FOSS, it's that I have to make my software GPL specifically. If I want to make a FOSS MIT program, I can't use any GPL libraries.
Secondly, sometimes it's because, well, as the licence text provides, I don't give a shit what you do with the code. I write lots of little tools that are just for myself and I share them in case they're of use to someone else. If some big corpo uses it in their proprietary money-making machine it's no shit off my back. It was just a little tool I wrote for myself and it doesn't affect me if other people use it to make money.
I think GPL is reasonable if a lot of labour goes into a project, and you'd be discouraged from working on it if someone was leeching off of it for their proprietary software. But my MIT/BSD code requires 0 maintenance labour from me, and I don't care to control how other people use it. That's the whole point of MIT/BSD/Apache/etc. It's the "don't give a shit" licence.
I continue to fail to see the issue with the author, the person whose actual labour goes into the software, not your labour, deciding that they are fine with their source code being used in any way
You're arguing with a strawman you created, no one made any statements about the author. They simply said no one should use the software.
The author can choose to use the MIT license, and we can choose not to use their software.
That seems insanely entitled, but you're allowed to not use non-copyleft software if you really care that much. The authors of permissively licensed software aren't forcing you to use their software.
What do you think we're saying here? We're saying we're choosing not to use the author's software, what are you taking issue with exactly?
There are plenty of valid reasons to license a work as MIT or BSD or similar. Firstly, libraries are almost always going to be permissively licensed, not just because it allows proprietary software to use those libraries, but also because it allows permissively licensed FOSS to use those libraries. If I want to use a GPL library, it's not just that I have to make my software FOSS, it's that I have to make my software GPL specifically. If I want to make a FOSS MIT program, I can't use any GPL libraries
And we've articulated valid reasons not to replace GPL core libraries with MIT ones...
Secondly, sometimes it's because, well, as the licence text provides, I don't give a shit what you do with the code
Good for you? This isn't about you (the author)... It's about us not wanting to use your work, which you seem to take offense to, as if you did us a favor. Talk about entitlement.
But my MIT/BSD code requires 0 maintenance labour from me, and I don't care to control how other people use it. That's the whole point of MIT/BSD/Apache/etc. It's the "don't give a shit" licence.
Solid justification for using it for coreutils you got there...
You're arguing with a strawman you created, no one made any statements about the author.
The original comment called it stealing. There's nothing morally wrong with stealing, but regardless it's not even stealing. It's a stupid argument.
Solid justification for using it for coreutils you got there...
I'm obviously talking about not giving a shit about how people use it. Which makes sense for coreutils. Loads of people use it for loads of different purposes. The author shouldn't care how people use it.
We're obviously talking about corporations intentionally using open source software with the intention of eliminating it as competition, we aren't talking about the literal definition of the word "stealing", which you seem smart enough to be able to recognize, but you're insisting on being pedantic.
You twisted that into an argument about what the author of the code has the right to do... No one gives a shit, and we aren't obligated to support it.
We’re obviously talking about corporations intentionally using open source software with the intention of eliminating it as competition
That's not what corporations do when they use MIT/BSD code. They rely on that code; it's not their "competition". Unless you are talking about stuff like WhatsApp using libsignal, where they do use code from a direct competitor, but that's far less common, and also not going to have a negative effect on Signal. I can't speak for Signal of course but they are probably quite happy with WhatsApp using libsignal, as it both spreads Signal's beliefs about communication being E2EE, and it makes WhatsApp reliant upon Signal. FOSS projects like ffmpeg, curl, etc, are (reasonably!) happy that the entire industry depends on the tool they wrote. And they are kept alive because they are so widely depended upon. Corporations donate to FOSS projects because they need them.
we aren’t talking about the literal definition of the word “stealing”
wtf is a non-literal definition of "stealing"? The idea of stealing is stupid enough already, I can't play your games to figure out how you extrapolate something sillier from it. I'm a communist. I don't believe in private property and I don't give a shit about stealing.
They steal labor. You would think someone with the username communism would instinctively understand that.
And no, it isn't "far less common", and you have already been provided with examples of what we mean, so I'm not playing your games of providing examples (that don't even use the MIT license, but now I'm the one being pedantic).
If you replace your uses of the words stolen and steal with "kept" and "keep'", then your statements make sense.
Also it's coreutils - they intentionally have a very focused scope and features. An Apple LLM bundled into awk is desired by no one
They don't need to use semantic versioning. I doubt coreutils itself uses it, though I admit I haven't checked. Actually I think semantic versioning is less popular in practice than it looks like.
For a set of tools to that completely replaces another one, announcing a 1.0 version would be a message that the developers think the project has actually reached its initial goals. "0.2" does not.
The author simply listened to the word of 0-Based Versioning. It says more about your maturity than of the projects. Much to learn you still have.
AOMedia To Release AV2 Video Codec At Year's End
"Set for a year-end release, AV2 is not only an upgrade to the widely adopted AV1 but also a foundational piece of AOMedia’s future tech stack.
AV2, a generation leap in open video coding and the answer to the world’s growing streaming demands, delivers significantly better compression performance than AV1. AV2 provides enhanced support for AR/VR applications, split-screen delivery of multiple programs, improved handling of screen content, and an ability to operate over a wider visual quality range. AV2 marks a milestone on the path to an open, innovative future of media experiences."
AOMedia To Release AV2 Video Codec At Year's End
The Alliance for Open Media announced today that they will be launching the next-generation AV2 video codec at the end of 2025.www.phoronix.com
like this
melroy likes this.
And which will be so resource intensive to encode with compared to existing standards that it'll probably take 14 years before home media collectors (or yar har types) are able and willing to use it over HEVC and AV1. :\
As an example AV1 encodes to this day are extremely rare in the p2p scene. Most groups still work with h264 or h265 even those focusing specifically on reducing sizes while maintaining quality. By contrast HEVC had significant uptake within 3-4 years of its release in the p2p scene (we're on year 7 for AV1).
These greedy, race to the bottom device-makers are still fighting AV1. With people keeping devices longer and not upgrading as much as well as tons of people relying on under-powered smart-TVs for watching (forcing streaming services to maintain older codecs like h264/h265 to keep those customers) means it's going to take a depressingly long time to be anything but a web streaming phenomenon I fear.
To be fair, it's also basically impossible to have extremely high quality AV1 video, which is what a lot of P2P groups strive for. A lot of effort has gone into trying to do so and results weren't good enough compared to x264, so it's been ignored. AV1 is great at compression efficiency, but it can't make fully transparent encodes (i.e., indistinguishable from the source). It might be different with AV2, though again even if it's possible it may be ignored because of compatibility instead; groups still use DTS-HD MA over the objectively superior FLAC codec for surround sound because of hardware compatibility to this day. (1.0/2.0 channels they use FLAC because players support that usually)
As for HEVC/x265, it too is not as good as x264 at very high quality encoding, so it's also ignored when possible. Basically the breakdown is that 4k encoding uses x265 in order to store HDR and because the big block efficiency of x265 is good enough to compress further than the source material. x264 wouldn't be used for 4k encoding even if it could store HDR because its compression efficiency is so bad at higher resolutions that to have any sort of quality encode it would end up bigger than the source material. Many people don't even bother with 4k x265 encodes and just collect the full disc/remuxes instead, because they dislike x265's encoder quality and don't deem the size efficiency worth its picture quality impact (pretty picky people here, and I'm not really in that camp).
For 1080p, x265 is only used when you want to have HDR in a 1080p package, because again x265's picture quality can't match x264, but most people deem HDR a bigger advantage. x264 is still the tool of choice for non-HDR 1080p encodes, and that's not a culture thing, that's just a quality thing. When you get down into public P2P or random encoding groups it's anything goes, and x265 1080p encodes get a lot more common because x265 efficiency is pretty great compared to x264, but the very top-end quality just can't match x264 in the hands of an experienced encoder, so those encoding groups only use x265 when they have to.
Edit: All that to say, we can't entirely blame old-head culture or hardware compatibility for the unpopularity of newer formats. I think the home media collector usecase is actually a complete outlier in terms of what these formats are actually being developed for. WEB-DL content favors HEVC and AV1 because it's very efficient and displays a "good enough" quality picture for their viewers. Physical Blu-Rays don't have to worry about HDD space or bandwidth and just pump the bitrate insane on HEVC so that the picture quality looks great. For the record, VVC/x266 is already on the shortlist for being junk for the usecases described above (x266 is too new to fully judge), so I wouldn't hold my breath for AV2 either. If you're okay with non-transparency, I'd just stick with HEVC WEB-DLs or try to find good encoding groups that target a more opinionated quality:size ratio (some do actually use AV1!). Rules of thumb for WEB-DL quality are here, though it will always vary on a title-by-title basis.
WEB Source Tier List
WEB Source Tier List. GitHub Gist: instantly share code, notes, and snippets.Gist
I think the home media collector usecase is actually a complete outlier in terms of what these formats are actually being developed for.
Well yeah given who makes it but it's what I care about. I couldn't care less about obscure and academic efforts (or the profits of some evil tech companies) except as vague curiosities. HEVC wasn't designed with people like me in mind either yet it means I can have oh 30% more stuff for the same space usage and the enccoders are mature enough that the difference in encode time between it and AVC is negligible on a decently powered server.
Transparency (or great visual fidelity period) also isn't likely the top concern here because development is driven by companies that want to save money on bandwidth and perhaps on CDN storage.
Which I think is a shame. Lower bitrates for transparency -should- be the goal. The goal should be to get streaming content to consumers at a very high quality, ideally close to or equivalent to UHD BluRay for 4k. Instead we get companies that bit-starve and hop onto these new encoders because they can use fewer bits as long as they use plenty of tricks to maintain a certain baseline of perceptual visual image quality that passes the sniff test for your average viewer so instead of getting quality bumps we just get them using less bits and passing the savings onto themselves with little meaningful upgrade in visual fidelity for the viewer. Which is why it's hard to care at all really about a lot of this stuff if it doesn't benefit the user in any way really.
Looking ahead, 53% of AOMedia members surveyed plan to adopt AV2 within 12 months upon its finalization later this year, with 88% expecting to implement it within the next two years.
From AOMedia website. So the plan is for it to have AV1 levels of adoption by 2028.
So... a lot more people now have :
- 4G/5G on the go and proper broadband at home and office and even in unique location (sadly via MuskSat for now...) other ways to get data
- very capable devices in mobile phones, (mostly Android) clients e.g. video projector or dongles, of course computers
- human eyes... that can't really appreciate 4K on average
... so obviously we should NOT stop looking for more efficient ways and new usages but I'm also betting that we are basically reaching diminishing return already. I don't think a lot of people care anymore about much high screen resolution or frequency for typical video streaming. Because that's the most popular usage I imagine everything else, e.g XR, becomes relative to it niche and thus has a hard time benefiting as much from the growth in performances we had until now.
TL;DR: OK cool but aren't we already flattening the curve on the most popular need anyway?
On the upside, the end user needs to use up less data for the same content. This is particularly interesting under 4G/5G and restrictive data plans, or when accessing places / servers with weak connection. It helps avoid having to wait for the "buffering" of the video content mid-playback.
But yes, I agree each iteration has diminishing returns, with a higher bump in requirements. I feel that's a pattern we see often.
If we're lucky some firmware upgrade or driver can make AV1 hardware decoding capable cards able to do AV2 as well, but I seriously doubt it - GPU manufacturers want to sell new cards all the time after all.
maybe, maybe not.
when h264 was introduced (Aug 2004), even intel had HW encoding for it with sandybridge in 2011.
nvidia had at 2012
so less than 7 years.
av1 was first introduced 7 years ago and for at least two years android TVs require HW decoding for it.
And AMD rdna2 had the same 4 years ago.
so from introduction to hardware decoding it took 3 years.
I have no idea why 10 years is thrown around.
and av1 had to compete with h264 and h265 both. ( they had to decide if it was worth implementing it)
AV1 was mid. Extremely slow encoding and minor performance gains over H265. And no good encoders on release.
H266 was miles ahead but that is propriatary like 265. So win some lose some.
Compression and efficiency is often a trade-off. H266 is also much slower than AV1, under same conditions. Hopefully there will come more AV1 hw encoders to speed things up.. but at least the AV1 decoders are already relatively common.
Also, the gap between h265 and AV1 is higher than between AV1 and h266. So I'd argue it's the other way around. AV1 is reported to be capable of ~30-50% bitrate savings over h.265 at the cost of speed. H266 differences with AV1 are minor, it's reported to get a similar range, but more balanced towards the 50% side and at the cost of even lower speed. I'd say once AV1 encoding hardware is more common and the higher presets for AV1 become viable it'd be a good balance for most cases.
The thing is that h26x has a consortium of corporations behind with connections and an interest to ensure they can cash in on their investment, so they get a lot of traction to get hw out.
Note that high-quality + low-bitrate AV1 setup often requires using parameters that rise the time and processing power beyond what's typically sensible in an average setup without hw encoder. And compared with h265 this would be even higher since not only is h265 less complex and faster to begin with, but it also is often hw accelerated.
Here there's a 2020 paper comparing various encoders for high quality on fullHD:
researchgate.net/publication/3…
"First place in the quality competition goes to aom [AOMedia's AV1 encoder], second place goes to SVT-AV1, and third place to x265"
And av1 codecs are younger, so I wouldn't be surprised if they have improved over the h265 ones since the article.
Here's the settings they used in aom, for reference:
aomenc.exe --width=%WIDTH% --height=%HEIGHT%
--fps=%FPS_NUM%/%FPS_DENOM% --bit-depth=8 --end-usage=vbr
--cpu-used=0 --target-bitrate=%BITRATE_KBPS% --ivf --threads=32
--tune=ssim -o %TARGET_FILE% %SOURCE_FILE%
I can try it again, but what I did was compare h265 to SVT-AV1 in ffmpeg, using a couple different clips of different styles (including a video from my phone and some ripped blu-ray movies). I used “constant quality / variable bitrate settings, and ran each file with a variety of settings for both encoders. I judged the videos with a quality comparison tool ffmpeg has, and I also took subjective notes when I could tell the difference.
I found AV1 did better at very low quality (when it was firmly into the region where it was visibly different, AV1 did have better quality per bitrate).
But when trying to produce high-quality clips, AV1 was never able to produce a clip that matched the quality score of h265, even when the bitrate of the AV1 file was higher.
you didn't do the wrong thing.
what many people don't notice is that support for a codec in gpu(in hardware) is two part.
one is decoding and one is encoding.
for quality video nobody does hardware encoding (at least not on consumer systems linux this 3050 nvidia)
for most users the important this is hardware support for decoding so that they can watch their 4k movie with no issue.
so you are in the clear.
you can watch av1 right now and when av2 becomes popular enough to be used in at least 4 years from now.
Very cool! I've only just recently gotten to experience the joys of AV1 for my own game recordings (Linux is way ahead of Windows here), and dang is it nice. 10 minute flashback recordings of 4K HDR@60 for only 2.5GB, and the results look fantastic. Can just drag and drop it over to YouTube as well, it's fully supported over there.
Glad to see things moving, I'll be eager to check this out in a few years once it has wider support!
The main thing I want is small file size for the quality. Netflix, YouTube, and me agree on that.
Most of my stuff is AV1 today even though the two TVs I typically watch it on do not support it. Most of the time, what I am watching is high-bitrate H.264 that was transcoded from the low-bitrate AV1.
I will probably move to AV2 shortly after it is available. At least, I will be an early adopter. The smaller the files the better. And, in the future when quality has gone up everywhere, my originals will play native and look great.
I want to agree with you and I do to a large extend.
I like new codecs and having more opensourcy coded is better than using a codec that has many patents.
long term patents(current situation) slows technological progress.
what I don't agree with you is some details.
first,
Netflix youtube and so on need low bitrate and they (specially google/youtube) don't care that much about quality. google youtube video are really bit starved for their resolutions. netflix is a bit better.
second,
many people when they discuss codecs they are referring to a different use case for them.
they are talking about archiving.
as in, the best quality codec at a same size.
so they compare original (raw video, no lossy codec used) with encoded ones.
their conclusion is that av1 is great for size reduction, but cant beat h264 for fidelity at any size.
I think that h264 has a placebo or transparent profile but av1 doesn't.
so when I download a fi...I mean a linux ISO from torrents, I usually go for newest codec.
but recently I don't go for the smallest size because it takes away from details in the picture.
but if I want to archive a movie (that I like a lot, which is rare) I get the bigger h264 (or if uhd blueray h265).
third:
a lot of people's idea of codec quality is formed based on downloading or streaming other people's encoded videos and they themself don't compare the quality (as they don't have time or a good raw video to compare).
4th:
I have heard av1 has issues with film grain, as in it removes them.
film grain is an artifact of physical films (non-digital) that unfortunately many directors try (or used to) to duplicate because they grew up watching movies on films and think that movies should be like so they add them in in post production.
even though it is literally a defect and even human eyes doesn't duplicate it so it is not even natural.
but this still is a bug of av1 (if I read correctly) because codec should go for high fidelity and not high smoothness.
AV1 has issues with film grain. There are things you can do. Let me admit however that one movie that I have not encoded as AV1 is a restored version of the original Star Wars. And film grain is a contributor to that.
Another thing about film grain though is that it is often artificially added after as you say. With AV1, you can often get amazing compression that removes the grain as a side-effect and then just add it back yourself. To each their own how they feel about this approach.
I also agree that H.264 can be more transparent. However, that is at massive file sizes. Others may have the space for that but I do not.. Perhaps I do mot have the eyes for it either. I am not extracting and comparing single frames. To me, the AV1 files that I have look better at the size that I am archiving than they would using any other codec.
I use the fact that massive bit rate H.264 looks great to my advantage as that is what my AV1 is being transcoded into when I watch it most of the time.
Some content compresses better than others. Sometimes I get massive size reductions with AV1 at what looks like great quality to me. Other times, it struggles to beat H.265 or even H.264 at similar quality. It is pretty rare that I do not choose AV1 though.
I often use Netflix VMAF to get an idea of target compression. It is not perfect though. You have to verify visually. Saves time trialing different parameters though.
I should say that the audio codec is another big factor. I typically pair AV1 with Opus audio and the size reductions there are amazing even at quality levels that are transparent to me.
If AV2 offers better quality at the same size, or similar quality at smaller sizes, I will likely switch to it long before having hardware that can play it natively.
oh dont get me wrong.
as I said I agree with most of your original (and now second post).
my gripe with grain was not about av1 per se.
it was with movie makers that add it just because they think it is how movies should be
this is retarded to me:
"Reasons to Keep Film Grain On: Artistic Effect: Film grain can add a nostalgic or artistic quality to video and photography, evoking a classic film look"
because the reason is just "nostalgic" that the director has, as in if he was born after digital era, he would have an issue with it and not add it (usually).
about h264 and transparency, the issue is not that h264 can get that but at high bitrate, the issue is that av1 (as I read) can't get it at any bitrate.
but overall I agree with you.
I even recently was shocked to see how much faster av1 encoding has gotten.
I would have thought it was still orders of magnitude, but with some setting (like x265 slow setting) av1 is has the same encoding speed.
sistemazioni contro il malore in HTMLy per scrivere decente (nuova funzione per editor Markdown a schermo intero)
Ogni tanto, per risolvere problemi pratici merdosi, mi invento soluzioni tecniche complesse e cursate… del tipo di reimplementare la API di WordPress dentro HTMLy per poter gestire il blog basato su quello con la app di WordPress… ma, questo è uno spoiler che non dovrei fare, almeno fintanto che non finisco di lavorarci, cazzarolina. Tuttavia, […]
octospacc.altervista.org/2025/…
sistemazioni contro il malore in HTMLy per scrivere decente (nuova funzione per editor Markdown a schermo intero)
Ogni tanto, per risolvere problemi pratici merdosi, mi invento soluzioni tecniche complesse e cursate… del tipo di reimplementare la API di WordPress dentro HTMLy per poter gestire il blog basato su quello con la app di WordPress… ma, questo è uno spoiler che non dovrei fare, almeno fintanto che non finisco di lavorarci, cazzarolina. Tuttavia, qualche altra volta, se il caso vuole, mi escono piuttosto soluzioni tecniche semplici ed eleganti… come, in questo caso, aggiustare l’editor di post già presente in HTMLy, senza sostituirlo, per risolvere i problemi pratici merdosi in un modo banalissimo: aggiungere una modalità fullscreen. 🤯L’editor Markdown base dentro quel coso, fatto di una semplice
<textarea>con una barra degli strumenti bonus (e scorciatoie da tastiera) per la formattazione, con un’anteprima a parte (che, tra l’altro, non è accurata rispetto a come il Markdown viene poi renderizzato dal frontend del sito, ma questa è un’altra rogna), per qualche motivo infatti non mi ha mai completamente convinto, ma non mi sono mai messa a riflettere abbastanza da capire come mai ciò fosse il caso… Almeno fino a prima di adesso (cioè, di qualche giorno fa), quando ho capito che il problema è il layout assoluto della pagina admin; non l’editor intrinsecamente, insomma, ma il contesto in cui questo è inserito. 👌In breve, pensandoci, tutti gli editor di testo normali e i programmi di videoscrittura, e le interfacce di blogging di conseguenza, non hanno ‘sta cosa dove la pagina è un form classico con tremila campi, che scrolla pure verticalmente perché ovviamente è bella grande, e il contenuto sta in una delle tante scatoline… bensì è circa tutto il contrario, cioè che il contenuto è al primo posto e tutto il resto sta attorno. In qualcosa come il Blocco note di Windows, questo “attorno” è solo barra dei menu + barra di stato, mentre in WordPress è una serie di tasti importanti sopra e campi misti di lato (o in un menu a parte nella app Android), su Word è la barra gigante in alto, e così via… 🎐
Ma quindi, la soluzione a questo apparentemente insignificante dettaglio di UI/UX, che però mi causa (e penso a molti causerebbe) dei mal di testa (o, almeno, uno stato di controvoglianza nell’uso), — come sempre, perché le interfacce fatte per bene sono invisibili, mentre quelle che non lo sono causano sempre dolore — potrebbe sintetizzarsi in, semplicemente, aggiungere una funzione per cui il campo di testo dell’editor possa andare a finestra intera, prendendo precisamente tutto lo spazio, e non di più o di meno (più la barra degli strumenti fissata). ⚗️
Ora, ovviamente l’ideale massimo sarebbe in ogni caso solo rifare da capo l’intera pagina per farle avere alla base una struttura decente, ma significherebbe appunto ricostruire tutto; e sicuramente con JavaScript potrei riuscirci senza dover rompere ogni cosa, ma per ora chiaramente non c’ho voglia. Già questa piccola modifica tanto basterà per alleviare tantissimo il mal di capa causato da quello che spesso è un doppio scrolling (specialmente su mobile, dove la sofferenza viene credo triplicata), della pagina + l’area di testo (che non si ridimensiona mai automaticamente), o in alternativa il dover scrollare troppo la pagina per raggiungere altri campi se l’area fosse alta quanto il contenuto… e le controindicazioni sono assolutamente zero, quindi ho fatto subito una pull request al capo del progetto, fiduciosa che verrà accettata (quando si sveglia domani, che lui è indonesiano, quindi ora starà nel lettino). 🔧
Pure a livello di codice, ribadisco, non è stato difficile; è bastato un po’ di puro CSS per dichiarare il layout, e del JavaScript integrato nell’editor già esistente per attivare e disattivare l’ambaradan a necessità, col bottoncino o con la combinazione da tastiera che ho registrato (CTRL+P). Per mobile ho in realtà aggiunto anche una proprietà del meta viewport che ho scoperto letteralmente stasera, cioè
interactive-widget=resizes-content, per indicare al browser (almeno, per Chromium e Safari si, su Firefox chi lo sa) di ridurre il l’area della pagina quando la tastiera virtuale è aperta, così da evitare un altro doppio scrolling che altrimenti ci sarebbe… e ora si che è comodo lì, pare nativo! 👄Va detto comunque che l’idea di base non l’ho inventata io, anche se mi è dovuta comunque arrivare come intuizione personale perché io potessi considerarla (poiché non arriva mai nessuno da me a suggerirmi le cose in anticipo e semplificarmi così le missioni, mannaggia alla polvere). Infatti, pensandoci lo fa anche un plugin di cui non ricordo il nome che ho sulla mia DokuWiki, che aggiunge un tasto al campo di editing anch’esso semplice vecchio stile da
<textarea>buttata in una pagina alla bene e meglio, per mandare a schermo intero… ma quell’implementazione è mezza rotta e meno elegante di cosa ho fatto io qui, che ho riutilizzato gli elementi già presenti nel DOM, senza duplicare il campo di testo o fare strane scemenze. Detto questo, però, è proprio strano che questa idea non solo non sia mai venuta al grande capo di HTMLy, ma nemmeno ad altri contributori… non esistono issue o pull request al riguardo, a parte qualcuno che vorrebbe sostituire l’intero editor Markdown con altri più avanzati (che no, non risolverebbe direttamente questo specifico mal di cervello, e lo so perché sulla mia installazione ci ho provato; non è la mancanza di WYSIWYG che mi uccide, è il layout che scrolla e fa cose che bleh… ma ora grazie al cielo non più). 🙌#blogging #CMS #HTMLy #improvement #Markdown #OpenSource #webdev
Add fullscreen feature to Markdown editor by andrigamerita · Pull Request #967 · danpros/htmly
Since I started to use HTMLy, the Markdown editor has always felt kind of strange to me for long posts. After a bit of reflecting, I noticed that this is because any other normal text or blog edito...GitHub
Israel threatens national film awards after Palestinian story wins top prize
cross-posted from: lemmy.zip/post/48951540
Israel's culture minister has threatened to axe funding for the country's national film awards after The Sea, a story about a 12-year-old Palestinian boy, won its top award.
Israel threatens national film awards after Palestinian story wins top prize
The Sea follows a boy from the occupied West Bank who wants to visit Tel Aviv to see the sea for the first time.James Chater (BBC News)
like this
dflemstr, meekah, aramis87, massive_bereavement e Oofnik like this.
To be clear, it's an Israeli film.
As winner of the best film category at the Ophir awards, The Sea now becomes Israel's entry to the international film category at next year's Oscars.
This is what their Culture Minister looks like btw:
Not very cultured if you ask me.
like this
aramis87 likes this.
Saudi Arabia and nuclear-armed Pakistan sign mutual defence pact
Saudi Arabia and nuclear-armed Pakistan sign mutual defence pact
Israel’s attack on Qatar last week heightened those concerns. Read more at straitstimes.com.ST
Mass protests erupt in Buenos Aires over Milei's austerity cuts
Tens of thousands of Argentines filled the streets of downtown Buenos Aires on Wednesday to demand increased funding for universities and pediatric care, which have suffered cuts under libertarian President Javier Milei's austerity measures.Milei's popularity has declined following his deep budget cuts, and he is dealing with the fallout from a corruption scandal and a legislative defeat in Buenos Aires provincial elections earlier this month.
Milei faces high-stakes midterm elections in October, in which his party aims to secure enough seats to keep the opposition-controlled Congress from overriding his vetoes.
Mass protests erupt in Buenos Aires over Milei's austerity cuts
Tens of thousands of Argentines flooded the streets of Buenos Aires on Wednesday, demanding increased funding for public universities and pediatric hospitals, sectors hit hard by President Javier Milei’s sweeping austerity measures.FRANCE 24
Yes, in the sense that printing less money reduces inflation. This isn't exactly a shock.
The big issue is what he has sacrificed to get there. Poverty rates initially spiked, causing a lot of people to burn through their savings. Now the poverty rate has fallen, but people below the poverty line report having even less to spend than before.
And of course he slashed the budgets of a lot of services, so people are feeling that too.
They are, if your definition of working is that inflation is down. No question inflation is way down. Unfortunately employment rates are also way down, and poverty is way up.
So are they working? Depends on the metric you look at. Reducing inflation is, in a vacuum, a significant success; though taken in combination with the secondary harms of austerity, it’s probably a net negative for many people, if not most people.
I'm going to use the same phrase I use for Americans.
Have the day you voted for.
AI note taker for Linux?
I've been trying to find an AI note taker for when I have calls for work so I don't miss anything because my boss likes to ramble through a bunch of tasks at once. I'm looking for one of those background note takers that will be triggered whenever I get a slack or Google meets call, and I don't have to add it to the call for it to work. I'd prefer something open source but not a deal breaker there. The ones I've found when I search for a Linux note taker never seem to have a Linux version for downloading.
Has anyone had any luck finding a good Linux one or had success with a Windows one with wine?
like this
Endymion_Mallorn likes this.
ffmpeg to record audio from your desktop (which will include the meeting) then pass it to whisper.cpp or other text-to-speech FLOSS solutions. No need for "AI" or Windows software for that kind of tasks.GitHub - ggml-org/whisper.cpp: Port of OpenAI's Whisper model in C/C++
Port of OpenAI's Whisper model in C/C++. Contribute to ggml-org/whisper.cpp development by creating an account on GitHub.GitHub
like this
Endymion_Mallorn likes this.
GitHub - lxe/yapyap: fast and simple push to talk dictation
fast and simple push to talk dictation. Contribute to lxe/yapyap development by creating an account on GitHub.GitHub
like this
Endymion_Mallorn likes this.
I just use regular ol' ed for jotting my thoughts on the AI-related news I see each day. After all, it is the standard text editor.
...was that not the question?
/s
Man claims council bid to remove 'therapy' roosters is contrary to human rights conventions
cross-posted from: slrpnk.net/post/27655836
On the one hand he is taking the piss, on the other hand he might not be taking the piss
ABC News
ABC News provides the latest news and headlines in Australia and around the world.ABC News (Australian Broadcasting Corporation)
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.m.youtube.com
China steel exports poised for record high, risking further tariff backlash
cross-posted from: lemmy.zip/post/48946777
China's steel exports are set to hit an all-time high this year, defying predictions that unprecedented trade barriers would drive down shipmentsExports will grow 4% to 9% this year to hit between 115 million and 120 million metric tons, according to forecasts from 11 analysts
Rising exports of semi-finished products are also drawing opposition from the Chinese government. Beijing wants steelmakers to add value and is weighing higher export taxes to discourage shipments of lower-value steel.
‘I’m a modern-day luddite’: Meet the students who don’t use laptops
‘I’m a modern-day luddite’: Meet the students who don’t use laptops
The vast majority of students rely on laptops – and increasingly AI – to help with their university work. But a small number are going analogue and eschewing tech almost entirely in a bid to re-engage their brainsDazed Digital
like this
Maeve, themadcodger, joshg253, PokyDokie, massive_bereavement e Benign like this.
like this
Maeve likes this.
"He goes to the library with nothing but his “pen and paper,” and stays there until his essay is done. “Then I’m free to doomscroll Instagram on my phone without any guilt"
- He doesn't seem very opposed to technology if he just goes straight home and doomscrolls
- Are laptops really new technology to this kid if they've existed for his entire life?
like this
lystopad likes this.
$5 says it's the "what's a computer" kid from like a decade ago
"'laptop'? it's like a foldable but with half a screen??? and why is this keyboard broken, all the keys move?? how do I get an overwatch skin for it?? this is awful"
What a pedantic (and incorrect) take. Luddite can absolutely mean a person who purposefully avoids technology.
I’m sure I’ll get downvoted, but words can have multiple meanings and take on new meanings over time. Luddite is one of them. This article used it properly.
And anyone who disagrees with me can kiss my linguistics-degree-holding ass.
In your defense, the statement specifies "modern-day Luddite" which compares it to the historical Luddite bands and excludes the first meaning of the Oxford dictionary.
Also, avoiding is not the same as opposing.
As “someone who gets distracted very easily,” he made the change to reclaim his attention span. Ditching his laptop gave him an environment where “YouTube isn’t around the corner” and he can focus on his reading.
This is just avoiding the issue of having a short attention span.
Reminds me a lot of fellow classmates at my college who I discovered hate online classes because they say they can't stay focused. So I don't know how these "luddite" students plan to not get distracted when their job will most likely involve sitting in front of a computer.
like this
Maeve, onewithoutaname e yessikg like this.
This is just avoiding the issue of having a short attention span.
I used to be easily distracted during online lectures yet had little difficulty following live lectures. It's a fundamentally different experience, for whatever reason.
Also, the attention span has to be trained. And training it by working without a distracting computer sounds like a good idea.
like this
riot, Maeve, themadcodger, bryndos, NoneOfUrBusiness e Benign like this.
Doodle. I always doodled in my notes. Repeating patterns worked for me, because I am no artist.
I am still unmedicated, and method helped me a lot with lectures using pencil snd paper for notes.
Everyones different, I failed my online college courses. In person, I do alright. You may like online better.
But if you're forced to sit in lecture, fuckin doodle.
Nah, that shit woulda never helped me and I wouldn't even know where to start and I never have, we had laptops open on lectures so I just wrote small programs about whatever concepts the lecturer talked about but to sit in the same place for 2 hours it was borderline impossible.
After entering the workforce it was just pure torture sitting in the office waiting to die 8 hours a day, I went through like a full character arc from arrogant to humble to desperate to hate at others to hate at self to finally worldly and gradually radicalized against the onslaught of alienation.
I came back for my masters in 2020 and it was fairly sweet all online.
Thankfully now many years later I WFH. Uni is far behind. Haven't handwritten anything in years, I'm almost curious to try it
sitting in the office waiting to die 8 hours a day
That is exactly why I absolutely thrived in manufacturing. Well, the right type of manufacturing. I'd rather die than work in an office. I lasted exactly one month at my one and only desk job before I had to quit and find something different.
I don't write often anymore either, but recently tried to write a letter to someone, wow after a few sentences could I notice how out of practice I was. I 'jot things down' all the time, but a letter, paragraphs, whew.
I think it's tough, because many degree jobs are all desk jobs, so it's like, you want the degree and good money, but the work, doesn't sound fun. Im glad wfh has helped though, thats great
This is just avoiding the issue of having a short attention span.
And how do you improve your attention span? By not having distractions available to you.
like this
Benign likes this.
like this
yessikg likes this.
like this
NoneOfUrBusiness, Benign e yessikg like this.
I absolutely love doing everything on the computer and can’t stand writing things by hand anymore. I’ve always learned simply by listening — instructors that force students to take notes were the worst because I would be too busy scrambling to write things down than actually listening and learning.
All of this goes out the window when it comes to foreign language though. I have to do everything old school: textbooks, pencil and paper, and if it’s a non-Latin character set I have to write the same characters over and over for hours.
like this
riot, Maeve, NoneOfUrBusiness, PokyDokie, Benign, onewithoutaname e lystopad like this.
For me I always wrote as i listened, still do often.
I rarely read the notes back.
'Revision' was just writing a whole new set of notes either from memory or from sources.
Then, never reading that set of notes.
Massive waste of paper and ink, but it's part of how i pay attention.
Most of my lecturers did provide printouts of all the slides, but I'd scribble all over them anyway.
Typing doesn't do the same thing at all for me.
like this
NoneOfUrBusiness e PokyDokie like this.
I got myself a remarkable after seeing a colleague use one and thinking they were cool. An astonishing price for what is essentially a kindle that you can write on, but that is essentially the entirety of its functionality right there. No web browser, no ebook integration, no keyboard, just a thing for scribbling notes with a big battery life. No distractions.
As such, it's completely ideal for my work diary, meeting notes, D'n'D notes, maps for games that I've been playing, random scribbles, all sorts. Quite a lot lighter than the thousands of sheets of paper that would be required otherwise. Also not as rude as popping open a laptop when you're meeting someone - they can see you're just making notes and writing to-dos.
like this
onewithoutaname likes this.
like this
lystopad likes this.
Title is misleading:
Nick, a philosophy student at the University of Cambridge, stopped using his laptop for university work in the last year of his undergraduate degree. He still types his essays, but lecture notes, revision, and essay planning are all done by hand.
The second sentence contradicts the first:
stopped using his laptop for university work
then
He still types his essays
So basically he's not taking a laptop in to the lecture hall to take notes etc but is still using a computer to complete his work. Which makes sense as pen & paper in that environment is way more practical anyway.
Laptops are extremely useful. It really doesn't make sense to avoid them.
I pretty much treat mine as my second brain.
like this
yessikg likes this.
Just remember to back that shit up.
Nothing like forgetting your brain on public transport and getting instant amnesia for the past five years.
What is more, the masses did not come out simply to support a new regime blindly. Take the case of Niger: when the military leaders – who were primarily compelled by the unchanging poor protections and remuneration while fighting on the frontline against terrorist incursion, often linked to alleged French support – it was the grassroots organizations that led the call for the ejection of the French military and diplomatic forces, laying siege to the French military garrisons and embassy. These were not simply anti-French outbursts, but a profound rejection of a system that had for too long denied the people of the Sahel their dignity and their right to self-determination. The AES, therefore, is not just a military alliance, but a political project, a bold attempt to forge a new path based on Pan-Africanism, endogenous development, and a resolute anti-imperialist stance...
The challenges ahead remain immense. The economies of the AES countries remain heavily reliant on the export of raw materials, leaving them vulnerable to the vagaries of the global market. The security situation, while improving in some areas, remains precarious. And the forces of imperialism have not been idle. But to focus solely on these challenges is to miss the larger story. The people of the Sahel are not waiting for a savior. They are taking their destiny into their own hands...
like this
Maeve likes this.
I've been to Kerala several times, and there is a fabulous health infrastructure. It starts right at the beginning, with the quality of their educational systems for children and adults. They work on the basis that averaging everyone up leads to the whole being better, including the people running the businesses. Everyone wins. Shock horror, left leaning / socialism works.
like this
Maeve likes this.
TIL tar keeps permissions of the files and directories archived if possible.
like this
Auster e Endymion_Mallorn like this.
.tar.7z aka .t7z when I want maximum compression.
Source : wasted 8 hours trying to figure out why something didn't work anymore (had to switch from tar to zip because stupid security system wouldn't let me transfer the tar file)
tar -czf <folder>
mv folder.{tar.gz,zip}
You can sync user and daemon UIDs across machines with LDAP and SSSD.
And even if you don't do that, keeping the information is useful when restoring to the same machine
I just assumed that whenever it would be expanded that the contents would have the default permissions for that user.
It's actually a cool feature I just feel dumb for how long it took me to realize this was the issue.
It's even a tape archiving tool. Just pretty much nobody uses it in the original way any more.
Very much one of those "if it ain't broke, don't replace it" tools.
Since no one has yet mentioned, by default if you're running tar as a non-root user it extracts files with owner/umask of the current user and if you run it as root (or superuser) it'll preserve ownership and permissions. From tar man page:
--no-same-ownerExtract files as yourself (default for ordinary users).
--no-same-permissions
Apply the user's umask when extracting permissions from the archive (default for ordinary users).
As mentioned, with root the defaults are to keep UID/permissions as they are in the archive. (--preserve-permissions and --same-owner).
Worse, it preserves "special" files like the ones in /dev or /var which aren't removable by anyone other than root. Love extracting a system file backup in my file server as a regular user in order to get just a few files out of it, and promptly not being able to fully delete it afterward without SSHing into the server and using sudo.
I don't get how a regular user can even create files like that. Sounds like a security vulnerability.
For those wishing they could do that with zip and 7zip, you can add a permissions file to the archive that you first make with getfacl, and then on the target after extracting said archive, restore permissions and ownership with setfacl from that file.
Handy for certain support organizations that insist on a zip but that later want the permissions. (Looking at you SAP and IBM).
Trump says he’s designating Antifa as a terrorist organization
President Donald Trump said he is designating the far-left anti-fascism movement Antifa as a terrorist organization, announcing the move on his Truth Social platform in the early hours of Thursday morning UK time.
It wasn’t immediately clear what mechanism Trump would use to make the designation, and Antifa lacks centralized structure or defined leadership, making it unclear who or what precisely would be targeted.
“I am pleased to inform our many U.S.A. Patriots that I am designating ANTIFA, A SICK, DANGEROUS, RADICAL LEFT DISASTER, AS A MAJOR TERRORIST ORGANIZATION,” Trump wrote. “I will also be strongly recommending that those funding ANTIFA be thoroughly investigated in accordance with the highest legal standards and practices. Thank you for your attention to this matter!”
A White House official told CNN, “This is just one of many actions the president will take to address left wing organizations that fuel political violence.”
Trump — who’s overseas for a formal state visit — signaled the move earlier this week in remarks from the Oval Office following the murder of conservative activist Charlie Kirk.
https://www.cnn.com/2025/09/17/politics/antifa-terrorist-designation-trump
like this
Maeve, PokyDokie, themadcodger e SuiXi3D like this.
If you can declare a non organization a terrorist organization, you can also claim that anyone you don't like is a member.
This is deliberate
like this
PokyDokie likes this.
and he wouldn't be wrong if these people are well, anti fascist.
just a way to criminalize resistance with a swift handwave.
Yep so those schedule No Kings for October will be considered terrorist gatherings.
Protest will no longer be allowed. At least peaceful ones. Time for general strike shut this country down.
Is he legally able to do that?
I’m sure the republicans will give him carte blanche here, but I’m wondering if there’s any minimum bar to declare a group a terrorist organization.
He's Facist and AntiFa is short for Anti-Facist
Makes sense from his fantasy version of the world.
Can't wait for him to fall asleep in public and not wake-up
Trump Jnr was on some show a few days ago explaining how Antifa stands for Anti-Fascist but that they’re using the tools of fascists and are become fascist themselves.
This is how they will explain it to the sheep in red hats
If you're against fascism, you're now an enemy of the state.
Better start doing Nazi things to hide your true anti-fascist terrorist feelings, so you don't get arrested!
Probably my favorite line in Lower Decks is from Shaxs.
PAH-WRAITH: You can snap my neck, but what will you do against all your victims? All the Cardassian warriors getting their revenge.SHAXS: They weren't warriors. They were occupiers!
Shaxs has some great anti-facist quotes!
BOIMLER: I just asked if you learned how to throw pots on Bajor.SHAXS: You think I had time for anything other then resisting? Fighting Fascism is a full time job!
Unnecessary lens flares are antifa? Good to know.
[Some people think those lens flairs are really necessary.]
It wasn’t immediately clear what mechanism Trump would use
This is true for nearly everything he's done so far. Yet, he just keeps doing them.
Who runs Antifa, trump? WHO FUCKING RUNS ANTIFA???
NOBODY DOES, YOU SHIT-BRAINED FUCKWIT
When he brings in a random political enemy and dubs them "antifah'z leadurr" and literally nothing changes, his dumbass dickriders will still cheer and party while their freedom continues to erode. They get to blame the most absurd reasons spoonfed to them from daddy propaganda and we have to live with knowing it's their goddamn fault this happened.
Thanks for reading my rant.
like this
themadcodger likes this.
That's the point.
It's a anyone that don't want around. Label them antifa and now you can do everything the law allows with terrorists and worse.
Uncle-fa banning antifa. Hah.
Guess someone that isn't right-leaning have to be blamed for the assassinations and the far-right sure as hell won't have anything coming at them.
This is going to lead to an escalation of political violence.
If something as nebulous as antifa is "terrorist", then it's easy for anyone to be classified as a terrorist. See also what is going on in the UK with Palestine Action. But instead of embarrassed unarmed bobbies doing the arresting, in the US it will be masked, unidentified goons, mirroring ICE practices. So that lowers the threshold to drop into a "homo sacer" category that can be basically shot on sight. Which means, more people will have nothing to lose. Which means more political violence.
Against fascism? Terrorist
Against Trump? Terrorist
Pro-LGBT? Terrorist
Pro-free speech? Believe it or not, terrorist
Designate a concept as a terrorist organization, and then you can label anyone you don't like as antifa so you can prosecute them.
It's ridiculous how far the US is now into fascism. If the frog knew any history it would know what it means to be in a nice pot with warm water on top of a stove.
This feels like those theatre plays for children where the wolf is hiding behind the main character and all the children are shouting "the wolf is there!!" While the main character remains oblivious.
He will label ActBlue as antifia. Its how a lot of progressive gather money to fund their campaigns. So AOC etc will either have to turn to super Pacs and fall inline or get no support.
Just watch they already mentioned investigating them before.
m.youtube.com/watch?v=Uz-htW9D…
It's annoying to explain
Because it's actually quite simple
So listen closely
Because I'll say it only onceIf you're anti-ANTIFA
you are FA
You can say what you want
But that's the truth
And I wish I didn't have to constantly be against something
But how is that supposed to work with all those goddamn Nazi pigs?And if it annoys you to hear that
that's not my problem
but your problem...
not hard to understand at all.I could take care of nice things
We could take care of nice things
Instead, we have to deal with the scumIf you're anti-ANTIFA
you are FA
You can say what you want
But that's the truth
And I wish I didn't have to constantly be against something
But how is that supposed to work with all those goddamn Nazi pigs?How is that supposed to work?
How is that supposed to work?
How is that supposed to work, please?
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.m.youtube.com
So will LGBTQ+ people. Especially trans people.
Similar to how they’re working on porn bans while simultaneously saying that being trans is just a weird sex thing. The end goal is to ban these minority groups from public, and give authorities carte blanche to harass them simply for existing.
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
Massive Attack Turns Concert Into Facial Recognition Surveillance Experiment
Massive Attack Turns Concert Into Facial Recognition Surveillance Experiment
Massive Attack used live facial recognition technology on concertgoers, turning surveillance into provocative art that sparked debate about privacy.Gadget Review
like this
Endymion_Mallorn e Maeve like this.
Social media erupted with bewildered reactions from attendees. Some praised the band for forcing a conversation about surveillance that most people avoid, while others expressed discomfort with the unexpected data capture.Unlike typical concert technology that enhances your experience, this facial recognition system explicitly confronted attendees with the reality of data capture. The band made visible what usually happens invisibly—your face being recorded, analyzed, and potentially stored by systems you never explicitly agreed to interact with.
The audience split predictably along ideological lines. Privacy advocates called it a boundary violation disguised as art. Others viewed it as necessary shock therapy for our sleepwalking acceptance of facial recognition in everyday spaces. Both reactions prove the intervention achieved its disruptive goal.
Your relationship with facial recognition technology just got more complicated. Every venue, every event, every public space potentially captures your likeness. Massive Attack simply made the invisible visible—and deeply uncomfortable. The question now isn’t whether this was art or privacy violation, but whether you’re ready to confront how normalized surveillance has become in your daily life.
like this
Maeve likes this.
If this disturbs you, then good. That was the point.
These guys are amazing. Of all the shows I saw at Roseland NYC, theirs in 96 was the absolute best.
like this
themadcodger e Maeve like this.
Summer of 97. I had just turned 18.
Whenever I hear, teardrop, I am transported back to that night at Roseland.
Roseland was perhaps the greatest musical venue ever do exist. Better than CBGBs.
Cowboys by Portishead gives me goosebumps every time I hear it
Edit: Link, because I had to go listen to it as it's been years: youtu.be/ApQpx-MVk0w
This disturbs me in the best way. I love/hate it.
I wonder how long they can run this before their backend database vendor cuts them off with some flimsy pretext because this kind of thing is bad for business.
Thanks, I just watched the video linked by @spizzat2@lemmy.zip and I see that now. It’s actually a little disappointing and I’d love to see the same kind of public spectacle on hard mode with real-time doxxing from a commercial backend. That would be far more provocative.
I think the article hugely understated that nuance.
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.m.youtube.com
I will agree that it was still powerful. All of the phone videos would memorialize any real doxxing so it’s maybe just as well that they didn’t do it.
I think it would be better with minor obfuscation like F***e L***e for Firstname Lastname. Something instantly recognizable to the victims/participants but not for the entire audience.
That would be far more provocative.
Yes, but depending on the country that could be (public + illegal) if it lists [what is legally considered] personal sensitive information or accidentally reveals someone's secret like the Coldplay incident.
It would be fascinating, but IMO unnecessary and unethical.
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.m.youtube.com
Yes, while its generally common on this platform, we are early adopters for tech so we understand it first. The general public gets exposure much slower, especially when there is efforts to subvert it for profit.
Attention and time are limited, those that focus on tech know things first. Its the same as a chef knowing about food more than the average person.
extreme ironer
I did come across that hobby when I was trying to list examples of productive sports. Yeah, it's a thing.
Why would anybody willingly visit that site. Wtf
IronFox OSS / IronFox · GitLab
Private, secure, user first web browser for Android. https://ironfoxoss.org/GitLab
Oh hang on. My ad blocker was disabled.
I turned it off to test something because my browser kept hanging when surfing the web on my phone.
It is related to ublock origin for some reason. Because the moment I turn it off I can browse like normal.
Case solved why I'm getting it 😀
yeah it was way less offensive than the typical news sites that get posted
pinhole ftw?
The point is that, if you're going to a concert of that size, this technology is being used whether you like it (or know about it) or not. Massive Attack was never going to be able to play venues the size that they do without at least tacitly allowing this to happen. Like literally, the venues would likely not allow them to play.
So I think doing this is better than just letting it happen and staying quiet.
It’s a great way to showcase that these things are in use and will be in use in places with bad privacy laws (and by those that ignore such laws). Most people don’t want to think that this happens on a daily basis, it’s logical for them when you tell them, but they’re busy with their lives and they don’t actually see it being done with their own eyes.
Now tell them how this data is connected to your ticket and your face/video being analyzed after the fact, which is then sold off to become what is basically an quantification of you as a person to judge you and determine what your addictions, views and flaws are, in order to expoit it to make you as miserable as possible. And people won’t really believe it since it’s uncomfortable to believe in. Showing someone’s face makes it more believable and difficult to ignore.
The only people offended by this are those who have something to hide!
/s
https://x.com/IpswichPolice/status/1892910824517177743
I do trust Massiva Attack more than this violent gang of thugs
What is wrong with the populace of ipswitch ? Are they all cattle already ?
Pretty cool... But anyone else get major AI vibes from the way this article is written?
Why even become a journalist anymore if you're just going to be putting prompts into a black box and copy/pasting the output?
"The Consent Question Nobody Asked"
Yeah, that tastes like AI this turn of phrase
This article gives me vibes that someone wrote a few lines outlining the situation and asked the AI to write the article itself. Interestingly though, I think most people would just rather read the outline, less time wasted and less llm.
A part that screams AI would be:
This wasn’t subtle venue security—your biometric data became part of the artistic statement, whether you consented or not.
"This isn't this--it's that" is an extremely common AI sentence structure, further exposed by the fact that the part before the em-dash doesn't even make sense to begin with. No one was asking themselves whether it was part of subtle venue security.
As a sidenote, sometimes I read sentences like this and I wonder "could this ever even have been written by a human?" I think that there's a very low chance that this article didn't have at least some amount of AI involved, but I know that somewhere out there there must be some people who actually write like this. And that's kind of sad.
tbh I don't even know why I even wrote this, the entire article appears to be one big example of generic AI writing
But that's what capitalism is all about! Efficiency.
Now one journal-ist can produce hundreds of art-ickles per hour!
/s
Citizen, we have detected Bad Thought, as well as sarcasm. Have no fear, re-education drones as well as Correct Thought beams are headed your way! Please take this time to make sure the correct flags and slogans are on prominent display.
Have a Wonderful Day!
I'll gladly introduce you to Massive Attack because it seems you never heard of these Trip Hop legends from Bristol.
Good. People don't understand implications until it happens to them. Suddenly they don't like this security features anymore because it became personal.
We need more people to experience that discomfort
If you live in a city (not only) anywhere, you are on at least 5-10 security cams when you leave your home on the way to work or the store, more counting those in your workplace and the store. Unknown how much are with face recognition soft. Think of it, you are tagget.
Worst knowing that a lot of live cams are even with public access and even streaming on YouTube.
- earthcam.com/
- skylinewebcams.com/es/webcam.h…
- worldcams.tv/
- webcamera24.com/
- whatsupcams.com/en/
- webcamtaxi.com/en/
- ....etc.
EarthCam - Webcam Network
EarthCam is the leading network of live streaming webcams for tourism and entertainment around the world with 4K streaming technology.EarthCam
asciinema [as-kee-nuh-muh] is a free and open source solution for recording terminal sessions and sharing them on the web.
Not just on the web. I've previously used it to embed a short clip in a presentation.
The nice thing is that it doesn't do a massive screencap but only captures the text. This way the replay will be freshly rendered at native resolution.
How to get TSA PreCheck while protecting privacy?
I'm in a bit of a bind. I have to get TSA PreCheck, but I really don't want to give up my biometric data to the government. I've read that TSA PreCheck requires my fingerprints and possibly my photo (it's unclear). Interesting, though, is that when you're enrolled in PreCheck you do not get fingerprinted when passing through the airport.
So, I plan to fill in my fingerprints with superglue when I sign up for PreCheck. Weak fingerprints are a condition that affect a lot of people -- construction and farm workers, chemo patients, or some people just have it genetically -- so I don't think it will be too weird if my fingerprints don't show up well in the scan. From what I've read (FlyerTalk, Washington Post) you can still get PreCheck even if you have weak fingerprints. And, since they don't check my fingerprints at the airport, I'm not worried about ever having to match this scan.
My face is effectively a lost cause at this point, so I'm not gonna sweat that one.
My questions.
- Is there any reason my fingerprint plan won't work?
- The PreCheck sign-up process is run by private companies (Idemia, Telos, Clear) and I can choose which one to use. I am going to rule out Clear. Is there any advantage between using Idemia or Telos?
- Is there anything else I should know before signing up?
EDIT:
Wow, these replies are so useless, I had to check to make sure I wasn't on reddit!
like this
frustrated_phagocytosis e NoneOfUrBusiness like this.
Gaza: Top independent rights probe alleges Israel committed genocide
Senior independent rights investigators appointed by the Human Rights Council alleged on Tuesday that Israel’s actions in Gaza constitute genocide, a charge flatly rejected by Tel Aviv.UN News
like this
NoneOfUrBusiness likes this.
like this
NoneOfUrBusiness likes this.
like this
NoneOfUrBusiness likes this.
I think people can separate between people of a faith and a genocide government better than he thinks.
What I would hope to see of Jewish communities all over the world is some public separation from and critique of the Israeli governments actions.
like this
NoneOfUrBusiness likes this.
Intersex people face high levels of violence in Europe
cross-posted from: lemmy.zip/post/48936466
One in six intersex people was physically assaulted in the year 2022, an EU agency report said.
Intersex people face high levels of violence in Europe
One in six intersex people was physically assaulted in the year 2022, an EU agency report said. Intersex people are the only LGBTIQ group that has not experienced a drop in discrimination since an earlier survey in 2019.Hauwau Samaila Mohammed (Deutsche Welle)
like this
aramis87, Maeve, PokyDokie e frustrated_phagocytosis like this.
To be honest, I'm confused about this too.
How are 40% of respondents being harassed at work for being intersex? How do people even find out?
Only about 30% of the people surveyed identify as cis, and around 15% describe their orientation as heterosexual, so I'm sure that they definitely face many of the same struggles that the LGBTQIA+ community faces as a whole.
But why would discrimination at large be decreasing, except for intersex people? Maybe they're feeling more empowered to come out, and people don't know how to react?
I would even expect, if anything, that bigots would be more understanding of someone for whom Nature made life "visibly" harder, but maybe I'm just naive.
In any case, it doesn't seem like the study sheds enough light on this, hopefully more studies will follow so that we can find a way to do better.
discrimination against trans people is increasing in most of the world.
intersex people often look trans, and often are trans.
Lithuanian FM: European sanctions should not seek to punish Israel
cross-posted from: lemmy.zip/post/48941454
Lithuanian FM: European sanctions should not seek to punish Israel
Lithuanian FM: European sanctions should not seek to punish Israel
European Union measures on the war in Gaza should focus on changing the situation on the ground rather than punishing Israel, Lithuanian Foreign Minister Kęstutis Budrys said Wednesday.Vilmantas Venckūnas, BNS (lrt.lt)
Russia-linked group planned parcel bomb attacks in Europe
A Lithuanian investigation has determined Russia-linked suspects packed explosive devices in packages shipped by land and air to the UK, Poland and Germany. Authorities say more attacks were in the works.
Prosecutors in Lithuania said on Wednesday that it disrupted a Russian-led plot to use mail parcels for bomb attacks across Europe.
Several suspects with ties to Russian military intelligence were involved in the plot, a Lithuanian general prosecutor and criminal police said.
According to Lithuanian National Television (LNT), among the suspects charged are nationals of Russia, Lithuania, Latvia, Estonia and Ukraine.
Homemade incendiary devices were to be concealed in massage cushions and cosmetic tubes. The suspects packed the parcels with thermite, a highly flammable substance used for industrial and military purposes.
Google misled users about their privacy and now owes them $425m, says court
A court ordered Google to pay $425 million after finding the company misled 98 million users about data collection through its "Web & App Activity" setting1. The case revealed Google continued gathering user data via Firebase, a monitoring database embedded in 97% of top Android apps and 54% of leading iOS apps, even after users disabled data collection1.
Google's internal communications showed the company was "intentionally vague" about its data collection practices because being transparent "could sound alarming to users," according to district judge Richard Seeborg1.
This ruling adds to Google's recent privacy settlements, including:
- $392 million paid to 40 states in 2023 for location tracking violations
- $40 million to Washington state for similar location tracking issues
- $1.38 billion to Texas in 2025 over location tracking and incognito mode claims1
Google plans to appeal the $425 million verdict, with spokesperson Jose Castaneda stating "This decision misunderstands how our products work" and asserting that Google honors user privacy choices1.
- Malwarebytes - Google misled users about their privacy and now owes them $425m, says court ↩︎ ↩︎ ↩︎ ↩︎ ↩︎
Google misled users about their privacy and now owes them $425m, says court | Malwarebytes
A court has ordered Google to pay $425m in a class action lawsuit after it was found to have misled users about their online privacy.Danny Bradbury (Malwarebytes)
like this
giantpaper e Endymion_Mallorn like this.
like this
giantpaper likes this.
Out of 50 FOSS apps (F-Droid) i use, none use googleanalytics, google-tagmanager or any other tracking framework. Some of them display a send bugreport popup on crash, which redirects to E-Mail.
Out of 5 proprietary apps i use (Aurora store in shelter profile), i see Adobe Experience Cloud, Appdynamics, Google Admob/Crashlytics, AltBeacon and those are some of the more tame apps.
Tested with TrackerControl and confirmed via App Manager.
In short, your claim is false. Are you maybe confusing things with LineageOS optionally using analytics?
TrackerControl | F-Droid - Free and Open Source Android App Repository
TrackerControl allows to monitor and control hidden data collection in apps.f-droid.org
Why don't we treat them like other criminals.
You've done a crime, go to corpo prison for 20 years
Why are we treating corporation, which we "Limit Liability" of the operators already, nicer than we treat humans ?
Like, what happens if you're found to have done fraud ?
That's like 5 years in prison isn't it ?
Don't necessary put the C-suite in prison, just put the corporation in prison for 5 years. Everyone that works there can work somewhere else during the time out.
Other corporation can fill the vacuum while the criminal corporation is absent ?
Because if not, two things are going to happen.
Way more C-unts are going to get Luigi'd
and/or
I'm going to start a criminal corporation and we're going to mulch cop-babies for protein.
Ok, fork it the fuck over.
If we all started going in on all the privacy violation lawsuits and collecting on them it adds up.
Why am I supposed to clip coupons but not collect free money these giant corporations are hemorrhaging?
Edit: Actually just checked and it's about $4/user. I'll take $4 out of spite.
news.bloomberglaw.com/litigati…
Google Hit With $425 Million Jury Verdict in Privacy Trial (5)
Google LLC must pay $425.7 million in compensatory damages for violating the privacy rights of almost 100 million Google users who asked that their account data not be tracked, a jury decided Wednesday.Isaiah Poritz (news.bloomberglaw.com)
And it will be on a prepaid card and you'll need to sign up for a google account to get the card.
That's what Equifax did to people. Made them create an account and fork over personal details to get the settlement payout.
A settlement Equifax had to pay over stolen data. Oh the irony.
The case revealed Google continued gathering user data via Firebase, a monitoring database embedded in 97% of top Android apps and 54% of leading iOS apps, even after users disabled data collection
This is why we can't have nice things.
People were ever confused about Google's relationship with privacy?
I think if anyone is financially liable for misleading anyone, it's the Android community. I mean the fanboys, the anti-Apple guys, the ones who downplayed, omitted, or straight up lied about Android being a vehicle for data collection first and foremost. But they have no direct financial gain for doing so (they gain nothing if you buy a phone running Android, and they lose nothing if you buy an iPhone) so they can't be held liable.
Google has never been your friend if you care about privacy. You use Google tools because they're free and they're pretty good. You pay with your privacy. Always have. You use Android because it's more customisable than iOS, and because of the illusion of open source (iOS is based on macOS which was based on NeXTSTEP which was basically UNIX, so who cares if Android is Linux?). And because you can install custom firmware (e.g. GrapheneOS) which is Android with the tracking stuff stripped out. But you're still paying Google and paying into their business model, i.e. rewarding them for bad behaviour (or at least that which you profess to disapprove of).
(FWIW, I use both platforms. I like both platforms, and I can tell you what I like more about each one beyond what I've said, but it's apocryphal at best.)
I'm sure Google profited more than $425 million by doing so.
This is just part of the cost of doing business.
Great
So lawyers get half right off the bat. Leaves 212 ish million.
This affected how many, let's say 1 billion users. Your privacy is worth 25 cents.
Oh and let's not forget google gets to keep that data it illegally collected.
Bombshell ‘Wall Street Journal’ Investigation Finds Tyler Robinson Once Had Trans Uber Driver
ST. GEORGE, UT—As questions continue to swirl regarding the motive behind last week’s assassination of Charlie Kirk, The Wall Street Journal published a bombshell investigation Monday that suggests alleged gunman Tyler Robinson, 22, once had a transgender Uber driver.
“In its thorough examination of the suspect’s activities in the years leading up the shooting, the Journal found evidence that in March 2021, Robinson rode for nearly 12 minutes in the backseat of a Nissan Sentra driven by a transgender woman,” veteran investigative journalist James Kovacs wrote in the article, which reports that Robinson appeared to have been satisfied with the experience, having given the driver a perfect five-star rating and a $2 tip.
Bombshell ‘Wall Street Journal’ Investigation Finds Tyler Robinson Once Had Trans Uber Driver
ST. GEORGE, UT—As questions continue to swirl regarding the motive behind last week’s assassination of Charlie Kirk, The Wall Street Journal published a bombshell investigation Monday that suggests alleged gunman Tyler Robinson, 22, once had a transg…The Onion Staff (The Onion)
Yielding to External Coercion Will Only Make Mexico More Passive
cross-posted from: hexbear.net/post/6133209
The Mexican government has recently submitted a legislative proposal to Congress, seeking to impose tariffs of up to 50 percent on a wide range of imports from countries that do not have a free trade agreement with Mexico. Statistics show that the measure covers 19 sectors and 1,463 tariff fractions, accounting for about 8.6 percent of Mexico’s total imports. If enacted, this tariff adjustment would raise Mexico’s average tariff rate to 33.8 percent – more than double the current level. The move has drawn considerable international attention.It is clear to any keen observer that the real driver behind Mexico’s latest tariff adjustment is the heavy political pressure and geopolitical coercion coming from Washington. Many international media outlets have noted that the proposal was announced at a time when the US is exerting enormous pressure on Mexico. By leveraging the upcoming review of the US-Mexico-Canada Agreement (USMCA) next year, Washington has thrust Mexico into the eye of the storm, attempting to force the Mexican government to sacrifice its own interests in order to serve US geopolitical strategies.
For an economy heavily dependent on foreign investment and exports, protectionism is not a shield, but the beginning of a domino effect. Mexico’s growth has long relied on the global division of labor in supply chains, especially foreign investment in manufacturing and access to export markets. Yet today, the Mexican government’s repeated resort to tariffs in response to external pressure sends a signal of regulatory volatility and policy uncertainty. This undermines Mexico’s reputation as a “reliable production base” and weakens investor expectations in the long-term allocation of capital, technology, and high-end capacity. Should investment shift toward more open and stable Latin American neighbors, Mexico would not only see its industrial foundation eroded, but also risk falling into passivity and marginalization in regional competition.
Yielding to External Coercion Will Only Make Mexico More Passive - Mexico Solidarity Media
Appeasing the US brings no benefit to Mexico itself. It makes Mexico appear susceptible to coercion, raises doubts about the independence of its policymaking, and encourages the pressuring side to demand even greater concessions.Mexico Solidarity (Mexico Solidarity Media)
Is there a difference in updating via an uppdate manager/discover vs using the terminal?
I have 3 machines I've switched to Linux: an old laptop with Mint, and my primary laptop and PC runing Ubuntu Studio. I use Protonvpn on all 3.
Today I had my app manager on Mint and Discover on Ubuntu showing new updates. I installed Mint's first, via the manager and Proton was an update. It mentioned it would uninstall a few proton things so I figured it had to uninstall them in order to install the new update. Protonvpn stopped working after, it looked uninstalled but my killswitch was still active (so no internet at all and no access to open the vpn app). I had to find out how to kill the network processes via ncmli (good new info to learn!) and do a roundabout uninstall through a process I found in an old Proton post as just uninstalling it with normal commands didn't work, restart the laptop then reinstall Protonvpn.
So on my laptop and PC, I updated via terminal instead, using sudo apt update/upgrade. All smooth and no issues.
Was my Mint problem a one-off glitch or is there a real difference when updating via update manager vs the terminal?
Edit: Thanks guys, seems the general consensus is yes, but some of ya's say no haha. I knew going into the question that having Mint screw up with manager and Ubuntu Studio work with terminal opens a lot of os possibilities beyond simply manager vs terminal.
Next Proton update, I'm going to try the terminal on Mint instead of manager, and the manager on my Ubuntu Studio laptop instead of terminal and see if anything screws up.
like this
Auster e Endymion_Mallorn like this.
dnf command. But after updating system packages via Discover, it prompts me to restart the PC to finish the update. What is it actually doing? Why does DNF not do that?
It's safer, and uses a systemd mechanism to update with most programs not running.
That said, I've never had a problem updating without restarting...
You can change the behavior in System Settings -> Software Update -> Apply System Updates
Pick either immediately or after rebooting
Some things only get applied once you restart. Take the kernel for example. It will be used once restarted. It is safe to restart at a later time but you would still be running a older kernel at that point.
So technically the update is done but not everything is using it yet. Dnf does tell you you should restart for some things to be applied. The choice is yours to do so.
On Ubuntu, I’m not sure about “Discover”, but I use the GUI called “Software Updater”. This is just a GUI on top of apt/apt-get which I can also use from the command line.
Not sure about Mint, but I would expect it to be very much similar.
on my manjaro machine updating via terminal doesn't cover some updates. Opening the software manager reveals missed updates. stuff like gear level and freedesktop.org. couldn't tell ya why.
on my fedora kde machine, it misses stuff from Discover. also not sure why.
on mint, terminal covers everything. same on debian.
The Linux Mint GUI updater is an interesting bit of code, or at least it was about 5 years ago. I looked at updating it a bit with a status bar for a stage I thought could use it.
I opened up the code....Python that just uses a shell call to apt. No muss, no library calls. Okay, that'll do.
It was a functional wrapper on the command line calls, exactly as you'd hope for a tool.
there is. if the updater gui integrates with packagekit and systemd, it can start an offline update that reboots your system and installs the updates while nothing else is running.
kind of like on windows, except that this is one of the things where windows made the right call. complex software does not handle it well if its program libraries and assets are being replaced by newer ones that the running version cannot understand.
its still kind of a new thing, not all distros make use of it yet, but Fedora does, and it's not a Fedora custom solution but something that most distros can have.
automatic filesystem snapshots and rollback can be integrated to this too, and then bye bye to updates breaking the whole system.
Spain cancels $825M 'Israeli' arms deal
Spain has moved to cancel nearly a billion euros’ worth of weapons contracts linked to 'Israeli' firms.
According to documents published on Spain’s official public contracts platform, Madrid has halted a 700 million euros (USD 825 million) agreement for 12 SILAM rocket launcher systems, which were based on the 'Israeli'-made PULS design from Elbit Systems. The deal, awarded to a consortium of Spanish companies, was struck down on September 9, following earlier media reports.
like this
originalucifer, Maeve e Endymion_Mallorn like this.
Spain cancels $825M 'Israeli' arms deal
Spain has moved to cancel nearly a billion euros’ worth of weapons contracts linked to 'Israeli' firms.
According to documents published on Spain’s official public contracts platform, Madrid has halted a 700 million euros (USD 825 million) agreement for 12 SILAM rocket launcher systems, which were based on the 'Israeli'-made PULS design from Elbit Systems. The deal, awarded to a consortium of Spanish companies, was struck down on September 9, following earlier media reports.
☆ Yσɠƚԋσʂ ☆ likes this.
Nepal protesters set parliament building on fire after PM Oli resigns
Nepal protests updates: PM Oli resigns, parliament torched, airport shut
Protesters break into parliament building and set it on fire after Prime Minister K P Sharma Oli resigns.Edna Mohamed (Al Jazeera)
And what a depressing thought it because it recognizes how all this shit keeps happening because it kept working.
The difference now is because of TikTok and even that has been muzzled now.
Maeve likes this.
Biggest illegal drug importer* in USA is DEA, probably closely followed (and assisted by) Coast Guard.
Edited a letter
In Gaza, the so-called 'evacuation of civilians' is a trail of bombs and death
by Amira Hass
Sept 17, 2025
"𝐓𝐡𝐞 𝐢𝐦𝐚𝐠𝐞𝐬 𝐚𝐫𝐞 𝐧𝐨𝐭 𝐞𝐧𝐨𝐮𝐠𝐡. 𝐓𝐡𝐞 𝐫𝐞𝐩𝐨𝐫𝐭𝐬 𝐚𝐫𝐞 𝐥𝐢𝐦𝐢𝐭𝐞𝐝. 𝐓𝐡𝐞 𝐧𝐞𝐰𝐬 𝐟𝐥𝐚𝐬𝐡𝐞𝐬 𝐭𝐞𝐥𝐥 𝐨𝐧𝐥𝐲 𝐚 𝐬𝐦𝐚𝐥𝐥 𝐩𝐚𝐫𝐭 𝐨𝐟 𝐭𝐡𝐞 𝐭𝐫𝐮𝐭𝐡. 𝐓𝐨 𝐫𝐞𝐚𝐥𝐥𝐲 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐰𝐡𝐚𝐭 𝐢𝐬 𝐡𝐚𝐩𝐩𝐞𝐧𝐢𝐧𝐠, 𝐲𝐨𝐮 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐡𝐞𝐫𝐞 – 𝐞𝐯𝐞𝐧 𝐣𝐮𝐬𝐭 𝐟𝐨𝐫 𝐚 𝐟𝐞𝐰 𝐡𝐨𝐮𝐫𝐬. 𝐇𝐞𝐚𝐫 𝐭𝐡𝐞 𝐫𝐨𝐚𝐫 𝐨𝐟 𝐭𝐡𝐞 𝐩𝐥𝐚𝐧𝐞𝐬 𝐚𝐛𝐨𝐯𝐞 𝐲𝐨𝐮𝐫 𝐡𝐞𝐚𝐝. 𝐓𝐫𝐞𝐦𝐛𝐥𝐞 𝐰𝐢𝐭𝐡 𝐞𝐚𝐜𝐡 𝐞𝐱𝐩𝐥𝐨𝐬𝐢𝐨𝐧 𝐚𝐧𝐝 𝐜𝐡𝐨𝐤𝐞 𝐨𝐧 𝐭𝐡𝐞 𝐭𝐡𝐢𝐜𝐤 𝐝𝐮𝐬𝐭 𝐚𝐧𝐝 𝐬𝐦𝐨𝐤𝐞. 𝐎𝐧𝐥𝐲 𝐭𝐡𝐞𝐧 𝐰𝐢𝐥𝐥 𝐲𝐨𝐮 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐭𝐡𝐚𝐭 𝐭𝐡𝐞 𝐬𝐮𝐟𝐟𝐞𝐫𝐢𝐧𝐠 𝐢𝐬 𝐡𝐞𝐚𝐯𝐢𝐞𝐫 𝐭𝐡𝐚𝐧 𝐥𝐚𝐧𝐠𝐮𝐚𝐠𝐞 𝐜𝐚𝐧 𝐛𝐞𝐚𝐫. 𝐇𝐞𝐫𝐞 𝐢𝐧 𝐆𝐚𝐳𝐚, 𝐞𝐯𝐞𝐧 𝐭𝐡𝐞 𝐬𝐢𝐥𝐞𝐧𝐜𝐞 𝐬𝐜𝐫𝐞𝐚𝐦𝐬."
In Gaza, the so-called 'evacuation of civilians' is a trail of bombs and death
Gaza is being wiped off the map, stone by stone. "Words are losing their meaning and can no longer convey what is happening," one resident writesAmira Hass (Haaretz)
Palestine reshared this.
In Gaza, the so-called 'evacuation of civilians' is a trail of bombs and death
cross-posted from: lemmy.ml/post/36303524
by Amira Hass
Sept 17, 2025
"𝐓𝐡𝐞 𝐢𝐦𝐚𝐠𝐞𝐬 𝐚𝐫𝐞 𝐧𝐨𝐭 𝐞𝐧𝐨𝐮𝐠𝐡. 𝐓𝐡𝐞 𝐫𝐞𝐩𝐨𝐫𝐭𝐬 𝐚𝐫𝐞 𝐥𝐢𝐦𝐢𝐭𝐞𝐝. 𝐓𝐡𝐞 𝐧𝐞𝐰𝐬 𝐟𝐥𝐚𝐬𝐡𝐞𝐬 𝐭𝐞𝐥𝐥 𝐨𝐧𝐥𝐲 𝐚 𝐬𝐦𝐚𝐥𝐥 𝐩𝐚𝐫𝐭 𝐨𝐟 𝐭𝐡𝐞 𝐭𝐫𝐮𝐭𝐡. 𝐓𝐨 𝐫𝐞𝐚𝐥𝐥𝐲 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐰𝐡𝐚𝐭 𝐢𝐬 𝐡𝐚𝐩𝐩𝐞𝐧𝐢𝐧𝐠, 𝐲𝐨𝐮 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐡𝐞𝐫𝐞 – 𝐞𝐯𝐞𝐧 𝐣𝐮𝐬𝐭 𝐟𝐨𝐫 𝐚 𝐟𝐞𝐰 𝐡𝐨𝐮𝐫𝐬. 𝐇𝐞𝐚𝐫 𝐭𝐡𝐞 𝐫𝐨𝐚𝐫 𝐨𝐟 𝐭𝐡𝐞 𝐩𝐥𝐚𝐧𝐞𝐬 𝐚𝐛𝐨𝐯𝐞 𝐲𝐨𝐮𝐫 𝐡𝐞𝐚𝐝. 𝐓𝐫𝐞𝐦𝐛𝐥𝐞 𝐰𝐢𝐭𝐡 𝐞𝐚𝐜𝐡 𝐞𝐱𝐩𝐥𝐨𝐬𝐢𝐨𝐧 𝐚𝐧𝐝 𝐜𝐡𝐨𝐤𝐞 𝐨𝐧 𝐭𝐡𝐞 𝐭𝐡𝐢𝐜𝐤 𝐝𝐮𝐬𝐭 𝐚𝐧𝐝 𝐬𝐦𝐨𝐤𝐞. 𝐎𝐧𝐥𝐲 𝐭𝐡𝐞𝐧 𝐰𝐢𝐥𝐥 𝐲𝐨𝐮 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐭𝐡𝐚𝐭 𝐭𝐡𝐞 𝐬𝐮𝐟𝐟𝐞𝐫𝐢𝐧𝐠 𝐢𝐬 𝐡𝐞𝐚𝐯𝐢𝐞𝐫 𝐭𝐡𝐚𝐧 𝐥𝐚𝐧𝐠𝐮𝐚𝐠𝐞 𝐜𝐚𝐧 𝐛𝐞𝐚𝐫. 𝐇𝐞𝐫𝐞 𝐢𝐧 𝐆𝐚𝐳𝐚, 𝐞𝐯𝐞𝐧 𝐭𝐡𝐞 𝐬𝐢𝐥𝐞𝐧𝐜𝐞 𝐬𝐜𝐫𝐞𝐚𝐦𝐬."
In Gaza, the so-called 'evacuation of civilians' is a trail of bombs and death
by Amira Hass
Sept 17, 2025"𝐓𝐡𝐞 𝐢𝐦𝐚𝐠𝐞𝐬 𝐚𝐫𝐞 𝐧𝐨𝐭 𝐞𝐧𝐨𝐮𝐠𝐡. 𝐓𝐡𝐞 𝐫𝐞𝐩𝐨𝐫𝐭𝐬 𝐚𝐫𝐞 𝐥𝐢𝐦𝐢𝐭𝐞𝐝. 𝐓𝐡𝐞 𝐧𝐞𝐰𝐬 𝐟𝐥𝐚𝐬𝐡𝐞𝐬 𝐭𝐞𝐥𝐥 𝐨𝐧𝐥𝐲 𝐚 𝐬𝐦𝐚𝐥𝐥 𝐩𝐚𝐫𝐭 𝐨𝐟 𝐭𝐡𝐞 𝐭𝐫𝐮𝐭𝐡. 𝐓𝐨 𝐫𝐞𝐚𝐥𝐥𝐲 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐰𝐡𝐚𝐭 𝐢𝐬 𝐡𝐚𝐩𝐩𝐞𝐧𝐢𝐧𝐠, 𝐲𝐨𝐮 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐡𝐞𝐫𝐞 – 𝐞𝐯𝐞𝐧 𝐣𝐮𝐬𝐭 𝐟𝐨𝐫 𝐚 𝐟𝐞𝐰 𝐡𝐨𝐮𝐫𝐬. 𝐇𝐞𝐚𝐫 𝐭𝐡𝐞 𝐫𝐨𝐚𝐫 𝐨𝐟 𝐭𝐡𝐞 𝐩𝐥𝐚𝐧𝐞𝐬 𝐚𝐛𝐨𝐯𝐞 𝐲𝐨𝐮𝐫 𝐡𝐞𝐚𝐝. 𝐓𝐫𝐞𝐦𝐛𝐥𝐞 𝐰𝐢𝐭𝐡 𝐞𝐚𝐜𝐡 𝐞𝐱𝐩𝐥𝐨𝐬𝐢𝐨𝐧 𝐚𝐧𝐝 𝐜𝐡𝐨𝐤𝐞 𝐨𝐧 𝐭𝐡𝐞 𝐭𝐡𝐢𝐜𝐤 𝐝𝐮𝐬𝐭 𝐚𝐧𝐝 𝐬𝐦𝐨𝐤𝐞. 𝐎𝐧𝐥𝐲 𝐭𝐡𝐞𝐧 𝐰𝐢𝐥𝐥 𝐲𝐨𝐮 𝐮𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝 𝐭𝐡𝐚𝐭 𝐭𝐡𝐞 𝐬𝐮𝐟𝐟𝐞𝐫𝐢𝐧𝐠 𝐢𝐬 𝐡𝐞𝐚𝐯𝐢𝐞𝐫 𝐭𝐡𝐚𝐧 𝐥𝐚𝐧𝐠𝐮𝐚𝐠𝐞 𝐜𝐚𝐧 𝐛𝐞𝐚𝐫. 𝐇𝐞𝐫𝐞 𝐢𝐧 𝐆𝐚𝐳𝐚, 𝐞𝐯𝐞𝐧 𝐭𝐡𝐞 𝐬𝐢𝐥𝐞𝐧𝐜𝐞 𝐬𝐜𝐫𝐞𝐚𝐦𝐬."
In Gaza, the so-called 'evacuation of civilians' is a trail of bombs and death
Gaza is being wiped off the map, stone by stone. "Words are losing their meaning and can no longer convey what is happening," one resident writesAmira Hass (Haaretz)
Corals Won’t Survive a Warmer Planet, a New Study Finds | Most corals in the Atlantic Ocean will soon stop growing. Many are already dying, leaving shorelines and marine ecosystems vulnerable.
Reduced Atlantic reef growth past 2 °C warming amplifies sea-level impacts - Nature
An analysis of coral reefs in the tropical western Atlantic suggests that nearly all will be eroding by 2100 if global warming exceeds 2 °C, which will worsen the effects of sea-level rise.Nature
like this
Maeve e Endymion_Mallorn like this.
Far-right AfD’s vote triples in elections in German bellwether state
Far-right AfD’s vote triples in elections in German bellwether state
Party takes 16.5% of the vote in North Rhine-Westphalia, behind governing CDU and Social DemocratsKate Connolly (The Guardian)
geneva_convenience
in reply to geneva_convenience • • •RedCat
in reply to geneva_convenience • • •Bloobish [comrade/them]
in reply to geneva_convenience • • •robot_dog_with_gun [they/them]
in reply to geneva_convenience • • •