Salta al contenuto principale



IYO Sues OpenAI Over IO


IYO filed a trademark infringement lawsuit [PDF] against OpenAI and Jony Ive's company earlier this month, alleging the defendants deliberately adopted a confusingly similar name for competing products. The lawsuit surfaced after the Microsoft-backed startup quietly pulled promotional materials about its $6.5 acquisition billion deal with Ive's firm.


Case file: business.cch.com/ipld/IYOIOPro…





Republican senators’ proposed Medicaid cuts threaten to send red states ‘backwards’


Advocates are urging Senate Republicans to reject a proposal to cut billions from American healthcare to extend tax breaks that primarily benefit the wealthy and corporations.

The proposal would make historic cuts to Medicaid, the public health insurance program for low-income and disabled people that covers 71 million Americans, and is the Senate version of the “big beautiful bill” act, which contains most of Donald Trump’s legislative agenda.

“With the text released earlier this week, somehow the Senate made the House’s ‘big, bad budget bill’ worse in many ways,” said Anthony Wright, the executive director of Families USA, a consumer healthcare advocacy group, in a press call.

#USA



Trump social media site brought down by Iran hackers


  • Hours after the US airstrike on Iranian territory, Iranian-backed hackers took down US President Donald Trump’s social media platform.
  • Users were struggling to access Truth Social in the early morning following the alleged hack.
  • As the US continues to insert itself into the ongoing Iran-Israel conflict, the US government believes more cyberattacks could happen.

https://htxt.co.za/2025/06/trump-social-media-site-brought-down-by-iran-hackers/

in reply to Pro

Thankfully only DDos. Truth Social is Mastodon so a security flaw could have been a real problem.
in reply to MrMakabar

Is It Mastodon?! For real? Does it have ActivityPub enabled and all of that?


That's right Chris, it's war!




in reply to Maroon

I'm seeing a lot of advocacy for Mint on Lemmy but not as much for Fedora it seems?

I've only ever run one Linux distro and that was Fedora KDE Plasma, havent tried Mint yet. Are they not mostly the same or am I missing something?

in reply to CosmoSaucer

It's easier to install/use. It was my first distro before I switched to CachyOS for my latest build.
in reply to CosmoSaucer

Apt is a massive and reliable package manager. Im not very surprised. However I am surprised no one is specifying LMDE
in reply to Maroon

I’m trying, I really am. My current issue is that Wi-Fi completely ignores IPV4 if I’m on a network with additional IPV6 support.


Spain calls for suspension of EU-Israel trade deal


Spanish Foreign Minister Jose Manuel Albares said on Monday that he will urge the foreign ministers of the European Union to suspend the EU-Israel Association Agreement immediately, Azernews reports.

"If the Association Agreement is based on human rights, then it's the most normal thing that we suspend it immediately today and move forward. That is why I will ask for the suspension of the agreement and embargo on selling weapons to Israel, as well as sanctions to everyone who wants to be a spoiler to the two-state solution," Albares stressed at the sidelines of the European Foreign Affairs Council in Brussels.



Mother in Germany separated from one-year-old son over Palestinian activism


A Palestinian-Jordanian woman with German residency was separated from her one-year-old after German authorities deemed the child a security threat, she and her lawyers say.

The European Legal Support Centre, which is supporting her case, say the woman is the latest victim of the German state’s weaponisation of residency issues to repress Palestinian solidarity.

“The German state systematically exploits residence, asylum and citizenship law to punish already marginalised communities,” said an ELSC spokesperson.“There is no justification for separating a newborn from his parents, yet to label the child a ‘security threat’ marks a grotesque new low, even by their own oppressive standards."



The strenghts and weaknesses of atproto and activitypub.


There is a lot bluesky gets right, and a lot it gets wrong, the same is true with Activitypub.

(Some) strengths of Atproto


