Podcasts about Linux

Family of free and open-source software operating systems based on the Linux kernel

  • 3,750PODCASTS
  • 30,678EPISODES
  • 48mAVG DURATION
  • 5DAILY NEW EPISODES
  • Nov 6, 2025LATEST
Linux

POPULARITY

20172018201920202021202220232024

Categories




    Best podcasts about Linux

    Show all podcasts related to linux

    Latest podcast episodes about Linux

    BSD Now
    636: Thunder Bolts

    BSD Now

    Play Episode Listen Later Nov 6, 2025 63:25


    Thunderbolt on FreeBSD, ZFS on Illumos and Linux and FreeBSD, ZFS Compression, Home networking monitoring, LibreSSH and OpenSSH releases and more... NOTES This episode of BSDNow is brought to you by Tarsnap (https://www.tarsnap.com/bsdnow) and the BSDNow Patreon (https://www.patreon.com/bsdnow) Headlines Thunderbolt on FreeBSD (https://blog.feld.me/posts/2025/10/thunderbolt-on-freebsd) The broad state of ZFS on Illumos, Linux, and FreeBSD (as I understand it) (https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSOnIllumosLinuxAndFreeBSD) News Roundup zfs: setting compression and adding new vdevs (https://dan.langille.org/2025/10/18/zfs-setting-compression-and-adding-new-vdevs) The hunt for a home network monitoring solution (https://vulcanridr.mataroa.blog/blog/the-hunt-for-a-home-network-monitoring-solution) LibreSSL 4.2.0 Released (https://www.undeadly.org/cgi?action=article;sid=20251015043527) OpenSSH 10.2 released (https://www.undeadly.org/cgi?action=article;sid=20251010131052) - Related to 10.x versions : Post-Quantum Cryptography (https://www.openssh.com/pq.html) Check your IP infos using nginx (https://www.tumfatig.net/2025/check-your-ip-infos-using-nginx) Experimenting with Compression (just given an overview, I dont exepect you to read the all three writeups fully) Experimenting with compression off (https://dan.langille.org/2025/10/06/experimenting-with-compression-off/) Experimenting with compression=lz4 (https://dan.langille.org/2025/10/06/experimenting-with-compressionlz4/) Experimenting with compression=zstd (https://dan.langille.org/2025/10/06/experimenting-with-compressionzstd/) Compression results (https://dan.langille.org/2025/10/06/compression-results) Tarsnap This weeks episode of BSDNow was sponsored by our friends at Tarsnap, the only secure online backup you can trust your data to. Even paranoids need backups. Feedback/Questions Anton - Boxybsd (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/636/feedback/anton%20-%20boxybsd.md) Send questions, comments, show ideas/topics, or stories you want mentioned on the show to feedback@bsdnow.tv (mailto:feedback@bsdnow.tv) Join us and other BSD Fans in our BSD Now Telegram channel (https://t.me/bsdnow)

    Linux in the Ham Shack (MP3 Feed)
    LHS Episode #600: The End?

    Linux in the Ham Shack (MP3 Feed)

    Play Episode Listen Later Nov 6, 2025 46:00


    Hello and welcome to the 600th episode of Linux in the Ham Shack. In this episode, the hosts discuss the podcast--past, present and future--and then talk about the world of …

    linux ham shack
    Ba'al Busters Broadcast
    Microsoft and Apple Surveillance Sorcery with Rob Braxman

    Ba'al Busters Broadcast

    Play Episode Listen Later Nov 6, 2025 226:24 Transcription Available


    The BIG Squeezum is upon us as they rapidly cram us all into a digital prison of absolute compliance.  What are their methods acting upon you in your own home, and personal devices?  What can we do to sidestep these measures being taken against your right to privacy?Your LINKS:Get Dr Monzo's Whole Food Supplements for your 90 Essential Revitalizing Nutrients here: https://SemperFryLLC.comClick His Picture on the Right for the AZURE WELL products and use code BB5 for your discount.Join Dr. Glidden's Membership site:https://leavebigpharmabehind.com/?via=pgndhealthCode: baalbusters for 25% OffFind clickable portals to Dr Monzo and Dr Glidden on Dan's site, and it's the home of the best hot sauce, his book, and Clean Source Creatine-HCL.Subscribe to the NEW dedicated channel for Dr Glidden's Health Solutions Showhttps://rumble.com/c/DrGliddenHealthShowPods & Exclusives AD-FREE! Just $5/mohttps://patreon.com/c/DisguisetheLimitsDon't be a schmoe, Support the Show!Become a supporter of this podcast: https://www.spreaker.com/podcast/ba-al-busters-broadcast--5100262/support.

    Atareao con Linux
    ATA 742 - Cuatro herramientas IMPRESCINDIBLES para programar en Linux

    Atareao con Linux

    Play Episode Listen Later Nov 6, 2025 20:55


    ¿Cansado del "trabajo sucio" en tus proyectos de código? En este episodio te muestro mi kit de supervivencia en la Terminal de Linux: 4 herramientas CLI que automatizan desde el mensaje de commit con IA hasta el versionado completo del proyecto con Rust.. just (Task Runner)

    Hacker Public Radio
    HPR4503: One time passwords using oathtool

    Hacker Public Radio

    Play Episode Listen Later Nov 5, 2025


    This show has been flagged as Clean by the host. Oathtool 06 OATH Options and Oathtool The OATH standard has several options. You need to know which OATH options the site you wish to log into uses in order to use OATH. 07 Options - TOTP versus HOTP There are two different types of OATH one time passwords, HOTP and TOTP. HOTP uses a counter. I won't go into more detail on HOTP as I haven't come across anyone using it. TOTP uses the current time instead of a counter. The time is fed into the OATH algorithm along with the shared secret to generate a new password on both ends of the connection. All the instances of OATH that I am familiar with use TOTP. 08 TOTP Mode Totp has different "modes". These modes are hash encoding algorithms such as SHA1, SHA256, or SHA512. The correct mode must be selected in order to log in using OATH with TOTP. 09 Encoding - Hex versus Base32 Both ends of the connection must be initialized with a shared secret or key which is required as part of the OATH algorithm. This key could be encoded in one of two forms, either hexadecimal or base32. Web sites often do not document which encoding method they are using. If you cannot determine the encoding of the key by simply looking at it you may need to use trial and error during your first OATH log in attempts to see which type of key has been used. 10 Github and Pypi Options Github and Pypi are two of the most prominent web sites using OATH. Both use the same options, TOTP with SHA1 mode, and base32 encoding. 11 Using Oathtool oathtool is a simple command line application which generates one time passwords for use with OATH. It can be run in a terminal. However, can also be turned into a simple GUI application using Zenity. Will discuss this in more detail later. By default oathtool uses hotp and hex encoding. To use totp and base32 encoding you must specify these on the command line. To specify base32 encoding for use with for example Github, pass the "-b" or "--base32" argument on the command line. To specify TOTP, pass the "--totp" argument on the command line. By default, oathtool uses SHA1 with totp, so you don't need to specify that if you require SHA1. If you need a different TOTP mode, you specify that as part of the TOTP argument separated by an "=" character. For example "--totp=SHA256". 12 Oathtool Example Here is a simple example of using oathtool to create a one time password to use with Github or Pypi. Open a terminal and type the following. oathtool -b --totp SOMEBIGBASE32SECRETCODE The one time password will be printed out in the terminal. You can try this out without using a valid key so long as it is a valid base32 string. When used with a valid key you then enter that one time password into Github, Pypi, or other web site where it asks for the one time password. Note that I have not covered in the above how to store and retrieve the key securely, as that is too big of a topic to cover here. 13 Zenity Example Oathtool is a command line application, but if you are using Linux it is simple to convert it into a GUI application by using "Zenity". Zenity is a simple to use package that creates GUI windows on the command line or in a shell script. There are two steps to the proceess. First create the OTP from the key by using oathtool and save it in a variable. Next, call a Zenity "info" window with the OTP as part of the provided text. You can now copy and paste the OTP from the window into your web browser. To close the window, click on the "OK" button. See the previous note on storing the key securely. hprcode=$(oathtool -b --totp SOMEBIGBASE32SECRETCODE) zenity --info --width=150 --title="HPR 2FA" --text="2FA code is: nn $hprcode n" If you are using Gnome you can make the script launchable from the desktop by creading a ".desktop" file in the "Desktop" directory. Provide feedback on this episode.

    Linux Weekly Daily Wednesday
    New Sound Blaster Supports Linux!

    Linux Weekly Daily Wednesday

    Play Episode Listen Later Nov 5, 2025 31:22


    This week we look at Amarok's massive 3.3 update, Creative's modular Sound Blaster reboot, Linux running in a web browser through WebAssembly, and the endlessly expandable Intel-powered LattePanda IOTA project board.

    The Full Nerd
    Episode 372: Radeon Driver "Confusion", Linux Gaming Milestone & More

    The Full Nerd

    Play Episode Listen Later Nov 4, 2025 106:16


    Join The Full Nerd gang as they talk about the latest PC building news. In this episode the gang covers the RDNA 1/2 driver support announcement, how many Windows PC games are running on Linux now, and so much more. And of course we answer your questions live! Links: - Radeon blog post: https://www.pcworld.com/article/2959622/amd-older-rx5000-rx6000-cards-will-have-an-optimized-driver-path.html - Linux gaming: https://www.tomshardware.com/software/linux/nearly-90-percent-of-windows-games-now-run-on-linux-latest-data-shows-as-windows-10-dies-gaming-on-linux-is-more-viable-than-ever Join the PC related discussions and ask us questions on Discord: https://discord.gg/WWnEzTDhw Follow the crew on X and Bluesky: @AdamPMurray @BradChacos @MorphingBall @WillSmith ============= Read PCWorld! Website: http://www.pcworld.com Newsletter: http://www.pcworld.com/newsletters/signup ============= #podcast #news #pcgaming

    Coder Radio
    631: Aeroview's Marc Weiner

    Coder Radio

    Play Episode Listen Later Nov 4, 2025 29:36


    Aeroview (https://aeroview.io/) Marc on LinkedIn (https://www.linkedin.com/in/mhweiner/) Alice for Snowflake (https://alice.dev/alice-snowflake/) Mike on X (https://x.com/dominucco) Mike on BlueSky (https://bsky.app/profile/dominucco.bsky.social) Coder on X (https://x.com/coderradioshow) Show Discord (https://discord.gg/k8e7gKUpEp) Alice & Custom Dev (https://alice.dev) Mike's Recent Omakub Blog Post (https://dominickm.com/omakhub-review/)

    The Plex
    The Plex EP452 - Bad Tennessee News, Trump In Asia, NYC Mayor Race, Canadian Elbows Up

    The Plex

    Play Episode Listen Later Nov 4, 2025


    Check Out Echoplex Radio iTunes, Stitcher, Google, iHeart, Spotify, RSS, Odysee, Twitch, YouTubeSupport This Project On Patreon Check Out Our Swag Shop Join Our Discord Server Check out our Linux powered studio!‍ ‍Host: Producer DaveDocket: https://bit.ly/11-2-2025-docMembers ShowFourthwallPatreon

    LINUX Unplugged
    639: The Mess Machine

    LINUX Unplugged

    Play Episode Listen Later Nov 3, 2025 61:45 Transcription Available


    After all the AI hype is over, one change for Linux will be sticking around; we put it to the test.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. CrowdHealth: Discover a Better Way to Pay for Healthcare with Crowdfunded Memberships. Join CrowdHealth to get started today for $99 for your first three months using UNPLUGGED.Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:

    All TWiT.tv Shows (MP3)
    Untitled Linux Show 227: Ancient Stack Tax

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later Nov 3, 2025 105:55 Transcription Available


    This week SUSE's SLES and Red Hat's RHEL are embracing AI in the form of MCP and CUDA support. FFMPEG scores a $100k donation, Pop_OS and Cosmic finally have a release data, and Unity is in need of help. Kodi 22 has an Alpha, Debian has a Systemd dustup, and Krita has landed HDR support. And there's a port of Linux to WASM, so you can run the kern in your browser. Handy! For tips we have doxx for opening .docx in the terminal, a primer on absolute vs relative paths, whoami for grabbing the current username, and btrfs's scrub command for checking the local disk. You can find the show notes at https://bit.ly/4ovhsLG and have a great week! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.

    Late Night Linux
    Late Night Linux – Episode 358

    Late Night Linux

    Play Episode Listen Later Nov 3, 2025 35:32


    Mark Shuttleworth recently spoke to us about what he's apprehensive and excited about in the tech world, and more. Plus in the news: Ubuntu Unity needs help to survive, the Python Software Foundation turns down a large government grant, Fedora allows AI contributions, SUSE goes all in on AI, and KDE hits its fundraising goal.... Read More

    Late Night Linux All Episodes
    Late Night Linux – Episode 358

    Late Night Linux All Episodes

    Play Episode Listen Later Nov 3, 2025 35:32


    Mark Shuttleworth recently spoke to us about what he's apprehensive and excited about in the tech world, and more. Plus in the news: Ubuntu Unity needs help to survive, the Python Software Foundation turns down a large government grant, Fedora allows AI contributions, SUSE goes all in on AI, and KDE hits its fundraising goal.... Read More

    Hacker News Recap
    November 2nd, 2025 | Linux gamers on Steam cross over the 3% mark

    Hacker News Recap

    Play Episode Listen Later Nov 3, 2025 14:21


    This is a recap of the top 10 posts on Hacker News on November 02, 2025. This podcast was generated by wondercraft.ai (00:30): Linux gamers on Steam cross over the 3% markOriginal post: https://news.ycombinator.com/item?id=45792503&utm_source=wondercraft_ai(01:51): How I use every Claude Code featureOriginal post: https://news.ycombinator.com/item?id=45786738&utm_source=wondercraft_ai(03:13): Facts about throwing good partiesOriginal post: https://news.ycombinator.com/item?id=45794032&utm_source=wondercraft_ai(04:35): URLs are state containersOriginal post: https://news.ycombinator.com/item?id=45789474&utm_source=wondercraft_ai(05:56): Notes by djb on using Fil-COriginal post: https://news.ycombinator.com/item?id=45788040&utm_source=wondercraft_ai(07:18): Backpropagation is a leaky abstraction (2016)Original post: https://news.ycombinator.com/item?id=45787993&utm_source=wondercraft_ai(08:40): Anti-cybercrime laws are being weaponized to repress journalismOriginal post: https://news.ycombinator.com/item?id=45792209&utm_source=wondercraft_ai(10:01): Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearchOriginal post: https://news.ycombinator.com/item?id=45789602&utm_source=wondercraft_ai(11:23): Using FreeBSD to make self-hosting fun againOriginal post: https://news.ycombinator.com/item?id=45789424&utm_source=wondercraft_ai(12:45): Paris had a moving sidewalk in 1900, and a Thomas Edison film captured it (2020)Original post: https://news.ycombinator.com/item?id=45793466&utm_source=wondercraft_aiThis is a third-party project, independent from HN and YC. Text and audio generated using AI, by wondercraft.ai. Create your own studio quality podcast with text as the only input in seconds at app.wondercraft.ai. Issues or feedback? We'd love to hear from you: team@wondercraft.ai

    BIT-BUY-BIT's podcast
    We All Eat | The Confab 25: Chet

    BIT-BUY-BIT's podcast

    Play Episode Listen Later Nov 3, 2025 67:41 Transcription Available


    In this confab, Max catches up with Chet—long-time friend of the show, pleb miner mafia stalwart, and one of the most hands-on mining pioneers around. We reflect on the evolution from pleb to pioneer, the value of craft mastery, and the realities of living like a “mining monk” to keep uptime high. Chet opens up about humility in markets, his thesis on used miner pricing, why community matters more than adulation, and how building a circular economy means choosing who you spend your sats with. We dig into balance, burnout, OPSEC trade-offs, and finding purpose beyond number go up—whether that's family, fitness, or a well-built deck at home.Max and Chet also dive into gas mining as the next scrappy frontier, mineral rights and licenses, and how Big Tech's energy appetite will reshape competition. On the privacy front, they discuss Ashigaru's rebirth of the Samourai-style toolset (including its new Whirlpool), practical wallet setups with Cake Wallet and node linking, and the importance of meetups like Lake Satoshi for real-world learning. It's a candid, wide-ranging chat on building, belonging, and the grind required to make Bitcoin living, not just Bitcoin listening.VALUE FOR VALUEThanks for listening you Ungovernable Misfits, we appreciate your continued support and hope you enjoy the shows.You can support this episode using your time, talent or treasure.TIME:- create fountain clips for the show- create a meetup- help boost the signal on social mediaTALENT:- create ungovernable misfit inspired art, animation or music- design or implement some software that can make the podcast better- use whatever talents you have to make a contribution to the show!TREASURE:- BOOST IT OR STREAM SATS on the Podcasting 2.0 apps @ https://podcastapps.com- DONATE via Monero @ https://xmrchat.com/ugmf- BUY SOME STICKERS @ https://www.ungovernablemisfits.com/shop/FOUNDATIONhttps://foundation.xyz/ungovernableFoundation builds Bitcoin-centric tools that empower you to reclaim your digital sovereignty.As a sovereign computing company, Foundation is the antithesis of today's tech conglomerates. Returning to cypherpunk principles, they build open source technology that “can't be evil”.Thank you Foundation Devices for sponsoring the show!Use code: Ungovernable for $10 off of your purchaseCAKE WALLEThttps://cakewallet.comCake Wallet is an open-source, non-custodial wallet available on Android, iOS, macOS, and Linux.Features:- Built-in Exchange: Swap easily between Bitcoin and Monero.- User-Friendly: Simple interface for all users.Monero Users:- Batch Transactions: Send multiple payments at once.- Faster Syncing: Optimized syncing via specified restore heights- Proxy Support: Enhance privacy with proxy node options.Bitcoin Users:- Coin Control: Manage your transactions effectively.- Silent Payments: Static bitcoin addresses- Batch Transactions: Streamline your payment process.Thank you Cake Wallet for sponsoring the show!MYNYMBOXhttps://mynymbox.netYour go-to for anonymous server hosting solutions, featuring: virtual private & dedicated servers, domain registration and DNS parking. We don't require any of your personal information, and you can purchase using Bitcoin, Lightning, Monero and many other cryptos.Explore benefits such as No KYC, complete privacy & security, and human support.(00:00:00) INTRO(00:01:45) BOOSTS(00:05:31) THANK YOU CAKE WALLET(00:06:38) THANK YOU FOUNDATION(00:07:25) THANK YOU MYNYMBOX(00:08:22) Reunion on the Mic(00:12:17) From Pleb to Pioneer(00:19:30) Thanks for the Memories(00:22:53) The Mining Monk(00:26:54) Getting Into Gas(00:33:34) Paying it Forward(00:36:21) The Value of Wholesome Work(00:41:34) More Hash Sluts(00:48:00) Doing It Live(00:52:53) Living Life or Basement Dweller OPSEC(00:56:41) Grassroots Education(01:03:03) Ashigaru, Samourai and Whirlpool(01:06:47) We'll Make it Happen at Lake Satoshi

    All TWiT.tv Shows (Video LO)
    Untitled Linux Show 227: Ancient Stack Tax

    All TWiT.tv Shows (Video LO)

    Play Episode Listen Later Nov 3, 2025 105:55 Transcription Available


    This week SUSE's SLES and Red Hat's RHEL are embracing AI in the form of MCP and CUDA support. FFMPEG scores a $100k donation, Pop_OS and Cosmic finally have a release data, and Unity is in need of help. Kodi 22 has an Alpha, Debian has a Systemd dustup, and Krita has landed HDR support. And there's a port of Linux to WASM, so you can run the kern in your browser. Handy! For tips we have doxx for opening .docx in the terminal, a primer on absolute vs relative paths, whoami for grabbing the current username, and btrfs's scrub command for checking the local disk. You can find the show notes at https://bit.ly/4ovhsLG and have a great week! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.

    Hacker Public Radio
    HPR4501: HPR Community News for October 2025

    Hacker Public Radio

    Play Episode Listen Later Nov 3, 2025


    This show has been flagged as Explicit by the host. New hosts Welcome to our new hosts: Kirbotica, Thibaut, candycanearter. Last Month's Shows Id Day Date Title Host 4478 Wed 2025-10-01 YouTube Subscriptions 2025 #6 Ahuka 4479 Thu 2025-10-02 Who is the Algernon for Whom are the Flowers? Antoine 4480 Fri 2025-10-03 Arthur C. Clarke Becomes Successful Ahuka 4481 Mon 2025-10-06 HPR Community News for September 2025 HPR Volunteers 4482 Tue 2025-10-07 doodoo 4 the double deuce Jezra 4483 Wed 2025-10-08 HPR Beer Garden 3 - Porters Kevie 4484 Thu 2025-10-09 When Your Dentist Uses ChatControl Logic Trollercoaster 4485 Fri 2025-10-10 Git for Github and Gitlab Archer72 4486 Mon 2025-10-13 A code off my mind Lee 4487 Tue 2025-10-14 Is AI autistic? Antoine 4488 Wed 2025-10-15 Cheap Yellow Display Project Part 2: What is the problem? Trey 4489 Thu 2025-10-16 Hacks Poetic - Pilot Episode Kirbotica 4490 Fri 2025-10-17 Playing Civilization V, Part 4 Ahuka 4491 Mon 2025-10-20 Thibaut and Ken Interview David Revoy Thibaut 4492 Tue 2025-10-21 How to do a distribution upgrade of an Ubuntu LTS on a Digital Ocean droplet Rho`n 4493 Wed 2025-10-22 HPR Beer Garden 4 - Weissbier Kevie 4494 Thu 2025-10-23 Exploring FUTO Keyboard Antoine 4495 Fri 2025-10-24 An introduction to Taskwarrior candycanearter 4496 Mon 2025-10-27 Stroopwafel Lee 4497 Tue 2025-10-28 fixing 328eforth Brian-in-Ohio 4498 Wed 2025-10-29 Living the Tux Life Episode 1 Al 4499 Thu 2025-10-30 Greg Farough and Zoë Kooyman of the FSF interview Librephone lead developer Rob Savoye Ken Fallon 4500 Fri 2025-10-31 Arthur C. Clarke: 2001 and Sequels Ahuka Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 41 comments in total. Past shows There are 12 comments on 7 previous shows: hpr4238 (2024-10-30) "Snaps are better than flatpaks" by Some Guy On The Internet. Comment 4: BA on 2025-10-05: "Not a fan of any of them." hpr4453 (2025-08-27) "IPv6 for Luddites" by beni. Comment 7: Beni on 2025-10-22: "Link to the mentioned IPv6 talk on EuroBSDcon 2025" hpr4470 (2025-09-19) "HPR is twenty years old today. " by Lee. Comment 3: Steve Barnes on 2025-10-12: "Les petites félicites!" hpr4474 (2025-09-25) "Hacker Poetry - 001" by Major_Ursa. Comment 1: candycanearter07 on 2025-10-01: "love it" hpr4475 (2025-09-26) "The true audio file for walking tune to(wards) a friend" by FredBlack. Comment 1: brian-in-ohio on 2025-10-14: "Why fret about frets?" Comment 2: Folky on 2025-10-15: "Frets?" hpr4476 (2025-09-29) "Does AI cause brain damage?" by Trollercoaster. Comment 3: enistello on 2025-10-01: "Wonderful episode" Comment 4: Trollercoaster on 2025-10-02: "Re: Wondeful episode" hpr4477 (2025-09-30) "doodoo 3 a deuce plus 1" by Jezra. Comment 1: candycanearter07 on 2025-10-02: "cool app but" Comment 2: Archer72 on 2025-10-05: "Re: cool app" Comment 3: candycanearter07 on 2025-10-06: "Re: Re: cool app" Comment 4: أحمد المحمودي on 2025-10-07: "I use todoman" This month's shows There are 29 comments on 12 of this month's shows: hpr4478 (2025-10-01) "YouTube Subscriptions 2025 #6" by Ahuka. Comment 1: Anonymous 27 on 2025-10-02: "Excellent recommendations" hpr4479 (2025-10-02) "Who is the Algernon for Whom are the Flowers?" by Antoine. Comment 1: Trey on 2025-10-02: "Very interesting"Comment 2: Anonymous 27 on 2025-10-06: "Required Futurama reference" hpr4480 (2025-10-03) "Arthur C. Clarke Becomes Successful" by Ahuka. Comment 1: Archer72 on 2025-10-13: "Great show... and may the force be with you"Comment 2: Kevin O'Brien on 2025-10-13: "Thank you" hpr4483 (2025-10-08) "HPR Beer Garden 3 - Porters" by Kevie. Comment 1: Archer72 on 2025-10-16: "History of beer" hpr4484 (2025-10-09) "When Your Dentist Uses ChatControl Logic" by Trollercoaster. Comment 1: Trollercoaster on 2025-10-09: "Voting has been delayed"Comment 2: candycanearter07 on 2025-10-12: "Satire as a tool"Comment 3: Trollercoaster on 2025-10-14: "Re: Satire as a tool"Comment 4: operat0r on 2025-10-16: "Lol"Comment 5: Trollercoaster on 2025-10-20: "Re: Lol" hpr4485 (2025-10-10) "Git for Github and Gitlab" by Archer72. Comment 1: candycanearter07 on 2025-10-21: "useful introduction"Comment 2: Sayaci on 2025-10-21: "The content of the Archer72" hpr4486 (2025-10-13) "A code off my mind" by Lee. Comment 1: Trey on 2025-10-13: "Excellent perspectives " hpr4489 (2025-10-16) "Hacks Poetic - Pilot Episode" by Kirbotica. Comment 1: Ken Fallon on 2025-10-16: "What a waste !"Comment 2: Trey on 2025-10-16: "Thought provoking..."Comment 3: Claudio on 2025-10-16: "A Refreshing HPR Episode!"Comment 4: Alexander on 2025-10-17: "Just threw my iPhone in the ocean..."Comment 5: Kevin O'Brien on 2025-10-17: "I loved the show"Comment 6: Tori on 2025-10-21: "When Nostalgia Meets the Digital Age"Comment 7: brian-in-ohio on 2025-10-22: "Don't burn out" hpr4491 (2025-10-20) "Thibaut and Ken Interview David Revoy" by Thibaut. Comment 1: brian-in-ohio on 2025-10-22: "Great show"Comment 2: Henrik Hemrin on 2025-10-26: "Inspiring" hpr4493 (2025-10-22) "HPR Beer Garden 4 - Weissbier" by Kevie. Comment 1: folky on 2025-10-22: "Hefeweizen is best ;-) "Comment 2: paulj on 2025-10-22: "Great Episode!"Comment 3: Claudio on 2025-10-23: "Great Episode I Can Relate To!"Comment 4: Gan Ainm on 2025-10-26: "Scottish-Bavarian IPW" hpr4495 (2025-10-24) "An introduction to Taskwarrior" by candycanearter. Comment 1: Archer72 on 2025-10-15: "First show: Good explanation" hpr4500 (2025-10-31) "Arthur C. Clarke: 2001 and Sequels" by Ahuka. Comment 1: Archer72 on 2025-10-16: "Deep dive" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mailing List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2025-October/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page.Provide feedback on this episode.

    All Jupiter Broadcasting Shows
    The Mess Machine | LINUX Unplugged 639

    All Jupiter Broadcasting Shows

    Play Episode Listen Later Nov 2, 2025


    After all the AI hype is over, one change for Linux will be sticking around; we put it to the test.

    Late Night Linux Extra
    Linux Dev Time – Episode 136

    Late Night Linux Extra

    Play Episode Listen Later Nov 2, 2025 27:06


    Some of the languages that we love and why we love them. It's not just Rust, honest!         Support us on Patreon and get an ad-free RSS feed with early episodes sometimes   See our contact page for ways to get in touch. Subscribe to the RSS feed

    Late Night Linux All Episodes
    Linux Dev Time – Episode 136

    Late Night Linux All Episodes

    Play Episode Listen Later Nov 2, 2025 27:06


    Some of the languages that we love and why we love them. It's not just Rust, honest!         Support us on Patreon and get an ad-free RSS feed with early episodes sometimes   See our contact page for ways to get in touch. Subscribe to the RSS feed

    The Linux Cast
    Episode 212: Who Should Start a Home Lab? With RaidOwl ​

    The Linux Cast

    Play Episode Listen Later Nov 2, 2025 73:51


    The pod returns! This time we talk about home labs and who should have one with @RaidOwl ==== Special Thanks to Our Patrons! ==== https://thelinuxcast.org/patrons/ ===== Follow us

    LinuxGameCast Weekly
    90% Of Windows Games Launch On Linux

    LinuxGameCast Weekly

    Play Episode Listen Later Nov 2, 2025 60:04


    Windows users scramble to find a new excuses not to switch to Linux, the Steam Controller 2 “Triton” appears in the latest Steam update

    BIT-BUY-BIT's podcast
    Layer Two Who? | FREEDOM TECH FRIDAY 18

    BIT-BUY-BIT's podcast

    Play Episode Listen Later Nov 2, 2025 63:09 Transcription Available


    A weekly live show covering all things Freedom Tech with Max, Q and Seth.TO DONATE TO ROMAN'S DEFENSE FUND: https://freeromanstorm.com/donateIMPORTANT LINKS https://freesamourai.comhttps://p2prights.org/donate.htmlhttps://ungovernablemisfits.comVALUE FOR VALUEThanks for listening you Ungovernable Misfits, we appreciate your continued support and hope you enjoy the shows.You can support this episode using your time, talent or treasure.TIME:- create fountain clips for the show- create a meetup- help boost the signal on social mediaTALENT:- create ungovernable misfit inspired art, animation or music- design or implement some software that can make the podcast better- use whatever talents you have to make a contribution to the show!TREASURE:- BOOST IT OR STREAM SATS on the Podcasting 2.0 apps @ https://podcastapps.com- DONATE via Monero @ https://xmrchat.com/ugmf- BUY SOME STICKERS @ https://www.ungovernablemisfits.com/shop/FOUNDATIONhttps://foundation.xyz/ungovernableFoundation builds Bitcoin-centric tools that empower you to reclaim your digital sovereignty.As a sovereign computing company, Foundation is the antithesis of today's tech conglomerates. Returning to cypherpunk principles, they build open source technology that “can't be evil”.Thank you Foundation Devices for sponsoring the show!Use code: Ungovernable for $10 off of your purchaseCAKE WALLEThttps://cakewallet.comCake Wallet is an open-source, non-custodial wallet available on Android, iOS, macOS, and Linux.Features:- Built-in Exchange: Swap easily between Bitcoin and Monero.- User-Friendly: Simple interface for all users.Monero Users:- Batch Transactions: Send multiple payments at once.- Faster Syncing: Optimized syncing via specified restore heights- Proxy Support: Enhance privacy with proxy node options.Bitcoin Users:- Coin Control: Manage your transactions effectively.- Silent Payments: Static bitcoin addresses- Batch Transactions: Streamline your payment process.Thank you Cake Wallet for sponsoring the show!

    The CyberWire
    CISA's steady hand in a stalled senate.

    The CyberWire

    Play Episode Listen Later Oct 31, 2025 24:55


    CISA says cooperation between federal agencies and the private sector remains steady. Long-standing Linux kernel vulnerability in active ransomware campaigns confirmed. A Chinese-linked group targets diplomatic organizations in Hungary, Belgium, and other European nations. A government contractor breach exposes data of over 10 million Americans. Luxury fashion brands fall victim to impersonation scams. Phishing shifts from email to LinkedIn. Advocacy groups urge the FTC to block Meta from using chatbot interactions to target ads. A man pleads guilty to selling zero-days to the Russians. Emily Austin, Principal Security Researcher at Censys, discusses why nation state attackers continue targeting critical infrastructure. When M&S went offline, shoppers hit ‘Next'. Remember to leave us a 5-star rating and review in your favorite podcast app. Miss an episode? Sign-up for our daily intelligence roundup, Daily Briefing, and you'll never miss a beat. And be sure to follow CyberWire Daily on LinkedIn. CyberWire Guest Today we are joined by Emily Austin, Principal Security Researcher at Censys, as she discusses why nation state attackers continue targeting critical infrastructure. Selected Reading Cyber info sharing ‘holding steady' despite lapse in CISA 2015, official says (The Record) CISA: High-severity Linux flaw now exploited by ransomware gangs (Bleeping Computer) CISA and NSA share tips on securing Microsoft Exchange servers (Bleeping Computer) UNC6384 Weaponizes ZDI-CAN-25373 Vulnerability to Deploy PlugX Against Hungarian and Belgian Diplomatic Entities (Arctic Wolf) More than 10 million impacted by breach of government contractor Conduent (The Record) Luxury Fashion Brands Face New Wave of Threats in Lead-up to 2025 Holiday Shopping Season (BforeAI) LinkedIn phishing targets finance execs with fake board invites (Bleeping Computer) Coalition calls on FTC to block Meta from using chatbot interactions to target ads, personalize content (The Record) Ex-L3Harris exec pleads guilty to selling zero-day exploits to Russian broker (CyberScoop) Business rival credits cyberattack on M&S for boosting profits (The Record) Share your feedback. What do you think about CyberWire Daily? Please take a few minutes to share your thoughts with us by completing our brief listener survey. Thank you for helping us continue to improve our show. Want to hear your company in the show? N2K CyberWire helps you reach the industry's most influential leaders and operators, while building visibility, authority, and connectivity across the cybersecurity community. Learn more at sponsor.thecyberwire.com. The CyberWire is a production of N2K Networks, your source for strategic workforce intelligence. © N2K Networks, Inc. Learn more about your ad choices. Visit megaphone.fm/adchoices

    Geekshow Podcast
    Geekshow Arcade: Xbox continues to disappoint

    Geekshow Podcast

    Play Episode Listen Later Oct 31, 2025 54:31


    Tony: -Xbox Showcase… Who cares: https://www.ign.com/articles/idxbox-showcase-october-2025-everything-announced -OneXfly shows off new beefy handheld: https://wccftech.com/onexfly-apex-handheld-launch-amd-ryzen-ai-max-395-liquid-cooling-128-gb-85wh-battery/ Jarron: -So that's why Xbox sucks lately: https://games.slashdot.org/story/25/10/23/122257/microsoft-demands-30-profit-margins-from-struggling-xbox-division?utm_source=rss0.9mainlinkanon&utm_medium=feed -Battlefield REDSEC announced: https://www.ign.com/articles/battlefield-redsec-launches-alongside-battlefield-6-season-1-with-battle-royale-gauntlet-and-portal-modes-heres-everything-you-need-to-know Owen: -Maybe gaming is what makes Linux go mainstream in the public sphere. https://www.tomshardware.com/software/linux/nearly-90-percent-of-windows-games-now-run-on-linux-latest-data-shows-as-windows-10-dies-gaming-on-linux-is-more-viable-than-ever Source article from Boiling Steam - https://boilingsteam.com/windows-games-compatibility-on-linux-is-at-a-all-time-high/ -Halo Campaign Evolved announced. https://www.halowaypoint.com/news/introducing-halo-campaign-evolved https://www.ign.com/articles/halo-campaign-evolved-is-a-pretty-remake-coming-to-ps5-but-not-an-exact-one

    Developer Voices
    Building Observable Systems with eBPF and Linux (with Mohammed Aboullaite)

    Developer Voices

    Play Episode Listen Later Oct 31, 2025 71:24


    How do you monitor distributed systems that span dozens of microservices, multiple languages, and different databases? The old approach of gathering logs from different machines and recompiling apps with profiling flags doesn't scale when you're running thousands of servers. You need a unified strategy that works everywhere, on every component, in every language—and that means tackling the problem from the kernel level up.Mohammed Aboullaite is a backend engineer at Spotify, and he joins us to explore the latest in continuous profiling and observability using eBPF. We dive into how eBPF lets you programmatically peek into the Linux kernel without recompiling it, why companies like Google and Meta run profiling across their entire infrastructure, and how to manage the massive data volumes that continuous profiling generates. Mohammed walks through specific tools like Pyroscope, Pixie, and Parca, explains the security model of loading code into the kernel, and shares practical advice on overhead thresholds, storage strategies, and getting organizational buy-in for continuous profiling.Whether you're debugging performance issues, optimizing for scale, or just want to see what your code is really doing in production, this episode covers everything from packet filters to cultural changes in service of getting a clear view of your software when it hits production.---Support Developer Voices on Patreon: https://patreon.com/DeveloperVoicesSupport Developer Voices on YouTube: https://www.youtube.com/@DeveloperVoices/joineBPF: https://ebpf.io/Google-Wide Profiling Paper (2010): https://research.google.com/pubs/archive/36575.pdfGoogle pprof: https://github.com/google/pprofContinuous Profiling Tools:Pyroscope (Grafana): https://grafana.com/oss/pyroscope/Pixie (CNCF): https://px.dev/Parca: https://www.parca.dev/Datadog Continuous Profiler: https://www.datadoghq.com/product/code-profiling/Supporting Technologies:OpenTelemetry: https://opentelemetry.io/Grafana: https://grafana.com/New Relic: https://newrelic.com/Envoy Proxy: https://www.envoyproxy.io/Spring Cloud Sleuth: https://spring.io/projects/spring-cloud-sleuthMohammed Aboullaite:LinkedIn: https://www.linkedin.com/in/aboullaite/GitHub: https://github.com/aboullaiteWebsite: http://aboullaite.meTwitter/X: https://twitter.com/laytounKris on Bluesky: https://bsky.app/profile/krisajenkins.bsky.socialKris on Mastodon: http://mastodon.social/@krisajenkinsKris on LinkedIn: https://www.linkedin.com/in/krisjenkins/

    The Nextlander Podcast
    221: Mortal Monday

    The Nextlander Podcast

    Play Episode Listen Later Oct 30, 2025 149:28


    If you want to hear us gush for like an hour about Mortal Kombat: Legacy Kollection, this is the episode for you, and we also fit in discussion of Halo on PlayStation and the increasing demands on the Xbox business, the Kojima Matrix game that almost was, Once Upon a Katamari, Dead Reset, Jackbox 11, and... wait, did you think we forgot Death Stranding 2? THINK AGAIN. CHAPTERS (00:00:00) NOTE: Some timecodes may be inaccurate for versions other than the ad-free Patreon version due to dynamic ad insertions. Please use caution if skipping around to avoid spoilers. Thanks for listening. (00:00:10) Intro (00:01:39) Health insurance premiums are too high for nugget challenges (00:08:15) Mortal Kombat: Legacy Kollection  |  [PC (Microsoft Windows), Nintendo Switch, Nintendo Switch 2]  |  Oct 30, 2025 (00:58:52) First Break (00:58:57) The Jackbox Party Pack 11  |  [Linux, Mac, PC (Microsoft Windows)]  |  Oct 23, 2025 (01:02:12) Dead Reset  |  [Mac, Nintendo Switch, PC (Microsoft Windows), PlayStation 5, Xbox Series X|S, Xbox One, iOS, Android]  |  Sep 11, 2025 (01:03:07) Once Upon a Katamari  |  [PlayStation 5, Xbox Series X|S, Nintendo Switch, PC (Microsoft Windows)]  |  Oct 24, 2025 (01:08:49) Ball x Pit  |  [PlayStation 5, Mac, PC (Microsoft Windows), Xbox Series X|S, Nintendo Switch]  |  Oct 15, 2025 (01:11:10) Death Stranding 2: On The Beach  |  [PlayStation 5]  |  Jun 26, 2025 (01:11:37) [Spoilers] Some story moments and locations are talked about. (01:26:41) Second Break (01:27:50) Xbox and Microsoft continue to be in the news. (01:51:32) EA staff reportedly being urged to engage with a lot of AI (01:58:40) Konami says Kojima was asked to make a Matrix game? (02:06:58) Battle Arena Toshinden franchise getting a re-release? (02:11:18) Emails (02:18:39) Wrapping up and thanks (02:23:59) Mysterious Benefactor Shoutouts (02:26:07) Nextlander content updates (02:29:16) See ya!

    The CyberWire
    Dial M for malware.

    The CyberWire

    Play Episode Listen Later Oct 30, 2025 26:19


    A Texas telecom confirms a nation-state attack. A global outage disrupts Azure and Microsoft 365 services.  Malicious npm packages steal sensitive data from Windows, Linux, and macOS systems.  Hacktivists have breached multiple critical infrastructure systems across Canada. Major chipmakers spill the TEE. TP-Link home routers fall under federal scrutiny. Cloud Atlas targets Russia's agricultural sector. Israel's cloud computing deal with Google and Amazon allegedly includes a secret “winking mechanism.”The FCC tamps down on overseas robocalls. Mike Anderson, from Netskope, discusses why CIOs should think like HR leaders when considering Agentic AI. Danes Draw the line at digital doppelgängers.  Remember to leave us a 5-star rating and review in your favorite podcast app. Miss an episode? Sign-up for our daily intelligence roundup, Daily Briefing, and you'll never miss a beat. And be sure to follow CyberWire Daily on LinkedIn. CyberWire Guest Today we are joined by Mike Anderson, Netskope's Chief Digital and Information Officer, to discuss why CIOs must think like HR leaders when considering Agentic AI. Selected Reading US company with access to biggest telecom firms uncovers breach by nation-state hackers (Reuters) Huge Microsoft outage hit 365, Xbox, and beyond — deployment of fix for Azure breakdown rolled out (Tom's Hardware) Malicious NPM packages fetch infostealer for Windows, Linux, macOS (Bleeping Computer) Canada says hacktivists breached water and energy facilities (Bleeping Computer) New physical attacks are quickly diluting secure enclave defenses from Nvidia, AMD, and Intel (Ars Technica) U.S. agencies back banning top-selling home routers on security grounds (The Washington Post) Cloud Atlas hackers target Russian agriculture sector ahead of industry forum (The Record) Revealed: Israel demanded Google and Amazon use secret ‘wink' to sidestep legal orders (The Guardian) FCC adopts new rule targeting robocalls (The Record) Denmark to tackle deepfakes by giving people copyright to their own features (The Guardian) Share your feedback. What do you think about CyberWire Daily? Please take a few minutes to share your thoughts with us by completing our brief listener survey. Thank you for helping us continue to improve our show. Want to hear your company in the show? N2K CyberWire helps you reach the industry's most influential leaders and operators, while building visibility, authority, and connectivity across the cybersecurity community. Learn more at sponsor.thecyberwire.com. The CyberWire is a production of N2K Networks, your source for strategic workforce intelligence. © N2K Networks, Inc. Learn more about your ad choices. Visit megaphone.fm/adchoices

    SANS Internet Stormcenter Daily Network/Cyber Security and Information Security Stormcast
    SANS Stormcast Thursday, October 30th, 2025: Memory Only Filesystems Forensics; Azure Outage; docker-compose patch

    SANS Internet Stormcenter Daily Network/Cyber Security and Information Security Stormcast

    Play Episode Listen Later Oct 30, 2025 6:07


    How to Collect Memory-Only Filesystems on Linux Systems Getting forensically sound copies of memory-only file systems on Linux can be tricky, as tools like dd do not work. https://isc.sans.edu/diary/How%20to%20collect%20memory-only%20filesystems%20on%20Linux%20systems/32432 Microsoft Azure Front Door Outage Today, Microsoft s Azure Front Door service failed, leading to users not being able to authenticate to various Azure-related services. https://azure.status.microsoft/en-us/status Docker-Compose Vulnerability A vulnerability in docker-compose may be used to trick users into creating files outside the docker-compose directory https://github.com/docker/compose/security/advisories/GHSA-gv8h-7v7w-r22q

    Pixelated Playgrounds

    In this episode Josh and Bryan are talking about Pyre developed by Supergiant Games and released in 2017 for PC, Mac, Linux, and PlayStation 4. Pyre is considered by some to be Supergiant's most experimental and heartfelt title, a mystical mix of visual novel and ritualistic sport. From the creators of Bastion, Transistor, and Hades, Pyre stands apart for its boldness a “mournful revolution” where victory means saying goodbye to a beloved comrade, and every loss fuels the greater cause of rebellion. With lush art by Jen Zee, music and sound by Darren Korb and Ashley Barrett, and the powerful writing of Greg Kasavin, Pyre delivers a story of loss and revolution. Join us as we resurrect this lost episode of Pixelated Playgrounds to discuss literacy as rebellion, the beauty of bittersweet freedom, and why even in defeat, there's purpose in pressing onward. Show Notes:Gamedeveloper.com - How Supergiant Games aggressively prototyped its way into PyreDarren Korb going hard as usual (Never to Return, Supergiant In Concert)Three Word Reviews:Bryan - Rites, Remorse, RevolutionJosh - Single Player Sport

    BIT-BUY-BIT's podcast
    Too Soft To Fork? | THE BITCOIN BRIEF 68

    BIT-BUY-BIT's podcast

    Play Episode Listen Later Oct 30, 2025 69:21 Transcription Available


    Max and Q cover the latest happenings in the world of Bitcoin, privacy and much more. NEWSSoft fork proposalAlby attackSolo Miner wins a blockBitKey collaborative custoday improvement BIPLugano StreamWoS Spark privacy concernsUPDATES/RELEASESTrezor releaseLedger releaseArkade betaCake v5.5.0 + v5.5.1Bull by Bull BitcoinBitcoin for SignalSatGo integrates Spark Peach BTCPay PluginStack Duo v1.3.0RoninDojo v2.4.0EducationPassport guideAnd anotherCupcake deep diveSeth Ark articleArk explainer by NeilVALUE FOR VALUEThanks for listening you Ungovernable Misfits, we appreciate your continued support and hope you enjoy the shows.You can support this episode using your time, talent or treasure.TIME:- create fountain clips for the show- create a meetup- help boost the signal on social mediaTALENT:- create ungovernable misfit inspired art, animation or music- design or implement some software that can make the podcast better- use whatever talents you have to make a contribution to the show!TREASURE:- BOOST IT OR STREAM SATS on the Podcasting 2.0 apps @ https://podcastapps.com- DONATE via Monero @ https://xmrchat.com/ugmf- BUY SOME STICKERS @ https://www.ungovernablemisfits.com/shop/FOUNDATIONhttps://foundation.xyz/ungovernableFoundation builds Bitcoin-centric tools that empower you to reclaim your digital sovereignty.As a sovereign computing company, Foundation is the antithesis of today's tech conglomerates. Returning to cypherpunk principles, they build open source technology that “can't be evil”.Thank you Foundation Devices for sponsoring the show!Use code: Ungovernable for $10 off of your purchaseCAKE WALLEThttps://cakewallet.comCake Wallet is an open-source, non-custodial wallet available on Android, iOS, macOS, and Linux.Features:- Built-in Exchange: Swap easily between Bitcoin and Monero.- User-Friendly: Simple interface for all users.Monero Users:- Batch Transactions: Send multiple payments at once.- Faster Syncing: Optimized syncing via specified restore heights- Proxy Support: Enhance privacy with proxy node options.Bitcoin Users:- Coin Control: Manage your transactions effectively.- Silent Payments: Static bitcoin addresses- Batch Transactions: Streamline your payment process.Thank you Cake Wallet for sponsoring the show!MYNYMBOXhttps://mynymbox.netYour go-to for anonymous server hosting solutions, featuring: virtual private & dedicated servers, domain registration and DNS parking. We don't require any of your personal information, and you can purchase using Bitcoin, Lightning, Monero and many other cryptos.Explore benefits such as No KYC, complete privacy & security, and human support.(00:00:41) Welcome, show format, and brief housekeeping(00:05:19) UK weather banter and setting the scene(00:05:22) Events and product updates: Bitfest, Envoy 2.10, Passport audit(00:08:06) BIT-444 proposal to restrict arbitrary data on Bitcoin(00:12:03) Critiques: miniscript breakage, Peter Todd demo, and soft vs hard fork risk(00:18:26) Mining politics, hash power, and potential chain splits(00:18:33) Security incident: Alby password reset spam and email exposure(00:20:45) Feel-good story: solo miner finds a block via Public Pool on Umbrel(00:23:05) New BIP: Chaincode Delegation for private collaborative multisig(00:28:08) Conference notes and a privacy PSA on Spark implementations(00:32:28) Boosts and community feedback: swaps, Moon wallet UX, and Boltz reliance(00:37:09) Q&A: consolidating UTXOs, PayJoin, Whirlpool, and Robosats flows(00:42:11) Q&A: Running a self-hosted AlbyHub LDK node—backup and privacy(00:46:12) Hardware wallet releases: Trezor Safe 7 and Ledger Nano Gen 5(00:52:35) Multisig device choices and inheritance practicality(00:52:38) ARC in the wild: Arcade.money public beta hands-on(00:53:55) Cake Wallet 5.5 updates and hardware support(00:54:22) Bull Bitcoin releases Bull Wallet: features and roadmap(00:58:12) eCash in Signal fork: UX gains vs custodial trade-offs(01:02:30) Spark adoption notes: SatGo and Wallet of Satoshi privacy caveats(01:03:31) Peach plugin for BTCPay and Stack Duo's Frost multisig progress(01:05:06) RoninDojo 2.4 and Fulcrum 2.0 stability improvements(01:06:03) Education picks and closing logistics(01:07:29) Stats corner addendum by John: RoboSats, Whirlpool, Bisq, and more

    Como lo pienso lo digo
    Fastmail ya tiene versión de escritorio #Apps

    Como lo pienso lo digo

    Play Episode Listen Later Oct 30, 2025 7:03


    FastMail ya tiene versión de escritorio para Linux, Windows y macOS, con lo cual si eres usuario del servicio ahora vas a tener tu bandeja de entrada directo en tu ordenador, sin tener que abrir un navegador web. Te invito a debatir sobre este tema en el Foro de la Comunidad de TuPodcast https://foro.tupodcast.com Y otras formas de contacto las encuentran en: https://ernestoacosta.me/contacto.html Todos los medios donde publico contenido los encuentras en: https://ernestoacosta.me/ Si quieres comprar productos de RØDE, este es mi link de afiliados: https://brandstore.rode.com/?sca_ref=5066237.YwvTR4eCu1

    Atareao con Linux
    ATA 740 GHOSTTY: El Terminal ULTRA-RAPIDO con GPU que DEBES Probar en Linux y macOS

    Atareao con Linux

    Play Episode Listen Later Oct 30, 2025 20:55


    En este episodio, exploramos a fondo Ghostty, el emulador de terminal que está generando entusiasmo en la comunidad Linux y de código abierto. Si buscas una terminal que combine velocidad y funcionalidad sin compromisos, Ghostty es la respuesta.Te explico cómo Ghostty logra ser ULTRA-RÁPIDO utilizando la aceleración por GPU y por qué su diseño nativo lo hace sentir tan integrado en tu escritorio Linux (GTK4 en el caso de Linux).Puntos clave que cubriremos:La importancia del Renderizado por GPU y cómo mejora el rendimiento en Linux.Características avanzadas de productividad: Gestión nativa de pestañas, ventanas y paneles (splits).El innovador Protocolo Gráfico Kitty, que te permite ver imágenes directamente en la terminal.Cómo la configuración sencilla y el soporte para ligaduras y temas automáticos impulsan tu flujo de trabajo.Ghostty es una alternativa sólida y moderna a Kitty o Alacritty, ofreciendo velocidad y una serie de características avanzadas que lo posicionan como uno de los emuladores de terminal del futuro.Más información y enlaces en las notas del episodio

    The Linux Link Tech Show Itunes Feed
    The Linux Link Tech Show Episode 1119

    The Linux Link Tech Show Itunes Feed

    Play Episode Listen Later Oct 30, 2025


    Joel and the test.

    Security Now (MP3)
    SN 1049: DNS Cache Poisoning Returns - Ransomware Payments Plummet

    Security Now (MP3)

    Play Episode Listen Later Oct 29, 2025 191:25 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    All TWiT.tv Shows (MP3)
    Security Now 1049: DNS Cache Poisoning Returns

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later Oct 29, 2025 191:25 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    Security Now (Video HD)
    SN 1049: DNS Cache Poisoning Returns - Ransomware Payments Plummet

    Security Now (Video HD)

    Play Episode Listen Later Oct 29, 2025 175:51 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    Security Now (Video HI)
    SN 1049: DNS Cache Poisoning Returns - Ransomware Payments Plummet

    Security Now (Video HI)

    Play Episode Listen Later Oct 29, 2025 175:51 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    Radio Leo (Audio)
    Security Now 1049: DNS Cache Poisoning Returns

    Radio Leo (Audio)

    Play Episode Listen Later Oct 29, 2025 176:22 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    Security Now (Video LO)
    SN 1049: DNS Cache Poisoning Returns - Ransomware Payments Plummet

    Security Now (Video LO)

    Play Episode Listen Later Oct 29, 2025 175:51 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    Ask Noah Show
    Episode 464: Ask Noah Show 464 | Ubuntu Summit 25.10

    Ask Noah Show

    Play Episode Listen Later Oct 29, 2025 54:43


    This week Sebastian Trzcinski-Clément from Canonical joins Noah and Steve to talk about Ubuntu Summit 25.10. -- During The Show -- 00:50 Intro Steve's TV Falling asleep to TV LG OLED 55A1 06:05 Sebastian Trzcinski-Clément What was out there Ubuntu CDs Working for Google Promotion Committees Putting on a Conference Abdula Developer Library Google to Canonical Ubuntu Summit Dreamworks MoonRay Microsoft & WSL Thinking Fast and Slow Reach out to people The Canonical Office 39:32 News Wire Peazip 10.7 - peazip.github.io (https://peazip.github.io/changelog.html) Calibre 8.13 - calibre-ebook.com (https://calibre-ebook.com/whats-new) Squid Proxy 7.2 - github.com (https://github.com/squid-cache/squid/releases) Less 685 - greenwoodsoftware.com (https://www.greenwoodsoftware.com/less) Digikam 8.8 - digikam.org (https://www.digikam.org/news/2025-10-19-8.8.0_release_announcement) Gnome 49.1 - gnome.org (https://discourse.gnome.org/t/gnome-49-1-released/31977) Thunderbird 144 - thunderbird.net (https://www.thunderbird.net/en-US/thunderbird/144.0/releasenotes) Firefox 144 - firefox.com (https://www.firefox.com/en-US/firefox/144.0/releasenotes) Zorin OS 18 - zorin.com (https://blog.zorin.com/2025/10/14/zorin-os-18-has-arrived) Tails 7.1 - torproject.org (https://blog.torproject.org/new-release-tails-7_1) Q3 Malware Index - eweek.com (https://www.eweek.com/news/open-source-malware-2025) LinkPro Root Kit - thehackernews.com (https://thehackernews.com/2025/10/linkpro-linux-rootkit-uses-ebpf-to-hide.html) Operation Zero Disco - cyberpress.org (https://cyberpress.org/cisco-snmp-vulnerability-exploited) F5 Hacked - thehackernews.com (https://thehackernews.com/2025/10/f5-breach-exposes-big-ip-source-code.html) EdenSpark - gamingonlinux.com (https://www.gamingonlinux.com/2025/10/gaijin-announced-edenspark-an-open-source-ai-assisted-platform-for-making-games) Project CodeGuard - siliconangle.com (https://siliconangle.com/2025/10/16/cisco-unveils-project-codeguard-open-source-framework-secure-ai-written-software) Coral in SL2610 SoCs - cnx-software.com (https://www.cnx-software.com/2025/10/17/google-open-source-coral-npu-synaptics-sl2610-edge-ai-socs) AI and Cerebral Palsy - globenewswire.com (https://www.globenewswire.com/news-release/2025/10/16/3168076/0/en/Open-Source-AI-Tool-by-Yandex-Detects-Signs-of-Infant-Cerebral-Palsy-With-Over-90-Accuracy.html) Mysql 9.5.0 - mysql.com (https://dev.mysql.com/doc/relnotes/mysql/9.5/en/news-9-5-0.html) SuperTuxKart 1.5 - supertuxkart.net (https://supertuxkart.net/Main_Page.html) KDE Plasma 6.5 - kde.org (https://kde.org/announcements/plasma/6/6.5.0) Fedora 43 - phoronix.com (https://www.phoronix.com/news/Fedora-43-Release-Day) Zorin saw 300,000 Downloads - reddit.com (https://www.reddit.com/r/linux/comments/1oih2hv/zorin_os_18_has_already_hit_over_300000_downloads) Qilin Malware - trendmicro.com (https://www.trendmicro.com/en_us/research/25/j/agenda-ransomware-deploys-linux-variant-on-windows-systems.html) Lightricks LTX-2 - prnewswire.com (https://www.prnewswire.com/news-releases/lightricks-releases-ltx-2-the-first-complete-open-source-ai-video-foundation-model-302593012.html) MiniMax-M2 - venturebeat.com (https://venturebeat.com/ai/minimax-m2-is-the-new-king-of-open-source-llms-especially-for-agentic-tool) IBM Mellea - app.daily.dev (https://app.daily.dev/posts/ibm-s-mellea-tackles-open-source-ai-s-hidden-weakness-xqmwbepaq) 90% of Games Run on Linux - tomshardware.com (https://www.tomshardware.com/software/linux/nearly-90-percent-of-windows-games-now-run-on-linux-latest-data-shows-as-windows-10-dies-gaming-on-linux-is-more-viable-than-ever) boilingsteam.com (https://boilingsteam.com/windows-games-compatibility-on-linux-is-at-a-all-time-high) 42:55 F5 Breach Claims Nation State Level Attack Effect of Breach Disclosure laws If you can get the info off your system, do so F5 Competitors MetalLB (https://github.com/metallb/metallb) HA Proxy (https://www.haproxy.org/) theregister.com (https://www.theregister.com/2025/10/15/highly_sophisticated_government_hackers_breached/) 51:05 Proxmox Backup Server DHCP? - David Tiny From the community Proxmox Virtual Enviornment Proxmox Backup Server Use the tailscale IP or DNS Name Proxmox docs (https://forum.proxmox.com/threads/changing-network-to-manage-backups.104771/) -- The Extra Credit Section -- For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard! This Episode's Podcast Dashboard (http://podcast.asknoahshow.com/464) Phone Systems for Ask Noah provided by Voxtelesys (http://www.voxtelesys.com/asknoah) Join us in our dedicated chatroom #GeekLab:linuxdelta.com on Matrix (https://element.linuxdelta.com/#/room/#geeklab:linuxdelta.com) -- Stay In Touch -- Find all the resources for this show on the Ask Noah Dashboard Ask Noah Dashboard (http://www.asknoahshow.com) Need more help than a radio show can offer? Altispeed provides commercial IT services and they're excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show! Altispeed Technologies (http://www.altispeed.com/) Contact Noah live [at] asknoahshow.com -- Twitter -- Noah - Kernellinux (https://twitter.com/kernellinux) Ask Noah Show (https://twitter.com/asknoahshow) Altispeed Technologies (https://twitter.com/altispeed) Special Guest: Sebastian Trzcinski-Clément.

    All TWiT.tv Shows (Video LO)
    Security Now 1049: DNS Cache Poisoning Returns

    All TWiT.tv Shows (Video LO)

    Play Episode Listen Later Oct 29, 2025 175:51 Transcription Available


    Just when you thought DNS cache poisoning was a thing of the past, Steve and Leo reveal why this 17-year-old bug is making a dramatic comeback—and why most DNS resolvers still can't manage high-quality random numbers after all this time. The unsuspected sucking power of a Linux-based robot vacuum. Russia to follow China's vulnerability reporting laws. A pair of Scattered Spider UK teen hackers arrested. Facebook,Instagram and TikTok violating the EU's DSA. Microsoft Teams bringing user WiFi tracking bypolicy. You backed up. That's great. Did you test that backup? Coveware reports all-time lowransomware payment rate. Ransomware negotiator reports how the bad guys get in. Lots of listener thoughts and feedback about NIST passwords. And against all reason and begging credulity, it seems we still haven't managed to put high-quality random number generators into our DNS resolvers. Show Notes - https://www.grc.com/sn/SN-1049-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to Security Now at https://twit.tv/shows/security-now. You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: hoxhunt.com/securitynow zapier.com/securitynow 1password.com/securitynow veeam.com zscaler.com/security

    The Plex
    The Plex EP451 - Canada vs Trump, Portland Frog War Zone, Prosecuting Enemies, The Ballroom

    The Plex

    Play Episode Listen Later Oct 29, 2025


    Check Out Echoplex Radio iTunes, Stitcher, Google, iHeart, Spotify, RSS, Odysee, Twitch, YouTubeSupport This Project On Patreon Check Out Our Swag Shop Join Our Discord Server Check out our Linux powered studio!‍ ‍Host: Producer DaveDocket: https://bit.ly/10-26-2025-docMembers ShowFourthwallPatreon

    Hacker Public Radio
    HPR4498: Living the Tux Life Episode 1

    Hacker Public Radio

    Play Episode Listen Later Oct 29, 2025


    This show has been flagged as Clean by the host. This a mini podcast series to track Al running Linux as daily driver. Things I mention in the show: Dual Boot Diaries Provide feedback on this episode.

    Linux for the Layman: the Joy of Computing.
    Episode 46 - cd and select aliases

    Linux for the Layman: the Joy of Computing.

    Play Episode Listen Later Oct 29, 2025 13:03


    We go through the 'cd' command, its options, and some useful aliases. We also cover some of the "universal" options for most Linux commands.

    Late Night Linux All Episodes
    Linux Matters 67: Panache, for men

    Late Night Linux All Episodes

    Play Episode Listen Later Oct 28, 2025 29:22


    In this episode: Alan slipped down the nix rabbit-hole. Martin created Glyph Party, for adding panache to your terminal applications. Mark has lost all his free time to the latest Rimworld DLC, Odyssey.   You can send your feedback via show@linuxmatters.sh or the Contact Form. If you'd like to hang out with other listeners and... Read More

    LINUX Unplugged
    638: The Distro Everyone Should Copy

    LINUX Unplugged

    Play Episode Listen Later Oct 27, 2025 64:17 Transcription Available


    Fedora 43 arrives with polish, new spins, and a smarter installer; and one decision the rest of the Linux world should pay attention to.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. CrowdHealth: This open enrollment, take your power back. Join CrowdHealth to get started today for $99 for your first three months using code UNPLUGGED.Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:

    Late Night Linux
    Late Night Linux – Episode 357

    Late Night Linux

    Play Episode Listen Later Oct 27, 2025 21:59


    Intel is contributing less to open source and it could easily backfire, Qualcomm buys Arduino and we have concerns, KDE turns 29, Germans are doing excellent work moving towards Linux, and good news for those running Linux on an Amiga.   News Intel rethinking how it contributes to open source community Intel's Open-Source Strategy Is... Read More

    Nintendo Switch Craft
    Linux, the Premiere Gaming OS

    Nintendo Switch Craft

    Play Episode Listen Later Oct 26, 2025 104:37


    Subscribe to the panel - ⁨@FanTheDeck⁩ ⁨@RetroGameCorps⁩ ⁨@ThePhawx⁩ ⁨@TechDweeb⁩ Summary generated by RiversideIn this episode of the Nerd Nest Podcast, host Bill Fairchild and his crew discuss a variety of gaming topics, including the new Steam Personal Calendar feature, their personal gaming calendars, and recommendations for upcoming games. They delve into the mechanics and fun of the game Ball X Pit, share experiences with the retro-inspired game Wizardom, and reflect on the nostalgia of collecting older games. The conversation also touches on the impact of game launchers on the gaming community. The hosts delve into various gaming topics, including the dynamics of new games like Ball Pit and the future of Linux in gaming. They speculate on the next Xbox's pricing and features, discuss Nintendo's potential Switch 2 Lite, and explore the AYN Thor's impact on the handheld market. The discussion also touches on the future of Steam on Android and expectations for the Steam Deck 2, highlighting the evolving landscape of gaming technology.

    All TWiT.tv Shows (MP3)
    Untitled Linux Show 226: Ubuntu Friendly Fire

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later Oct 26, 2025 104:27 Transcription Available


    The Xubuntu torrent was hijacked! There's a performance shootout between Windows and Linux, Austria is going its own way, and Canonical inflicts damage on themselves. Then, Asahi Linux is still rolling, Digikam gains some Wayland features, and Mobian is coming for your phones! For tips we have easyssh, barrier for software KVM, the difference between echo and printf, and a quick intro to an Open Source game, Cataclysm: Dark Days Ahead! You can find the show notes at http://bit.ly/4qorX5b and enjoy! Host: Jonathan Bennett Co-Hosts: Jeff Massie, Rob Campbell, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.