Salta al contenuto principale



S. Korea’s brain drain worsens as top scientists flee abroad






Fracne | Emmanuel Macron decries ‘antisemitic hatred’ after memorial tree cut down


French president vows to punish those who felled tree planted in memory of Jewish man tortured to death in 2006


Archived version: archive.is/newest/theguardian.…


Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.



120,000 Ukrainians in US at risk of deportation as Biden-era program lapses, WSJ reports


The issue concerns refugees who have lived in the country since Aug. 16, 2023, under the Uniting for Ukraine program, devised by the Biden administration to allow Ukrainians to stay in the country on humanitarian parole.


Archived version: archive.is/newest/kyivindepend…


Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.



Air Canada, flight attendants enter final day before strike deadline


It's the final day before a potential work stoppage could ground all Air Canada and Air Canada Rouge flights.



Is Germany on the Brink of Banning Ad Blockers? User Freedom, Privacy, and Security Is At Risk.


Across the internet, users rely on browsers and extensions to shape how they experience the web: to protect their privacy, improve accessibility, block harmful or intrusive content, and take control over what they see. But a recent ruling from Germany’s Federal Supreme Court risks turning one of these essential tools, the ad blocker, into a copyright liability — and in doing so, threatens the broader principle of user choice online.



Far-right Israeli minister taunts jailed Palestinian leader in prison visit


Israel’s far-right National Security Minister Itamar Ben Gvir released a video on Friday showing him taunting Israel’s most prominent Palestinian detainee, Marwan Barghouti, a senior Fatah figure, in his jail cell. The Palestinian Authority's foreign ministry denounced the confrontation as "an unprecedented provocation".


Archived version: archive.is/newest/france24.com…


Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.

in reply to BrikoX

Some people are just evil. This piece of shit is beyond that.
Questa voce è stata modificata (4 settimane fa)


France condemns Israeli demolition of West Bank school under construction


France on Friday condemned the Israel’s destruction of a school under construction in northern occupied West Bank, calling for accountability, Anadolu reports.


Archived version: archive.is/newest/middleeastmo…


Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.



Sam Altman says ‘yes,’ AI is in a bubble


Is the bubble about to burst?


Fight Chat Control - Protect Digital Privacy in the EU


Saw this by way of filen.io/hub/help-us-fight-cha… Not shillin', just sayin'.
in reply to Alas Poor Erinaceus

So would this nullify GDPR, or would they just say "no both are in effect?"
in reply to Alas Poor Erinaceus

I won't say no. There are ways to implement a control without intrusion in the privacy of the average Joe.




Plex warns users to patch security vulnerability immediately


Plex has notified some of its users on Thursday to urgently update their media servers due to a recently patched security vulnerability.

https://www.bleepingcomputer.com/news/security/plex-warns-users-to-patch-security-vulnerability-immediately/

Questa voce è stata modificata (4 settimane fa)


Chinese military lab creates mosquito-sized microdrone for covert operations


China's military researchers have unveiled a mosquito-sized surveillance drone in June 2025, developed at the National University of Defence Technology (NUDT) in Hunan province1. The bionic microdrone measures about 2 cm long, weighs 0.3 grams, and features two leaf-like wings that can flap 500 times per second, along with three hair-thin legs2.

The device is designed for covert military operations and battlefield reconnaissance, with sensors and circuits packed into its tiny frame3. "Miniature bionic robots like this one are especially suited to information reconnaissance and special missions on the battlefield," said NUDT student Liang Hexiang while demonstrating the drone on state television4.

Security experts warn about potential risks. "If China is able to produce mosquito-sized drones, it would likely be interested in using them for various intelligence, surveillance and reconnaissance tasks, especially in places that larger drones struggle to access," said Georgetown research fellow Sam Bresnick5.

The drone's small size makes it nearly invisible to conventional radar systems, though experts note its diminutive scale could limit operational range and endurance6.


  1. SCMP - Chinese military lab creates mosquito-sized microdrone for covert operations ↩︎
  2. Euronews - China unveils tiny spy drone that looks like a mosquito ↩︎
  3. SCMP - Chinese military lab creates mosquito-sized microdrone for covert operations ↩︎
  4. NY Post - China unveils eerie mosquito-sized drone designed for stealth military operations ↩︎
  5. CSET - China unveils mosquito-sized drone ↩︎
  6. NY Post - China unveils eerie mosquito-sized drone designed for stealth military operations ↩︎
in reply to Zerush

I'm going to start a business to sell military grade bug screen 🤡
in reply to Noodle07

Already exist

indiegogo.com/projects/worlds-…

in reply to Zerush

China did NOT create a mosquito sized drone. They DID however create this awesome starship!

Seriously, how long are we going do the bi-monthly "China invents world changing technology" headline? These aren't even good lies.







imagemagick Montage: I can only create a montage if all the exif data is cleared.


imagemagick Montage:

I can only create a montage if all the exif data is cleared.

As a new user on Lemmy, going through the learning curve, I had issues uploading images.

Simple, I turned to imagemagick to reduce the size of the images and create a montage, rather than uploading 20 images for a simple bread recipe.

!bready@lemmy.world

========================================

I transfered my recipe images from my phone to my laptop and set about using Montage.

The images on the phone, and in the directory on my laptop, were clearly orientated in Portrait and not landscape.

========================================

Problem:

I ran montage to create a simple 4 image montage:

montage 1.jpg 2.jpg 3.jpg 4.jpg -geometry +2+2 1-montage-image.jpg

I checked the output file, the images were in the right order but had changed from portrait to Landscape. They looked terrible

I then tried some different images.

These came out as expected, in portrait and in order

=======================================

I compared the images,

identify -verbose 1.jpg

the ones I transfered from my phone still had all the exif data intact and the other ones had no exif data

========================================

So I cleared the exif data for the files.

exiftool worked perfectly:

exiftool -all= *.jpg

created an "original-images" directory, then moved the originals to "original-images" directory

mv *.jpg_original original-images

when I cleared the exif data all the images in the directory reverted to landscape

========================================

so I set them back to portrait:

One liner to change orientation by 90 degrees

find . -maxdepth 1 -type f -name "*.jpg" -exec convert {} -rotate 90 {} \;

or mogrify:

mogrify -rotate -90 *.jpg

or

mogrify -rotate +90 *.jpg

========================================

created the montage image:

montage 1.jpg 2.jpg 3.jpg 4.jpg -geometry +2+2 1-montage.jpg

========================================

Now I reduced the size so I could upload them

create an "images" directory if you do not want mogrify to overwrite the originals.

mogrify -resize 50% -quality 80 -path "/path/to/reduced/images/" *.jpg

or

mogrify -resize 50% -quality 80 -path "images" *.jpg

job done

========================================

A lot of messing about to upload an image

in reply to infjarchninja

In case you (or someone else) wants an explanation.

Modern cameras and phones save the image orientation in the exif data while keeping the orientation of the real pixels like they were originally.

But by default imagemagick doesn't use the exif data but the real pixel orientation. That's why the orientation in the montage and after removing exif data was wrong.

I think there are options to let imagemagick read the exif data. I'm too lazy to look it up.

in reply to Björn Tantau

Thank you Björn

I knew someone more technically gifted in the community would have a good answer as to why this happened.

in reply to infjarchninja

  • -auto-orientauto-orient will read from EXIF
  • -stripstrip will remove all metadata
  • WARNING: if you’ve already used -strip, then -auto-orient will do nothing




riempimento della squachiavanza porta la morte ad essere dischica… (Sharkey prende troppo spazio ed è un problema)


È doloroso trovarmi qui ad ammetterlo a me stessa ma, ancora una volta, scopro che i miei piani di dominazione del mondo sono stati troppo ambiziosi; almeno per ora, in questa fase più iniziale. Ovviamente tutto bene col mio codice, anche se è ancora nelle fasi iniziali… i problemi inaspettati sono piuttosto arrivati con Sharkey, […]

octospacc.altervista.org/2025/…


riempimento della squachiavanza porta la morte ad essere dischica… (Sharkey prende troppo spazio ed è un problema)


