Salta al contenuto principale



➡️ Vany AI: un 'ChatGPT' que responde con vídeos cortos #inteligencia-artificial

👤 vía @soft_apps
softandapps.info/2025/06/20/va…




Oggi in #FUTURO24 parleremo di energie rinnovabili, risparmio energetico e della prima smart community italiana, che l'ENEA sta sperimentando ad Anguillara Sabazia vicino a Roma. Vi aspettiamo alle 16.45, 19.45 e 21.45 su RaiNews24!


No sun. No soil. Still: over a ton of veggies in Antarctica.
@DLR & @awi show how food production could work in extreme environments.
🔗 Find out how: helmholtz.de/en/about-us/helmh… #Helmholtz30



Lidia, Teresa e Carla Liliana Martini contribuirono in modo significativo alla Resistenza a Padova blogger.com/feeds/767784513969…
La famiglia Martini, i cui capostipiti furono Lorenzo Giovanni Battista Martini e Maria Giacinta Carmela Lanzani, si componeva di ben dodici figli, sei maschi e sei femmine: Maria, Augusto, Maddalena Virginia, Domenico, Alessandro, Giuseppe, Teresa, Lidia, Renata, Mario, Carla Liliana e Giancarlo <123. Abitano a


US ‘primary force’ behind Israel’s acts of aggression against Iran: Pezeshkian presstv.ir/Detail/2025/06/22/7…


Berliner Regierungskoalition: Polizei soll mehr Befugnisse bei Video- und Telekommunikationsüberwachung bekommen, auch #Staatstrojaner rbb24.de/politik/beitrag/2025/…



Keir Starmer vs Kneecap: Will the controversial rap trio still perform at Glastonbury?
https://www.euronews.com/culture/2025/06/23/keir-starmer-vs-kneecap-will-the-controversial-rap-trio-still-perform-at-glastonbury?utm_source=flipboard&utm_medium=activitypub

Posted into Europe News @europe-news-euronews



Mikä tämä on? Vain vääriä vastauksia.



title: Kate Bateman
artist: Mathew Brady Studio, active 1844 - 1894
source: National Portrait Gallery
notes: The Frederick Hill Meserve Collection comprises more than five thousand […]
#Art #Design #Museum #Gallery #MastodonArt #MastoArt #Culture #Random
npg.si.edu/object/npg_NPG.81.M…


Russia often returns bodies of fallen Ukrainian soldiers in horrific condition. “Sometimes it’s just a bag of bones,” Maksym Tsutskiridze, First Deputy Chief and the Head of the Main Investigation Department of the National Police revealed. In some cases, remains of different individuals are mixed in one sack.




Già con questo incontro Windows gira meglio! 😸
hwupgrade.it/news/sistemi-oper…

diggita - istanza lemmy reshared this.



Leor Zmigrod hat ideologisches Denken untersucht. Sie erklärt, was Hirnscans zeigen, wie Dschihadisten ticken und warum Social Media extremes Denken befeuern.
taz.de/!6092678


And, some more abstract work

Check out the editing process using Nik Silver Efex Pro here: tidd.ly/3NdVDy7 #art #photography #fineart #blackandwhite #cars

#AbstractPhotography #CarArt



A profile of Katie Haun, a former federal prosecutor turned a16z partner who later founded Haun Ventures and believes the GENIUS Act will make stablecoins safer (Connie Loizos/TechCrunch)

techcrunch.com/2025/06/22/the-…
techmeme.com/250623/p5#a250623…



Iran says US has 'blown up' any attempt to end the Israel-Iran conflict diplomatically jrnl.ie/6740173


France24
Dans les villes françaises, les jumelages avec Israël sèment la discorde
mcinformactions.net/dans-les-v…
#israel #palestine #Hamas #Cisjordanie #Gaza





🖼 A Gaza il genocidio continua, mentre l’occupazione della Cisgiordania prosegue nell’indifferenza mediatica. t.me/nonunadimenoroma/2185


@foxy created a custom writer to output Scribus `.sla` documents.
codeberg.org/foxy/scribus-writ…
Scribus is an open source, desktop publishing application, see scribus.net. The exporter is also available as a Scribus plugin.
#pandoc #customWriter #scribus



Monday mood. Taken from the archway of St Michael's tower on Glastonbury Tor.

jakob 🇦🇹 ✅ reshared this.


in reply to 网上邻居

Sorry, I couldn't process this image.

Sorry, I couldn't process this image.



For an early Monday morning smile:
Shift change on Monday morning! The Canada geese seem to have finished their work at the nearby steelworks and are now waddling home. The steelworks in the background is actually just industrial heritage, it was shut down more than 20 years ago.
#myphoto


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)


Il segnale radio cosmologico aiuterà gli astronomi a individuare le stelle di prima generazione dell'Universo

#astronomia

La prima generazione di stelle (Popolazione III) deve essersi formata dal gas non arricchito che permeava l'Universo nascente. Queste stelle hanno prodotto i primi elementi più pesanti e hanno reilluminato l'Universo, ponendo fine all'età oscura cosmica e introducendo l'Universo nell'Epoca della Reionizzazione.

umbertogaetani.substack.com/p/…



iPhone 17 Pro: camera di vapore per raffreddare il chip
#Apple #iPhone #iPhone17Pro #Novità #Raffreddamento #Smartphone #TechNews #Tecnologia #VaporChamber

ceotech.it/iphone-17-pro-camer…



- KEINE SATIRE -
Müllabfuhr soll Kleinfahrzeuge einsetzen.
- KEINE SATIRE -
tz.de/muenchen/stadt/hallo-mue…


Le autorità iraniane meditano una risposta all’attacco statunitense, mentre continua lo scontro diretto con Tel Aviv

thesubmarine.it/2025/06/23/ven…



L'errore di Meta sulle intelligenze artificiali - Il Post
https://www.ilpost.it/2025/06/23/meta-facebook-intelligenze-artificiali/?utm_source=flipboard&utm_medium=activitypub

Pubblicato su News @news-ilPost

@News

News reshared this.




Journée mondiale des lanceurs d’alerte : le prix à payer pour dire la vérité à l’ère de la désinformation
transparency-france.org/2025/0…
"Les lanceurs d’alerte sont une force essentielle au service de l’intégrité et de la transparence. Ils révèlent des actes répréhensibles dissimulés, dénoncent les abus de pouvoir et permettent de demander des comptes aux institutions et aux