Atproto is content-addressed, and portable. This means that posts can exist independantly of their original server.
Instead of giving posts a https uri, which will stop working if a user moves servers or their server disappears, they give them at uris.
For example, this post on bsky.app: bsky.app/profile/ponder.ooo/po…
Has the at:// link is: at://did:plc:i4bfh2tyxihe2ksplmtcoopk/app.bsky.feed.post/3lk4yrmyugc2f.
The post does exist over https at https://porcini.us-east.host.bsky.network/xrpc/com.atproto.repo.getRecord?repo=did:plc:i4bfh2tyxihe2ksplmtcoopk&collection=app.bsky.feed.post&rkey=3lk4yrmyugc2f.


Atproto is very easy to build apps on. For example, tangled.sh, frontpage.fyi and flushes.app are all apps built on atproto.
Atproto allows more flexibility in what an app can do, as opposed to lemmy or mastodon's api.


Atproto is better documented. The ActivityPub spec leaves a lot up to the reader.


Atproto has some really good moderation tools for users. People can make public blocklists of users, and people can subscribe to labellers, people or services which give users/posts a label.

Weaknesses of Atproto


almost everyone is on bluesky's PDSes. I thought mastodon.social and lemmy.world were bad, but the people on alternate PDSes altogether adds up to only a few thousand.

Its decentralised identifiers are actually completely centralised!
DID:PLC, their DID method, originally stood for placeholder, but they renamed it to Public Ledger of Credentials.
To use it, you have to use plc.directory.
You can use a DID:WEB DID, but if your website linked to it goes down you lose your identity.
(I find it extremely funny that its not actually a requirement for a decentralised identifier to be decentralised. )

Everything on the network has to be public to work.
since relays have to be able to collect all the information on the network for Appviews to be able to make use of that information, anyone can find out who's blocking someone, or who is on a list, or who's following who, with no way of hiding that information.
Private accounts and posts are impossible to do on atproto.

Since everything is public, DMs (for now) are centralised. They do seem like they want to change that though.

Strengths of ActivityPub


