Salta al contenuto principale





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



🔒 Cogli l'occasione: questa settimana NordVPN a prezzi mai visti prima! Sconti straordinari fino al 72%! Proteggi il tuo Web navigando in sicurezza! #NordVPNSale #CyberSecurity

🔗 tomshw.it/hardware/questa-sett…



Bref 2 : une vraie remise en question des mecs toxiques ? — Gregoire Simpson

youtube.com/watch?v=AljNv6DyUs…

#vulgarisation #éducPop #sociologie #politique #féminisme




#pastpuzzle 59
🟩🟩🟥🟥 (+26)
🟩🟥🟩🟥 (-497)
🟩🟥🟥🟩 (-670)
🟩🟩🟩🟩 (0)

4/4 🟩
pastpuzzle.de



🇭🇺 Orban demands Brussels scrap plans to ban Russian energy, citing surging prices after US strikes on Iran. With Middle East tensions driving instability, Hungary pushes to keep Kremlin gas flowing. Once again, Budapest sides with Moscow


Lima e Ciancimino ritirarono la querela contro il combattivo direttore del quotidiano “L’Ora” casamaini.altervista.org/lima-…
Lima e Ciancimino ritirarono la querela contro il combattivo direttore del quotidiano “L’Ora” In effetti l’atteggiamento de «L’Ora» a livello pubblico era stato, se possibile, ancor più critico. Al direttore andava attribuito un articolo non firmato dell’8 luglio 1963, intitolato


xfce desktop running on Linux in the late 90s ...


Washington strikes Iranian nuclear sites: What we know so far rt.com/news/620211-iran-us-tru…



Toulouse veut doter son système de « vidéoprotection » d'IA de détection des comportements « suspects ».
La vidéosurveillance algorithmique (VSA) n'ayant toujours pas été légalisée, « ces fonctionnalités devront être désactivées par défaut ».
@nextinpact : next.ink/188969/toulouse-sequi…




不看我还以为声音的中之人长得像吴彦祖呢🥺
同样这种长相,我声音就跟阳历和傅首尔一样难听 :ablobcatbongoangry: