š§® USERS:1 FEEDS:2 TWTS:1420 ARCHIVED:89069 CACHE:2633 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1419 ARCHIVED:89067 CACHE:2632 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1418 ARCHIVED:89054 CACHE:2625 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1417 ARCHIVED:89028 CACHE:2602 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1416 ARCHIVED:89026 CACHE:2601 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1415 ARCHIVED:89011 CACHE:2587 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1414 ARCHIVED:88590 CACHE:2574 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1413 ARCHIVED:88585 CACHE:2571 FOLLOWERS:22 FOLLOWING:14
@lyse@lyse.isobeef.org āAdvancedā, well, probably more āmatureā. There arenāt a ton of crazy features and that icon thing is the largest code addition in the last 10 years. %)
Speaking of OS/2 ⦠I just realized that Windows 3.x didnāt have icons, either. If Iām not mistaken, this only got added in Windows 95. In other words, OS/2 had this feature before Windows did, because at least OS/2 2.1 from 1993 had icons. Who would have thunk.
(Now I kind of want to know which system really introduced this feature.)
@movq@www.uninformativ.de Ah, okay! Thatās why itās in such an advanced state. :-)
Nice, I never came in contact with OS/2.
@lyse@lyse.isobeef.org Oh, huh, maybe it was just my GNOME 2 themes back then that didnāt show the icon. š¤
I like the looks of your window manager. Thatās using Wayland, right?
Oh, no. Itās still X11. All my recent Wayland comments resulted from me trying to switch, but I think itās still too early. Being unable to use QEMU (because it canāt capture the mouse pointer) is a pretty big blocker for me. This is completely broken, it just happens to be unnoticeable with modern guest OSes, so itās probably not a priority for devs.
(Not to mention that I would have to fork and substantially extend dwl in order to āreplicateā my X11 WM. And then, after having done that, Iād have to follow upstream Wayland development, for which I donāt have the resources. Things would need to slow down before I can do that.)
all that wasted space of the windows not making use of the full screen!!!1
Heh. Iāve been using tiling WMs for ~15 years now, so itās actually kind of refreshing to see something different for a change. š
Probably close to the older Windowses.
That particular theme is a ripoff of OS/2 Warp 3: https://movq.de/v/6c2a948882/s.png š
We ran some similar brownish color scheme (donāt recall its name) on Win95 or Win98
Oh god. Yeah, I wasnāt a fan of those, either. š„“
š§® USERS:1 FEEDS:2 TWTS:1412 ARCHIVED:88575 CACHE:2569 FOLLOWERS:22 FOLLOWING:14
@movq@www.uninformativ.de According to this screenshot, KDE still shows good old application icons: https://upload.wikimedia.org/wikipedia/commons/9/94/KDE_Plasma_5.21_Breeze_Twilight_screenshot.png
And GNOME used to have them, too: https://upload.wikimedia.org/wikipedia/commons/9/9f/Gnome-2-22_%284%29.png
I like the looks of your window manager. Thatās using Wayland, right? The only thing on this screenshot to critique is all that wasted space of the windows not making use of the full screen!!!1 At least the file browser. 8-)
This drives me nuts when my workmates share their screens. I really donāt get it how people can work like that. You canāt even read the whole line in the IDE or log viewer with all the expanded side bars. And then thereās 200 pixels on the left and another 300 pixels on the right where the desktop wallpaper shows. Gnaa! Thereās the other extreme end when somebody shares their ultra wide screen and I just have a āregularishā 16:10 monitor and donāt see shit, because itās resized way too tiny to fit my width. Good times. :-D
Sorry for going off on a tangent here. :-) Back to your WM: It has the right mix of being subtle and still similar to motif. Probably close to the older Windowses. My memory doesnāt serve me well, but I think they actually got it fairly good in my opinion. Your purple active window title looks killer. It just fits so well. This brown one (https://www.uninformativ.de/blog/postings/2025-07-22/0/leafpads.png) gives me also classic vibes. Awww. We ran some similar brownish color scheme (donāt recall its name) on Win95 or Win98 for some time on the family computer. I remember other people visting us not liking these colors. :-D
š§® USERS:1 FEEDS:2 TWTS:1411 ARCHIVED:88563 CACHE:2558 FOLLOWERS:22 FOLLOWING:14
I was drafting support for showing āapplication iconsā in my window manager, i.e. the Firefox icon in the titlebar:
https://movq.de/v/0034cc1384/s.png
Then I realized: Wait a minute, lots of applications donāt set an icon? And lots of other window managers donāt show these icons, either? Openbox, pekwm, Xfce, fvwm, no icons.
Looks like macOS doesnāt show them, either?!
Has this grown out of fashion? Is this purely a Windows / OS/2 thing?
Only figured this out yesterday:
pinentry
, which is used to safely enter a password on Linux, has several frontends. Thereās a GTK one, a Qt one, even an ncurses one, and so on.
GnuPG also uses pinentry
. And you can configure your frontend of choice here in gpg-agent.conf
.
But what happens when you donāt configure it? Whatās the default?
Turns out, pinentry
is a shellscript wrapper and itās not even that long. Here it is in full:
#!/bin/bash
# Run user-defined and site-defined pre-exec hooks.
[[ -r "${XDG_CONFIG_HOME:-$HOME/.config}"/pinentry/preexec ]] && \
. "${XDG_CONFIG_HOME:-$HOME/.config}"/pinentry/preexec
[[ -r /etc/pinentry/preexec ]] && . /etc/pinentry/preexec
# Guess preferred backend based on environment.
backends=(curses tty)
if [[ -n "$DISPLAY" || -n "$WAYLAND_DISPLAY" ]]; then
case "$XDG_CURRENT_DESKTOP" in
KDE|LXQT|LXQt)
backends=(qt qt5 gnome3 gtk curses tty)
;;
*)
backends=(gnome3 gtk qt qt5 curses tty)
;;
esac
fi
for backend in "${backends[@]}"
do
lddout=$(ldd "/usr/bin/pinentry-$backend" 2>/dev/null) || continue
[[ "$lddout" == *'not found'* ]] && continue
exec "/usr/bin/pinentry-$backend" "$@"
done
exit 1
Preexec, okay, then some auto-detection to use a toolkit matching your desktop environment ā¦
⦠and then it invokes ldd
? To find out if all the required libraries are installed for the auto-detected frontend?
Oof. I was sitting here wondering why it would use pinentry-gtk
on one machine and pinentry-gnome3
on another, when both machines had the exact same configs. Yeah, but different libraries were installed. One machine was missing gcr
, which is needed for pinentry-gnome3
, so that machine (and that one alone) spawned pinentry-gtk
ā¦
š§® USERS:1 FEEDS:2 TWTS:1410 ARCHIVED:88550 CACHE:2546 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1409 ARCHIVED:88527 CACHE:2536 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1408 ARCHIVED:88520 CACHE:2530 FOLLOWERS:22 FOLLOWING:14
@prologic@twtxt.net interesting, a Chinese pickup truck. Hmm, I would very interested to know your thoughts about it 2-3 years from now.
@bender@twtxt.net That was one of the inputs into my research š§ So thatās already factored in. We bought our new truck (2025 GWM Canon) recently to replace the āol 2nd hand Nissan Navara we bought that just had too many things go wrong with it, and I donāt have time or energy to learn to be a diesel mechanic haha 𤣠ā So yes, the SCT-16 has a Tare (unladen weight) of 2150Kg and a maximum legal (ATM) weight of 2,800Kg.
@prologic@twtxt.net that looks like a beautiful camper! What kind of truck do you have to pull it? That could be the next thing you might need to focus on. I mean, 2,800kg gross is not feather light!
š§® USERS:1 FEEDS:2 TWTS:1407 ARCHIVED:88509 CACHE:2521 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1406 ARCHIVED:88503 CACHE:2547 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1405 ARCHIVED:88497 CACHE:2550 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1404 ARCHIVED:88485 CACHE:2544 FOLLOWERS:22 FOLLOWING:14
Dois vencedores portugueses no Wiki Loves Folklore 2025, na categoria dos prĆ©mios regionais āNorthern & Western Europeā!
Os #Caretos de Lazarim e o Carnaval de #Lazarim, em #Lamego, foram premiados nesta competição, pela qualidade e originalidade de 2 fantÔsticas imagens. Muitos parabéns aos autores Filipe Salgado e António Alves Tendim!
VĆŖ todas as fotos vencedoras: https://commons.wikimedia.org/wiki/Commons:Wiki_Loves_Folklore_2025/Winners
š§® USERS:1 FEEDS:2 TWTS:1403 ARCHIVED:88482 CACHE:2542 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1402 ARCHIVED:88477 CACHE:2562 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1401 ARCHIVED:88472 CACHE:2558 FOLLOWERS:22 FOLLOWING:14
Sunday is for rest and recovery and I am chilling on the couch playing Death Stranding 2.
š§® USERS:1 FEEDS:2 TWTS:1400 ARCHIVED:88470 CACHE:2557 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1399 ARCHIVED:88461 CACHE:2553 FOLLOWERS:22 FOLLOWING:14
The WM_CLASS
Property is used on X11 to assign rules to certain windows, e.g. āthis is a GIMP window, it should appear on workspace number 16.ā It consists of two fields, name
and class
.
Wayland (or rather, the XDG shell protocol ā core Wayland knows nothing about this) only has a single field called app_id
.
When you run X11 programs under Wayland, you use XWayland, which is baked into most compositors. Then you have to deal with all three fields.
Some compositors map name
to app_id
, others map class
to app_id
, and even others directly expose the original name
and class
.
Apparently, there is no consensus.
š§® USERS:1 FEEDS:2 TWTS:1398 ARCHIVED:88454 CACHE:2548 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1397 ARCHIVED:88446 CACHE:2562 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1396 ARCHIVED:88443 CACHE:2565 FOLLOWERS:22 FOLLOWING:14
@movq@www.uninformativ.de Yeah, itās a shitshow. MS overconfirms all my prejudices constantly.
Ignoring e-mail after lunch works great, though. :-)
Our timetracking is offline for over a week because of reasons. The responsible bunglers are falling by the skin of their teeth: https://lyse.isobeef.org/tmp/timetracking.png
- The error message neither includes the timeframe nor a link to an announcement article.
- The HTML page needs to download JS in order to display the fucking error message.
- Proper HTTP status codes are clearly only for big losers.
- Despite being down, heaps of resources are still fetched.
I find it really fascinating how one can screw up on so many levels. This is developed inhouse, Iām just so glad that weāre not a software engineering company. Oh wait. How embarrassing.
š§® USERS:1 FEEDS:2 TWTS:1395 ARCHIVED:88418 CACHE:2541 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1394 ARCHIVED:88409 CACHE:2543 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1393 ARCHIVED:88408 CACHE:2543 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1392 ARCHIVED:88401 CACHE:2539 FOLLOWERS:22 FOLLOWING:14
Sem palavras pra descrever esta baixeza de artigo:
é citado um único estudo baseado em testemunhos de alunos (ficam de fora pais e profs), um estudo qualitativo por isso não generalizÔvel. Mm assim, os autores do artigo copiam as conclusões do estudo, e o Público tb parece estar ok com artigos decalcados
os autores do artigo são consultores que dão formação a pais e educadores sobre problemas do digital nas crianças, por isso basear opinião apenas num estudo q os ignora é ainda mais wtf
argumento de q crianças têm acesso a dispositivos fora da escola é parvo - tb têm acesso a tabaco e Ôlcool, por isso tb os devemos permitir na escola? come on
e Ć© muito conveniente clamar pela regulamentação das redes sociais sem especificar a forma (proibir anĆŗncios? introduzir idades mĆnimas? nĆ£o sabemos).
No final é o costume, os pais e profs que se desenmerdem, a responsabilidade é deles e não das empresas que criam mecanismos de viciação, claro
š§® USERS:1 FEEDS:2 TWTS:1391 ARCHIVED:88396 CACHE:2535 FOLLOWERS:22 FOLLOWING:14
āPara estar em linha com o Acordo de Paris, a UniĆ£o Europeia deveria ambicionar a neutralidade climĆ”tica jĆ” em 2040, com cortes reais dentro do território europeu, sem compensaƧƵes externas, garantindo uma transição justa para os setores mais vulnerĆ”veis e, no fundo, um investimento na competitividade europeia no longo prazo. O Governo portuguĆŖs, que tambĆ©m jĆ” estĆ” a baixar a ambição ao pretender reduƧƵes mais leves das emissƵes numa primeira fase por parte da UE Ć© chamado a exigir mais ambição e uma governação climĆ”tica transparente, reforƧando a urgĆŖncia de medidas consistentes num momento em que a Humanidade nĆ£o pode esperar por meias-medidas.ā
2/2
A newsletter pode ser subscrita aqui: https://zero.ong/newsletter/
Francisco Ferreira da #ZERO:
āA UniĆ£o Europeia (UE) estĆ” a dizer adeus Ć ambição climĆ”tica. Esta semana, em contraste com sinais evidentes de um clima em alteração com temperaturas recordes em toda a Europa, a ComissĆ£o Europeia apresentou, com meses de atraso, a meta climĆ”tica para 2040, propondo uma redução de pelo menos 90% das emissƵes face a 1990. No entanto, esta meta inclui mecanismos de flexibilidade, como crĆ©ditos de carbono internacionais e compensaƧƵes intersectoriais, que enfraquecem a ambição necessĆ”ria num momento crĆtico de agravamento da crise climĆ”tica.
Este atraso compromete tambĆ©m as metais europeias para 2035 a aprovar na COP30 no Brasil no final deste ano e enfraquece a lideranƧa global da UE ao sinalizar falta de determinação polĆtica. Estas flexibilidades inaceitĆ”veis, pois permitem desresponsabilizar setores emissores e adiar a transição, ignorando recomendaƧƵes cientĆficas que apontavam para reduƧƵes entre 90% e 95% sem tais mecanismos. A proposta surge num contexto polĆtico adverso após as eleiƧƵes europeias de 2024, com um recuo climĆ”tico generalizado, tendo a ComissĆ£o optado por um compromisso frĆ”gil para evitar confrontos com governos menos ambiciosos, como os da Polónia e Hungria. Esta Ć© uma oportunidade perdida de promover a lideranƧa climĆ”tica europeia.ā
½
š§® USERS:1 FEEDS:2 TWTS:1390 ARCHIVED:87839 CACHE:2584 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1389 ARCHIVED:87827 CACHE:2584 FOLLOWERS:22 FOLLOWING:14
[47°09ā²57ā³S, 126°43ā²52ā³W] Raw reading: 0x68643031, offset +/-2
š§® USERS:1 FEEDS:2 TWTS:1388 ARCHIVED:87820 CACHE:2603 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1387 ARCHIVED:87814 CACHE:2599 FOLLOWERS:22 FOLLOWING:14
#TVCultura Mundo da Lua 2
š§® USERS:1 FEEDS:2 TWTS:1386 ARCHIVED:87795 CACHE:2602 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1385 ARCHIVED:87790 CACHE:2604 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1384 ARCHIVED:87784 CACHE:2673 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1383 ARCHIVED:87781 CACHE:2688 FOLLOWERS:22 FOLLOWING:14
Weāre entering the ātoo hot to thinkā-season in 3, 2, 1 ⦠and weāre live!
š§® USERS:1 FEEDS:2 TWTS:1382 ARCHIVED:87766 CACHE:2684 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1381 ARCHIVED:87759 CACHE:2692 FOLLOWERS:22 FOLLOWING:14
Exigimos ao governo de Portugal o mĆnimo. Que:
Condene a agressão ilegal ao Irão por parte de Israel e dos Estados Unidos da América;
ProĆba o uso de infraestruturas e do espaƧo aĆ©reo portuguĆŖs para qualquer tipo de apoio aos ataques;
Aplique sanƧƵes ao Estado de Israel pelas suas consecutivas violaƧƵes do Direito Internacional e pelo genocĆdio em curso na Palestina;
ReconheƧa de imediato o Estado da Palestina.
Assina-se aqui: https://actionnetwork.org/forms/parar-a-guerra/
š§® USERS:1 FEEDS:2 TWTS:1380 ARCHIVED:87754 CACHE:2699 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1379 ARCHIVED:87753 CACHE:2701 FOLLOWERS:22 FOLLOWING:14
Saw this on Mastodon:
https://racingbunny.com/@mookie/114718466149264471
18 rules of Software Engineering
- You will regret complexity when on-call
- Stop falling in love with your own code
- Everything is a trade-off. Thereās no ābestā 3. Every line of code you write is a liability 4. Document your decisions and designs
- Everyone hates code they didnāt write
- Donāt use unnecessary dependencies
- Coding standards prevent arguments
- Write meaningful commit messages
- Donāt ever stop learning new things
- Code reviews spread knowledge
- Always build for maintainability
- Ask for help when youāre stuck
- Fix root causes, not symptoms
- Software is never completed
- Estimates are not promises
- Ship early, iterate often
- Keep. It. Simple.
Solid list, even though 14 is up for debate in my opinion: Software can be completed. You have a use case / problem, you solve that problem, done. Your software is completed now. There might still be bugs and they should be fixed ā but this doesnāt āaddā to the program. Donāt use āsoftware is never doneā as an excuse to keep adding and adding stuff to your code.
š§® USERS:1 FEEDS:2 TWTS:1378 ARCHIVED:87729 CACHE:2694 FOLLOWERS:22 FOLLOWING:14
@aelaraji@aelaraji.com I use Alt+.
all the time, itās great. š
FWIW, another thing I often use is !!
to recall the entire previous command line:
$ find -iname '*foo*'
./This is a foo file.txt
$ cat "$(!!)"
cat "$(find -iname '*foo*')"
This is just a test.
Yep!
Or:
$ ls -al subdir
ls: cannot open directory 'subdir': Permission denied
$ sudo !!
sudo ls -al subdir
total 0
drwx------ 2 root root 60 Jun 20 19:39 .
drwx------ 7 jess jess 360 Jun 20 19:39 ..
-rw-r--r-- 1 root root 0 Jun 20 19:39 nothing-to-see
š§® USERS:1 FEEDS:2 TWTS:1377 ARCHIVED:87719 CACHE:2687 FOLLOWERS:22 FOLLOWING:14
@prologic@twtxt.net ⦠or just bullshit.
Iām Alex, COO at ColdIQ. Built a $4.5M ARR business in under 2 years.
Some āC-levelā guy telling people what to do, yeah, I have my doubts.
š§® USERS:1 FEEDS:2 TWTS:1376 ARCHIVED:87698 CACHE:2671 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1375 ARCHIVED:87691 CACHE:2671 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1374 ARCHIVED:87681 CACHE:2671 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1373 ARCHIVED:87677 CACHE:2676 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1372 ARCHIVED:87663 CACHE:2673 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1371 ARCHIVED:87645 CACHE:2661 FOLLOWERS:22 FOLLOWING:14
A sua āvozā alimenta uma horda inflamada de pessoas de mal com a vida, que se digladiam na sedenta procura de āculpadosā: hoje os āesquerdalhosā, amanhĆ£ os imigrantes, no dia seguinte os muƧulmanos, e por aĆ adiante. Para esta gente, a Verdade Ć© um pequeno pormenor sem importĆ¢ncia. MithĆ” Ribeiro nĆ£o Ć© um homem qualquer. Ć docente, com obra editada, e por isso a sua defesa reiterada do salazarismo Ć© alarmante. Ao procurar reabilitar a memória de um regime autoritĆ”rio, racista e repressivo, MithĆ” Ribeiro banaliza a violĆŖncia do Estado Novo, branqueando dĆ©cadas de censura, perseguição polĆtica, tortura, negação de liberdades fundamentais, e um PaĆs atrasado, profundamente machista, com mulheres silenciadas por uma pobreza de espĆrito mĆ”scula que ainda hoje se julga superior e faz vĆtimas.
2/n
š§® USERS:1 FEEDS:2 TWTS:1370 ARCHIVED:87623 CACHE:2689 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1369 ARCHIVED:87615 CACHE:2689 FOLLOWERS:22 FOLLOWING:14
š§® USERS:1 FEEDS:2 TWTS:1368 ARCHIVED:87599 CACHE:2702 FOLLOWERS:22 FOLLOWING:14
Rollenspiel: Microsoft will 80 Euro für The Outer Worlds 2
Ćber alle Plattformen hinweg soll The Outer Worlds 2 80 Euro kosten. Damit folgt der Titel dem Trend steigender Spielepreise. ( The Outer Worlds, Microsoft)
IP-Cores: Qualcomm kauft Alphawave Semi für 2,4 Milliarden US-Dollar
Qualcomm lobt die IP-Cores von Alphawave Semi, zuletzt das Chiplet AlphaCHIP1600-IO. Die Ćbernahme hatte zwei Monate Vorlauf. ( Qualcomm, Cloud Computing)
Radxa UFS/eMMC Module Reader and Storage Solution Enables Fast Flashing and Scalable Embedded Storage
Radxaās UFS/eMMC Module Reader is a compact USB 3.0 adapter for flashing OS images, accessing firmware, and transferring large files. It supports both eMMC v5.0 and UFS 2.1 modules with speeds up to 5āÆGbps The adapter is compatible with eMMC and UFS modules from Radxa, and also works with modules from platforms like PINE64 and [ā¦] ā Read more
Pentagon mobilisiert weitere 2.000 Nationalgardisten ā Read more
Illicit tobacco crop worth $4.4m discovered near Shepparton after tip-off
Authorities seize a 20-tonne crop of mature tobacco being grown on 2.4 hectares, an area equivalent to more than 450 tennis courts, in Victoriaās north. ā Read more
š§® USERS:1 FEEDS:2 TWTS:1367 ARCHIVED:87591 CACHE:2698 FOLLOWERS:22 FOLLOWING:14
California to sue Trump administration as LA braces for more protests
Governor Gavin Newsom says the US president āflamed the firesā and has demanded he withdraw his order to deploy 2,000 National Guard troops to Los Angeles. ā Read more
Keeper: Psychonauts-Macher lassen Leuchtturm laufen
Viel Licht, keine KƤmpfe: Double Fine (Psychonauts 2) hat Keeper vorgestellt - ein Spiel um einen wandelnden Leuchtturm und seinen Freund. ( Double Fine, Microsoft)
ROG Xbox Ally: Microsoft zeigt seine Antwort auf Steam Deck und Switch 2
Leaks gab es zuhauf, nun hat Microsoft zusammen mit Asus offiziell zwei PC-Handhelds vorgestellt, Spitzenmodell ist das ROG Xbox Ally X. ( Xbox, Microsoft)
WAās $2.5m to bring AFL games to state put to test with regional debut
AFL fans set a crowd record at Bunbury for the AFLās first regional Western Australian game and one of two North Melbourne home games in the state. ā Read more
More than 40 drink drivers caught each day on average in Queensland
Police have undertaken more than 700,000 breath tests across the state since January, and are on track to conduct more than 2 million tests in a year for the first time since the COVID-19 pandemic. ā Read more
š§® USERS:1 FEEDS:2 TWTS:1366 ARCHIVED:87588 CACHE:2696 FOLLOWERS:22 FOLLOWING:14
CH32H417 Dual-Core RISC-V MCU Offers USB, Ethernet, and SerDes Support
WCHās new CH32H417 microcontroller introduces a dual-core RISC-V architecture designed for embedded applications requiring high-speed connectivity and peripheral integration. It is built on the Qingke V5F core running at 400 MHz and the V3F core at 144 MHz. The microcontroller supports USB 3.2 Gen 1 with a 5Gbps PHY and dual-role host/device functionality, along with [ā¦] ā Read more
Pepper Jack Cheese joined my family 2 days ago. She plays fetch! ā Read more
Nintendo Switch 2: Drei Millionen VerkƤufe innerhalb von 24 Stunden
Mehr Konsolen hat kein Hersteller in so kurzer Zeit verkauft. Die Switch 2 ist auf dem Weg zum erfolgreichsten Hardware-Launch aller Zeiten. ( Nintendo Switch, Nintendo)
Amazon Has Low Prices on AirTag ($22.98), Powerbeats Pro 2 ($199.95), and More This Weekend
Amazon this weekend has a few discounts on Apple accessories including AirTag, Apple Pencil Pro, and Beats headphones. If youāre shopping for AirPods, Amazon still has low prices across the AirPods Pro 2 and AirPods 4 right now.
Trump entsendet 2.000 Nationalgardisten
US-PrƤsident Donald Trump hat am Samstag (Ortszeit) die Entsendung von 2.000 Soldaten der Nationalgarde im Raum Los Angeles im US-Bundesstaat Kalifornien angeordnet. Damit will er auf Proteste gegen SicherheitskrƤfte der US-Einwanderungsbehƶrde ICE reagieren. Dieser Schritt bedeutet eine enorme Eskalation, haben doch im Normalfall die Bundesstaaten die Kontrolle über die Nationalgarde. ā Read more
š§® USERS:1 FEEDS:2 TWTS:1365 ARCHIVED:87577 CACHE:2688 FOLLOWERS:22 FOLLOWING:14
Mundfish: Atomic Heart 2 und mysteriöser Würfel angekündigt
Das umstrittene Entwicklerstudio Mundfish hat zwei neue Projekte präsentiert: das erwartete Atomic Heart 2 - und einen Würfel mit Gleichung. ( Atomic Heart, Spiele)
Anzeige: Switch 2: Gaming- & Retro-Handhelds im Golem-Ratgeber
Die Nintendo Switch 2 ist wieder bestellbar. Auch Retro-Handhelds erleben ein Comeback. Der Golem-Ratgeber gibt einen Ćberblick zu Konsolen. ( Technik/Hardware, Nintendo Switch 2)
Download Borderlands 2 for Mac FREE This Weekend on Steam
If youāre a Mac gamer and you love free games, you wonāt want to miss out on this deal; Borderlands 2, the classic popular first-person action RPG shooter, is free to download this weekend on Steam (until the morning of June 8 at 10am PDT). And because itās on Steam, youāll be able to play ⦠Read More ā Read more
My 2 rescue cat loving each other ā Read more
Sheās literally so fuckin small (sheās 2 and fully grown) ā Read more