AP (ActivityPub) is better distributed. While it has large servers (like mastodon.social or lemmy.world (and threads, but we don't talk about threads)) the majority of users are not on those servers. There is no single point of failure. If bluesky disappeared tomorrow, atproto would still exist, it would just have a negligable amount of users.

One node in the network lets you do everything, as opposed to bluesky which has three parts (You can do stuff without a relay though). This means you can trust a lot less of the network.

ActivityPub scales better than ATProto. Atproto scales quadratically, meaning that having a lot of nodes in the network harms performance.
AP scales horizontally, meaning it works better with a lot of small servers.

ActivityPub can keep stuff private, like blocks and posts.
Though, a lot of implementations can leak posts.

Weaknesses of ActivityPub


The spec leaves so much out. They didn't propose a way to make sure requests between servers are validated, so mastodon chose HTTP signatures.
They didn't add any way of looking up handles, so mastodon chose webfinger.

A posts's id is its https uri, this means thatif a server goes down, stuff can't be fetched. A user can't move their followers if their server goes down (you can on ATproto). There is a standard to fix this, FEP-ef61, but it breaks compatibility with a lot of implementations.

Missing information is a problem. Its not really a problem on lemmy, but on mastodon likes and replies from other servers may not make it to your server at all (you can fetch replies in newer versions of mastodon though).


All this aside, I do think the two can coexist. I don't see anything like lemmy working on atproto. ActivityPub seems closer to social networking, as opposed to social media.
Something like facebook would be impossible to make on atproto, because not everything is made to be public.

I am hoping for a bridge, but good (bridgy is opt-in, making it useless).

Questa voce è stata modificata (3 mesi fa)
in reply to FundMECFS

Yes, this does help, but atproto as a whole still doesn't scale well:

In the beginning of our network, we have 26 users, which conveniently for us map to each letter of the English alphabet: [Alice, Bob, Carol, ... Zack]. Each user sends one message per day, which is intended to have one recipient. (This may sound unrealistic, but this is fine to do to model our scenario.) To simplify things, we'll have each user send a message in a ring: Alice sends a message to Bob, Bob sends a message to Carol, and so on, all the way up to Zack, who simply we wrap around and have message Alice. This could be because these messages have specific intended recipients or it could be because Bob is the sole "follower" of Alice's posts, Carol is the sole "follower" of Bob's, etc.

Let's look at what happens in a single day under both systems.

Under message passing, Alice sends her message to Bob. Only Bob need receive the message. So on and so forth.

From an individual self-hosted server, only one message is passed per day: 1.
From the fully decentralized network, the total number of messages passed, zooming out, is the number of participants in the network: 26.
Under the public-gods-eye-view-shared-heap model, each user must know of all messages to know what may be relevant. Each user must receive all messages.

From an individual self-hosted server, 26 messages must be received.

Zooming out, the number of messages which must be transmitted in the day is 26 * 26: 676, since each user receives each message.

Okay, so what does that mean? How bad is this? With 26 users, this doesn't sound like so much. Now let's add 5 users.

Under message passing:

Per server, still 1 message received per user per day.
Per the network, it's 5 extra messages transmitted per day, which makes sense: we've added 5 users.
Under the public-gods-eye-view-shared-heap model:

Per server: 5 new messages received per user per day.

Per the network, it's ((31 * 31) - (26 * 26)): 285 new messages per day!

But we aren't actually running networks of 26 users. We are running networks of millions of users. What would happen if we had a million self-hosted users and five new users were added to the network? Zooming out, once again, the message passing system simply has five new messages sent. Under the public shared heap model, it is 10,000,025 new messages sent! For adding five new self-hosted users! (And that's even just with our simplified model of only sending one message per day per user!)


Source: dustycloud.org/blog/re-re-blue…

As well as this, if there was a reddit-like atproto AppView, setting up multiple instances of it would still result in the same problems.

in reply to irelephant [he/him]

But this is assuming private messages no?

When 99% of the public traffic is on posts that will federate to most servers, this model becomes irrelevant.



[Article] Human breathing patterns are as unique as our fingerprints


Just like fingerprints, your breathing patterns may be a unique identifying feature. Scientists have found they can identify people with 96.8% accuracy using only their breathing patterns. And it's not just simple identification, researchers say they can even predict Body Mass Index (BMI), state (sleeping or awake), and cognitive traits (anxiety or depression) from the way you breathe.


Emmanuel Macron’s Bid to Divide the Left Is Paying Off


One year since the New Popular Front won a surprise election victory, France’s left looks more divided than ever. This month’s Socialist congress showed how much the party is at loggerheads with Jean-Luc Mélenchon’s France Insoumise.


Democratize AI or Make the AI Oligarchy an Inevitability


Artificial intelligence technologies are leading us to a critical juncture, forcing a fundamental rethinking of both work and the welfare state. This is a field where early surrender, allowing capital to shape the future, is not an option.

in reply to SnokenKeekaGuard

Moth flying into the hot light bulb: Bzzt Gets fried

190 Millions years of evolution lost to human progress, onwards!




What is the best degoogled tablet for an artist?


cross-posted from: lemmy.world/post/31808224

Please see the cross-post as it is updated.

What is the best degoogled tablet for an artist

what is the best tablet for iodeOS, GrapheneOS and LineageOS
- with smooth stylus support that is as good as apple pen
- palm rejection
- pressure sensitive stylus
- works well for krita / excalidraw / xournalapp
- latency
- at least 16GB RAM and 256GB storage


For iodeOS, it doesn't seem to support any tablet device officially
- iodéOS official supported devices - iodé


For GrapheneOS, the only choice is google pixel tablet (or maybe pixel fold). However
- pixel tablet have latency issue
- based on Google Pixel Tablet Review - YouTube
- pixel fold does not support stylus
- workaround This Stylus Pen works with the Google Pixel Fold - YouTube
- Can someone share their GrapheneOS pixel tablet experience on krita / excalidraw / xournalapp?


For LineageOS
- What tablet+stylus+LineageOS has the best performance?
- What tablet+stylus+LineageOS has the best balance between price and performance?
- Can someone share their stylus experience on krita / excalidraw / xournalapp?

Sincere thanks


cross-posted from: lemmy.world/post/31808224

Please see the cross-post as it is updated.



Unknown parent

lemmy - Collegamento all'originale
Grandwolf319
if you want to force your way into World War 3 this seems like a brilliant idea.


Feels more like a speed run, the actors of this conflict don’t have many days left.

in reply to Ayano

Like vampires, but instead of blood, they suck oil.



in reply to cyrano

My US visa officer: what do you mean you did not have 'social' media accounts in 5 years? No, these weird sites don't count. Underground terrorist? Straight to gulag.
Questa voce è stata modificata (3 mesi fa)



What happened to the chapters? There are only two chapters.


in reply to almost1337

You should also stop using Tachiyomi they got a DCMA request and shut down a while back. Move to Mihon, a fork of Tachiyomi.

github.com/mihonapp/mihon




Berlin: proposal to remove 30 km/h zones because air quality improved, thanks to 30 km/h zones


The absurdity of the proposal is already in the title, and shows how motonormativity is spread all over the world.

Berlin has a very good public transit system, and a few 30 km/h zones cannot be that bad.

I would love to hear opinions from someone who lives there!

crossposted from: mastodon.uno/users/rivoluzione…


Non solo in Italia: a Berlino vogliono togliere le zone 30, perché l'aria è migliorata, grazie alle zone 30.

L'assurdità della proposta è tutta nel titolo, e dimostra quanto la #motonormatività sia diffusa. #Berlino, una città con #trasportoPubblico davvero eccellente, può concedersi tranquillamente zone dove la velocità non la fa da padrone.

#citta30 #zone30 @energia

rbb24.de/politik/beitrag/2025/…


Questa voce è stata modificata (3 mesi fa)
in reply to lgsp@feddit.it

Yep sounds absurd. As I unterstand it the problem is that you need a reason for 30 km/h zones. The reason was the air quality which is now better so there is no reason anymore.
Some zones may be kept because the streets are used by school kids.

I think this is still absurd and good 30 km/h zones with synced traffic lights can yield a good traffic flow.

in reply to Ekpu

The fact that they have improved air quality is not sufficient reason? Do they think air quality is like painting a house, that it only has to be done every couple of years?
Unknown parent

lemmy - Collegamento all'originale
Scrollone
I wonder why conservatives are so retarded, in each country.

in reply to Derpenheim

Looks pretty bad but a little less brutal than the swiss one


Telegram is indistinguishable from an FSB honeypot


in reply to Andromxda 🇺🇦🇵🇸🇹🇼

No, not that very obvious thing that people have been saying for years! I simply refuse to believe it!
in reply to Andromxda 🇺🇦🇵🇸🇹🇼

Just infantile Western propaganda/russophobia. reverse it for Western reality, and ignore the post..


gigarivista scottiaca con segretissimo numero, trovato così nel vedere colì


A distanza di 2 anni (…io pensavo 1), chi si ricorda Scottecs Gigazine? Probabilmente nessuno, neppure io onestamente. Però, l’altro giorno mi è tornato in mente che esiste, giusto per caricare su TomoStash una manciata di volumi molto vecchi che ho trovato sull’agrodolce Archivio di Anna… e ok. Però poi ieri ho aperto il sito […]

octospacc.altervista.org/2025/…


gigarivista scottiaca con segretissimo numero, trovato così nel vedere colì


A distanza di 2 anni (…io pensavo 1), chi si ricorda Scottecs Gigazine? Probabilmente nessuno, neppure io onestamente. Però, l’altro giorno mi è tornato in mente che esiste, giusto per caricare su TomoStash una manciata di volumi molto vecchi che ho trovato sull’agrodolce Archivio di Anna… e ok. Però poi ieri ho aperto il sito ufficiale della rivista gigante, per includere i link e per copincollare le descrizioni dei tomi, e lì ho scoperto non una, ma ben due (2) cose assurde… furbuffe, quasi. (!) 😱

Innanzitutto, esiste un numero speciale del Gigazine, il Numero Zero XL, che è esclusivamente digitale e gratuito!!! Non l’ho mai sentito prima, e in effetti è bello nascosto sul sito, tutto in fondo alla lista dei prodotti… sarà un regalo per i ficcanaso, e io approvo. La cosa strana però è che non si vede alcun tasto per scaricare, o che… l’unica cosa che a fatica trovo è il tasto “aggiungi al carrello secondario”, scrollando in fondo alla pagina, dove appare come flyout, ma… clicco e non funziona, semplicemente il testo si trasforma in una rotellina che gira all’infinito. Per sicurezza ho provato anche dal browser dei pensionati, che “non si sa mai che su Firefox magari è tutto rotto, specialmente il mio con 31 estensioni“, ma niente. 😓

Grande terrore, quindi. Ho temuto di non poter mettere le mani su questo PDF elusivissimo. Giusto un attimo prima di aprire i devtools del browser, per capire cosa va storto e non posso sistemare (qualcosa nel loro tema di Shopify, il JavaScript tira un errore Uncaught TypeError: this.form is null: initCartBar@theme.js [...]), però, per nessun motivo particolare se non il fatto che ci fosse un pallino “1” nell’angolo, il bottone della chat ha catturato la mia attenzione, e l’ho cliccato… e lì ho riso. Perché tra le tante “risposte immediate” c’è “Non riesco a scaricare il Numero 0 XL, che ho quindi cliccato, e il bot ha risposto “Gigaciao! Non ti preoccupare, utilizza il link qui sotto e scarica il Numero 0 XL! https://gigaciao.com/a/downloads/-/92f4529bab5bf4e…“. 🤯

Cioè… fatemi capire bene… Loro sanno perfettamente che il loro sito è rotto e il download non può partire, e non solo non sistemano semplicemente lo spacc nel codice, ma nemmeno mettono il link diretto al download nel testo della pagina… No, bisogna che l’utente abbia l’intuizione di scavare in altre parti del sito, in questo caso la chat di supporto, per trovare lì finalmente l’oggetto digitale tanto agognato! Regà, boh, è così assurdo che a questo punto non posso non pensare non sia stato fatto apposta; va bene i problemi, va bene l’incompetenza, ma qui siamo oltre: mi sa che è davvero una caccia al tesoro per chi ha abbastanza pazienza come me. Vabbè, tanto ora il numero 0 è ricaricato sul mio sito… e comunque ci ho perso solo 2-3 minuti, ma in cambio ho subito questa user experience assurda da raccontare. 👌

#Shopify #UX #web




Experimental Piefed support is now available for Voyager


I'm excited to announce that Voyager now has experimental support for logging in with Piefed! You can try it out today on:

This will roll out to the official app stores and vger.app soon(tm), once I’m confident there are no major regressions. If you prefer not to switch to beta builds, just hang tight.

Please note that Piefed support is EXPERIMENTAL! There are still many things that don't work quite right, which I'm hoping to improve over the coming weeks.

The basics including scrolling home/all/local, viewing posts, blocking, commenting and voting should work well. However there are some known issues:

  • Can't sign up for a Piefed account in-app, only log in with an existing one
  • Subscribed communities list is empty (should be fixed soon!)
  • Inbox tab doesn't load
  • Comment search doesn't work
  • Profile upvoted/downvoted doesn't load
  • No moderation tools
  • Mark as read doesn't persist
  • Creating/editing posts is currently untested
  • ...probably a bunch of other stuff too, please let me know below!

Behind the scenes, this interoperability is made possible thanks to aeharding/threadiverse, a new library I am working on to normalize various threadiverse-software APIs. It's open source so any project use it, but it's under heavy development right now. What's cool about this is in the future, adding support for mbin, or whatever else is possible!

Again, feel free to try it out and let me know if there are any more issues to be documented and fixed.

in reply to FancyPantsFIRE

Yeah, piefed thumbnails are pretty small. I don't know if that's a per server config or not though. Probably something to ask the piefed devs
in reply to aeharding

Yesterday I merged in a PR that lets the instance admin set the sizes for thumbnails.

But the real issue is that the thumbnails have a variety of uses - in the PieFed web UI thumbnails are shown quite small so 170px is fine. But some mobile apps might show the thumbnail in a manner that spans the whole screen which is going to need to be at least 350px wide.

I'll make PieFed generate a 500px version of the thumbnail and include that in the API response (as well as the smaller one).



Share a script/alias you use a lot


A while ago I made a tiny function in my ~/.zshrc to download a video from the link in my clipboard. I use this nearly every day to share videos with people without forcing them to watch it on whatever site I found it. What's a script/alias that you use a lot?
# Download clipboard to tmp with yt-dlp
tmpv() {
  cd /tmp/ && yt-dlp "$(wl-paste)"
}
in reply to als

\#Create predefined session with multiple tabs/panes (rss, bluetooth, docker...)
tmux-start 

\#Create predefined tmux session with ncmpcpp and ueberzug cover
music 

\#Comfort
ls = "ls --color=auto"
please = "sudo !!"

\#Quick weather check
weatherH='curl -s "wttr.in/HomeCity?2QF"' 

\#Download Youtube playlist videos in separate directory indexed by video order in playlist -> lectures, etc
ytPlaylist='yt-dlp -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s"'

\#Download whole album  -> podcasts primarily 
ytAlbum='yt-dlp -x --audio-format mp3 --split-chapters --embed-thumbnail -o "chapter:%(section_title)s.%(ext)s"'

# download video -> extract audio -> show notification
ytm()
{
    tsp yt-dlp -x --audio-format mp3 --no-playlist -P "~/Music/downloaded" $1 \
        --exec "dunstify -i folder-download -t 3000 -r 2598 -u normal  %(filepath)q"

}

# Provide list of optional packages which can be manually selected
pacmanOpts()
{
typeset -a os
for o in `expac -S '%o\n' $1`
do
  read -p "Install ${o}? " r
  [[ ${r,,} =~ ^y(|e|es)$ ]] && os+=( $o )
done

sudo pacman -S $1 ${os[@]}
}

# fkill - kill process
fkill() {
  pid=$(ps -ef | sed 1d | fzf -m --ansi --color fg:-1,bg:-1,hl:46,fg+:40,bg+:233,hl+:46 --color prompt:166,border:46 --height 40%  --border=sharp --prompt="➤  " --pointer="➤ " --marker="➤ " | awk '{print $2}')

  if [ "x$pid" != "x" ]
  then
    kill -${1:-9} $pid
  fi
}
in reply to als

I try to organise my data in the cleanest way possible, with the less double possible etc... I end up using a lot of symbolic links. When doing maintenance, sometimes I want to navigate in the "unlogical" way the data are organized, but the PWD variable is not necessarily very cooperative. This alias is really useful in my case :
alias realwd='cd -P .'  

Here is an example :
$ echo $PWD  
/home/me  
$ cd Videos/Torrents/  
$ echo $PWD  
/home/me/Videos/Torrents  
$ realwd  
$ echo $PWD  
/home/me/data/Torrents/Video  

I also do some X application, compositor and WM development, and I have a few aliases to simplify tasks like copying from an Xorg session to an Xnest (and the other way around), or reload the xrandr command from my .xinitrc without duplicating it.
alias screenconf='$(grep -o "xrandr[^&]*" ~/.xinitrc)'  
alias clip2xnext='xclip -selection clip -o -display :0 | xclip -selection clip -i -display :1'  
alias clip2xorg='xclip -selection clip -o -display :1 | xclip -selection clip -i -display :0'  

I have an alias for using MPV+yt-dlp with my firefox cookies :
alias yt="mpv --ytdl-raw-options='cookies-from-browser=firefox'"  

I can't stand too long lines of text on my monitor, particularly when reading manpages, so I set the MANWIDTH env variable.
# Note : if you know that *sometimes* your terminal will be smaller than 80 characters  
# refer to that https://wiki.archlinux.org/title/Man_page  
export MANWIDTH=80  

I use null-pointers a lot, with a shorthand.
# Note: env.sh actually provide other helpful aliases on their homepage  
function envs.sh() {  
    if [ $# != 1 ]; then  
        1>&2 printf "Error, need one argument.\n"  
        return 1  
    fi  
    curl -F'file=@'"$1" https://envs.sh  
}  

The usual fake editor in my path, so that browsers and other applications open Vim the correct way.
\#!/bin/sh  
# st_vim.sh - executable in my ~/.local/bin  
# for example in firefox's about:config :  
#   - view_source.editor.path : set to the value of $(which st_vim.sh)  
#   - view_source.editor.external : set to true  

st -- $EDITOR "$*"  

My .xinitrc is quite classical, I still have this in it (setup for dwm's title bar, people usually install much complicated programs) :
while true; do xsetroot -name "$(date +"%d %H:%M")"; sleep 60; done &  

I also have a lot of stupid scripts for server and desktop maintenance, disks cleaning etc... those are handy but are also very site-specific, let me know if your interested.
Questa voce è stata modificata (2 settimane fa)


Charlie Musselwhite - Look Out Highway (2025)


Qualche anno fa, durante una lunga intervista apparsa sul n. 159 de Il Blues, per parlare del suo bellissimo “Mississippi Son” (Alligator), Charlie Musselwhite si era espresso così in merito a quello che sarebbe diventato il suo disco successivo: “E’ già tutto pronto, ma quello sarà il prossimo disco... Continua a leggere...


Tinariwen - Tassili (2011)


Dopo l’ennesimo ascolto di Emmaar, il parallelo con Tassili, ultimo lavoro uscito nel 2011, è inevitabile. Il gruppo maliano che ha fatto, e continua a far conoscere la cultura tuareg in giro per il mondo, con questo disco, non si discosta di molto dal suo predecessore...
Leggi e ascolta...


Tinariwen - Tassili (2011)


immagine

Dopo l’ennesimo ascolto di Emmaar, il parallelo con Tassili, ultimo lavoro uscito nel 2011, è inevitabile. Il gruppo maliano che ha fatto, e continua a far conoscere la cultura tuareg in giro per il mondo, con questo disco, non si discosta di molto dal suo predecessore. Due sono soprattutto gli elementi in comune: deserto e messaggio. Il primo è stato registrato nel deserto algerino, Emmar invece, in quello nord americano del Joshua tree. Il messaggio: la musica come strumento di ribellione... silvanobottaro.blog/2024/09/10…


Ascolta: album.link/i/671816602


HomeIdentità DigitaleSono su: Mastodon.uno - Pixelfed - Feddit




[deleted]


[deleted]
Questa voce è stata modificata (2 mesi fa)
in reply to DeathByBigSad

I must be one of those. This shit is not okay, yall. Whole psychological profiles, humiliation tactics, and dystopian forms of control are right around the corner. Why would they keep Epstein alive when Palantir automated the job of the blackmail broker?
in reply to DeathByBigSad

Many times throughout my life, what would seem like a reasonably easy question to answer has changed dramatically.

30 years ago you could look at data collection and go there's no way that they could store a meaningful amount of data about everyone.

20 years ago you could look at data collection and go there's no way they could have the contents of every phone call It's just targeted it's not a big deal

We are the point now, where everything you ever wrote or said could be thrown into a model with such unimaginable levels of lossy compression that they could simply ask it if you are the kind of person who is into whatever the future administration deems as unacceptable and deny you access to things. All you need is a fascist regime or a dictatorship installed and all of a sudden anything you ever did can be used as grounds to lock you up.

On a governmental budget it wouldn't even be that expensive and we're just at the beginning of this.

We have seen that governments can change quickly, We know the data collection is affordable and can be permanent.

Certainly some people privacy-minded to the point of compulsion. But I can't say that anyone is wrong to seek extreme levels of privacy based on trends and capabilities.

They leave your cell phone at home and make sure somebody opens your apps and uses them people aren't anywhere near as crazy as they used to sound




Jeff Bezos: questo matrimonio a Venezia non s’ha da fare….


Venezia la “città dell’amore” ha stregato anche il magnate di Amazon Jeff Bezos che ha scelto appunto la città lagunare per le sue nozze con Lauren Sanchez, per un matrimonio che già si annuncia da favola. La festa a quanto pare durerà dal 24 al 26 giugno, ma ci sono anche dei “contrattempi” a creare tensione....e. homosaccens.it/jeff-bezos-ques…
#News

in reply to ooli3

Seeing how Trump has a talent to choose the absolute worst for a specific job, I hope they manage to get shell access and delete the database and its only backup that was accidentally stored in the same server with the same credentials



Fact check: Viral drone video of Gaza destruction is real




Dal 27 al 30 giugno musica e gastronomia nella Sagra del Salame di Turgia a Devesi Di Ciriè (To)


La frazione Devesi di Ciriè si prepara a ospitare l’ottava edizione della Sagra del Salame di Turgia, evento che celebra uno dei prodotti più tipici del Ciriacese e delle Valli di Lanzo: il “Salam ëd Turgia” in piemontese, o “Salàm eud Tueurdji” in francoprovenzale. Si tratta di un salume preparato con carne di vacca, lardo e pancetta suina, aromatizzato con sale, pepe, aglio, vino rosso e spezie, poi insaccato nel budello torto di bovino. “Turgia” in piemontese indica una vacca sterile, ma può riferirsi anche a un esemplare giovane.

Organizzata dalla Pro Loco Dveisin Festareul e patrocinata dalla Città metropolitana di Torino, la manifestazione si terrà da venerdì 27 a lunedì 30 giugno in località Colombari, in occasione della festa patronale di San Pietro Apostolo. Una quattro giorni dedicata al gusto e alla tradizione, dove sarà possibile assaporare il Salame di Turgia in un clima di convivialità, accompagnato da altre specialità locali. La preparazione del salame affonda le radici nella cultura contadina e nelle famiglie che ne tramandano i segreti, rendendolo simbolo di identità e amore per il territorio.

Il programma prevede musica dal vivo, spettacoli e animazioni. Si parte venerdì 27 con l’inaugurazione affidata a Sonia De Castelli, cantante e volto noto della TV. Sabato 28 spazio alla discoteca mobile Energia. Domenica 29 salirà sul palco Luca Giordano, mentre lunedì 30 chiusura con l’orchestra Enrico Negro. Durante la sagra ci saranno anche momenti divertenti, come il Chupito San Peru e la gara di tiro alla fune domenicale.



in reply to Ayano

I'm choosing to believe this is what happened.

I don't care about reality anymore




Sorella di Perfezione - le poesie di Giuseppe Iannozzi - in libreria e negli Store online - LFA Publisher


Sorella di Perfezione - le poesie di Giuseppe Iannozzi - in libreria e negli Store online - LFA Publisher

**youtube.com/shorts/hk8RXKTvNTw…

Ulteriori informazioni su "Sorella di Perfezione"

**iannozzigiuseppe.wordpress.com…

Questa voce è stata modificata (3 mesi fa)





Israeli Forces Slaughter 48 More Palestinians in Gaza Over 24 Hours