È doloroso trovarmi qui ad ammetterlo a me stessa ma, ancora una volta, scopro che i miei piani di dominazione del mondo sono stati troppo ambiziosi; almeno per ora, in questa fase più iniziale. Ovviamente tutto bene col mio codice, anche se è ancora nelle fasi iniziali… i problemi inaspettati sono piuttosto arrivati con Sharkey, che nell’arco di una settimana mi avrà sequestrato almeno 1 GB di disco col suo database di merda, e non penso di dover spiegare quali calcoli fare per capire che una situazione del genere è insostenibile. Quindi, ho dovuto per il momento abbassare il tiro, prima che il disco del server mi si riempia in misura da costringermi a levare tutto quanto… 😖
Schermata resoconto database avvilente nel pannello admin di Sharkey523MB (425,811 recs)212MB (122,236 recs)67MB (33,361 recs)36MB (70,234 recs)26MB (115,262 recs)26MB (33,381 recs)25MB (33,393 recs)12MB (41,624 recs)12MB (60,939 recs)7MB (13,360 recs)7MB (29,394 recs)5MB (39,449 recs)3MB (10,779 recs)3MB (3,623 recs)2MB (3,365 recs)
Il problema è sostanzialmente una combinazione di 3 fattori: la mole di dati in ingresso generata da migliaia di utenti di migliaia di istanze ogni giorno è gigantesca (e il mio server non ha problemi a processarla, ma ecco, sono troppi miliardi di byte), il database è strutturato di merda (con troppi dati derivati che occupano inutilmente spazio, nonché francamente colonne inutili)… e, soprattutto, il software non ha alcun meccanismo per cancellare dati vecchi, quindi per ripulire periodicamente le note di utenti di istanze terze, o comunque quei dati che sono riottenibili. E per Misskey è da anni che la gente chiede aiuto per questo problema, ma la richiesta continua a naufragare, si vedano #13157 e linkate… e per Sharkey ugualmente è da un po’ di tempo che si parla di questo schifo, ma, forse, il fato per una buona volta mi vuole bene: 3 settimane fa in #1017 qualcuno sembra aver preso interesse a lavorarci… 😨

Comunque sia, il problema per me è ora, e quindi ho come minimo dovuto disattivare i relay, che sono dei cosi che si aggiungono per far scambiare i messaggi tra la propria istanza ed altre pur senza avere relazioni di follow con migliaia di utenti (…perché non so chi cavolo seguire io, e a me pochi mi cagano), e così l’influsso di note e allegati è passato da decine di migliaia al giorno a poche decine e basta al giorno, che è persino meno di quanto ho sulla Spacc BBS… Ma questo quindi significa direttamente che, per il momento, non avrò un flusso costante estremamente sparso e variegato di conversazioni che posso passare all’intelligenza artificiale per farla funzionare in modo completamente autonomo e a dir poco extracircostanziale. (Non che io avessi finito di scrivere il codice per questa parte, eh, ma prima o poi quello sarà pronto… e i dati allora mancheranno.) 💨

Avrei quasi la mezza idea di, pur non sapendo se questa mossa potrebbe in parte rompere l’applicazione (ma, come si suol dire, cip ciop fa l’uccellino, YOLO fa il cormorano… e in ogni caso farei un backup prima), creare uno script per fare in modo grezzo la pulizia del database… ma purtroppo non è affatto una stronzata filtrare tutto per cancellare solo i dati effettivamente ridondanti, ossia le note solo da server terzi (e fin qui ok) che non hanno relazioni internamente alla mia istanza (niente reazioni o commenti o boost da parte dei miei utenti, non sono salvate tra i preferiti, e così via), e poi cancellare anche i file a queste associati dall’altra tabella (aiuto!!!). E oltre alle note, che sono rogne, e agli allegati, che invece mi fanno proprio incazzare visto quanto occupano pur essendo solo metadati (il contenuto dei file non viene scaricato!), volendo pulire pure gli utenti è la fine… 😭

Vabbè, viste le parole (…poco attendibili?) di quella persona sconosciuta di cui sopra, però, mi conviene evitare di sbattermi, e piuttosto semplicemente pregare affinché tale promessa si trasformi in codice… al più presto. Se la mia speranza (e i miei bot potentissimi…) proprio deve morire, allora lo farà solo dopo la mia istanza, non prima!!! 😾

#1017 #database #Misskey #server #Sharkey #spazio #storage






Israeli army unit tasked with linking Gaza journalists to Hamas






in reply to geneva_convenience

I wish Obama would have done more earlier to calm the establishment Dems on Mamdani…
Questa voce è stata modificata (4 settimane fa)
in reply to PalmTreeIsBestTree

But back then Obama thought his establushment friends might still beat Mamdani so he didn't worry about it.


Gallup: Ukrainian Support for War Effort Collapses



in reply to geneva_convenience

I hope this guy isn’t another Fetterman. Talks a good talk but once elected turns into someone else.
in reply to RememberTheApollo_

Every person who's compromised is pro Israel.

I wouldn't put your hopes on Zohran but for now he's done an excellent job of not budging and instead arguing his way out of traps. Let's see how far it can get him.


in reply to MarcellusDrum

Good article, I couldn't agree with it more, it's exactly my experience.

The tech is being developed really fast and that is the main issue when taking about ai. Most ai haters are using the issues we might have today to discredit the while technology which makes no sense to me.

And this issue the article talks about is apparent and whoever solves it will be rich.

However, it's interesting to think about the issues that come next.

in reply to NoiseColor

Like the guy whose baby doubled in weight in 3 months and thus he extrapolated that by the age of 10 the child would weigh many tons, you're assuming that this technology has a linear rate of improvement of "intelligence".

This is not at all what's happening - the evolution of things like LLMs in the last year or so (say between GPT4 and GPT5) is far less than it was earlier in that Tech and we keep seeing more and more news on problems about training it further and getting it improved, including the big one which is that training LLMs on the output of LLMs makes them worse, and the more the output of LLMs is out there, the harder it gets to train new iteractions with clean data.

(And, interestingly, no Tech has ever had a rate of improvement that didn't eventually tailed of, so it's a peculiar expectation to have for a specific Tech that it will keep on steadily improving)

With this specific path taken in implementing AI, the question is not "when will it get there" but rather "can it get there or is it a technological dead-end", and at least for things like LLMs the answer increasingly seems to be that it is a technological dead-end for the purpose of creating reasoning intelligence and doing work that requires it.

(For all your preemptive defense by implying that critics are "ai haters", no hate is required to do this analysis, just analytical ability and skepticism, untainted by fanboyism)

Questa voce è stata modificata (4 settimane fa)
in reply to NoiseColor

It's true, the tech will get better in the future, we just need to believe and trust the plan.

Same thing with crypto and NFT's. They were 99% scam by volume, but who wouldn't love moving their life savings into a digital ecosystem controlled by a handful of rich gambling addicts with no consumer protections? Imagine, you'll never need to handle dirty paper money ever again, we'll just put it all in a digital wallet somewhere controlled by someone else coughmastercardcough.

And another thing, we were too harsh on the Metaverse. Sure, spending 8 hours in VR could make you vomit, and the avatars made ET for the Atari look like Uncharted 4, but it was just in its infancy!

I too want to outsource all my critical thinking to a chatbot controlled by an wealthy insular narcissist who throws Nazi salutes. The technology just needs time to mature. Who knows, maybe it can automate the exile of birthright citizens for us too!

/s

in reply to HarkMahlberg

That's exactly the hyperbole I was talking about. Your post is full of obvious fallacies, but the fact that you are pushing everything to the absolutes is the silliest one.
in reply to NoiseColor

Your whole point is discounting the experience of 50 years in technological evolution (that all technological branches invariably slow down and stop improving) and the last 20 years of hype in Tech (literally everything is pushed like crazy as "the next big thing" by people trying to make a lot of money from it, and almost all of it isn't), so that specific satirical take on your post is well deserved.
in reply to MarcellusDrum

I don't work in IT, but I do know you need creativity to work in the industry, something which the current LLM/AI doesn't possess.

Linguists also dismiss LLMs in similar vein because LLMs can't grasp context. It is always funny to be sarcastic and ironic on an LLM.

Soft skills and culture are what that the current iteration of LLMs lack. However, I do think there is still huge potential for AI development in dacades to come, but I want this AI bubble to burst as "in your face" to companies.



Where did the downvotes go?


I started seeing a weird trend on Lemmy that I cannot understand.

Weeks ago, posts used to have downvotes and upvotes in the semi-rational range you would expect.

Out of nowhere, it seems like almost all the posts I see now have zero downvotes with some exceptions.

What is happening here exactly?



Where did the downvotes go?


I started seeing a weird trend on Lemmy that I cannot understand.

Weeks ago, posts used to have downvotes and upvotes in the semi-rational range you would expect.

Out of nowhere, it seems like almost all the posts I see now have zero downvotes with some exceptions.

What is happening here exactly?

☆ Yσɠƚԋσʂ ☆ doesn't like this.




Where did the downvotes go?


I started seeing a weird trend on Lemmy that I cannot understand.

Weeks ago, posts used to have downvotes and upvotes in the semi-rational range you would expect.

Out of nowhere, it seems like almost all the posts I see now have zero downvotes with some exceptions.

What is happening here exactly?

Questa voce è stata modificata (4 settimane fa)