Podcasts about Open source

a broad concept article for open-source

  • 4,354PODCASTS
  • 19,528EPISODES
  • 47mAVG DURATION
  • 5DAILY NEW EPISODES
  • Jun 3, 2025LATEST

POPULARITY

20172018201920202021202220232024

Categories




    Best podcasts about Open source

    Show all podcasts related to open source

    Latest podcast episodes about Open source

    WordPress Plugins from A to Z
    From Plugins to Principles: Robert Devore’s Vision for Open-Source and AI in WordPress: Interview 69

    WordPress Plugins from A to Z

    Play Episode Listen Later Jun 3, 2025 56:02 Transcription Available


    A WPProAtoZHost.com Company.... In today's show, we're diving deep into the dynamic world of WordPress with a seasoned developer who's not afraid to shake things up. Robert Devore, the founder of Plugin Pal and a core contributor to WordPress and WooCommerce, joins us to share his 20+ years of expertise in plugin development, security research, and open-source innovation. We'll explore his journey from cannabis-related plugins to AI-powered tools like Plugin Pal, his controversial takes on WordPress governance, and his vision for decentralized publishing with Stattic. From rapid plugin releases to sparking debates about leadership and community contributions, this episode is brimming with insights for plugin enthusiasts, developers, and WordPress community members alike. The post From Plugins to Principles: Robert Devore's Vision for Open-Source and AI in WordPress: Interview 69 appeared first on WordPress Plugins A to Z.

    Let's Talk AI
    #211 - Claude Voice, Flux Kontext, wrong RL research?

    Let's Talk AI

    Play Episode Listen Later Jun 3, 2025 98:06 Transcription Available


    Our 211th episode with a summary and discussion of last week's big AI news! Recorded on 05/31/2025 Hosted by Andrey Kurenkov and Jeremie Harris. Feel free to email us your questions and feedback at contact@lastweekinai.com and/or hello@gladstone.ai Read out our text newsletter and comment on the podcast at https://lastweekin.ai/. Join our Discord here! https://discord.gg/nTyezGSKwP In this episode: Recent AI podcast covers significant AI news: startups, new tools, applications, investments in hardware, and research advancements. Discussions include the introduction of various new tools and applications such as Flux's new image generating models and Perplexity's new spreadsheet and dashboard functionalities. A notable segment focuses on OpenAI's partnership with the UAE and discussions on potential legislation aiming to prevent states from regulating AI for a decade. Concerns around model behaviors and safety are discussed, highlighting incidents like Claude Opus 4's blackmail attempt and Palisade Research's tests showing AI models bypassing shutdown commands. Timestamps + Links: (00:00:10) Intro / Banter (00:01:39) News Preview (00:02:50) Response to Listener Comments Tools & Apps (00:07:10) Anthropic launches a voice mode for Claude (00:10:35) Black Forest Labs' Kontext AI models can edit pics as well as generate them (00:15:30) Perplexity's new tool can generate spreadsheets, dashboards, and more (00:18:43) xAI to pay Telegram $300M to integrate Grok into the chat app (00:22:42) Opera's new AI browser promises to write code while you sleep (00:24:17) Google Photos debuts redesigned editor with new AI tools Applications & Business (00:25:13) Top Chinese memory maker expected to abandon DDR4 manufacturing at the behest of Beijing (00:30:04) Oracle to Buy $40 Billion Worth of Nvidia Chips for First Stargate Data Center (00:31:47) UAE makes ChatGPT Plus subscription free for all residents as part of deal with OpenAI (00:35:34) NVIDIA Corporation (NVDA) to Launch Cheaper Blackwell AI Chip for China, Says Report (00:38:39) The New York Times and Amazon ink AI licensing deal Projects & Open Source (00:41:11) DeepSeek's distilled new R1 AI model can run on a single GPU (00:45:19) Google Unveils SignGemma, an AI Model That Can Translate Sign Language Into Spoken Text (00:47:08) Open-sourcing circuit tracing tools (00:49:42) Hugging Face unveils two new humanoid robots Research & Advancements (00:52:33) PANGU PRO MOE: MIXTURE OF GROUPED EXPERTS FOR EFFICIENT SPARSITY (00:58:55) DataRater: Meta-Learned Dataset Curation (01:05:05) Incorrect Baseline Evaluations Call into Question Recent LLM-RL Claims  (01:10:17) Maximizing Confidence Alone Improves Reasoning (01:11:00) Guided by Gut: Efficient Test-Time Scaling with Reinforced Intrinsic Confidence (01:11:44) One RL to See Them All (01:15:05) Efficient Reinforcement Finetuning via Adaptive Curriculum Learning Policy & Safety (01:17:58) Trump's 'Big Beautiful Bill' could ban states from regulating AI for a decade (01:24:31) Researchers claim ChatGPT o3 bypassed shutdown in controlled test (01:30:10) Anthropic's new AI model turns to blackmail when engineers try to take it offline (01:31:09) Anthropic Faces Backlash As Claude 4 Opus Can Autonomously Alert Authorities (01:35:37) Claude helps users make bioweapons (01:35:49) The Claude 4 System Card is a Wild Read  

    Roaring Elephant
    Episode 456 – Terraform never was enough…

    Roaring Elephant

    Play Episode Listen Later Jun 3, 2025 19:40


    Continuing our analysis on Opensource enterprises, we continue the Hashicorp example and discuss how a great idea just isn't enough... Please use the Contact Form on this blog or our twitter feed to send us your questions, or to suggest future episode topics you would like us to cover.

    Python Bytes
    #434 Most of OpenAI's tech stack runs on Python

    Python Bytes

    Play Episode Listen Later Jun 2, 2025 29:01 Transcription Available


    Topics covered in this episode: Making PyPI's test suite 81% faster People aren't talking enough about how most of OpenAI's tech stack runs on Python PyCon Talks on YouTube Optimizing Python Import Performance Extras Joke Watch on YouTube About the show Sponsored by Digital Ocean: pythonbytes.fm/digitalocean-gen-ai Use code DO4BYTES and get $200 in free credit Connect with the hosts Michael: @mkennedy@fosstodon.org / @mkennedy.codes (bsky) Brian: @brianokken@fosstodon.org / @brianokken.bsky.social Show: @pythonbytes@fosstodon.org / @pythonbytes.fm (bsky) Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Brian #1: Making PyPI's test suite 81% faster Alexis Challande The PyPI backend is a project called Warehouse It's tested with pytest, and it's a large project, thousands of tests. Steps for speedup Parallelizing test execution with pytest-xdist 67% time reduction --numprocesses=auto allows for using all cores DB isolation - cool example of how to config postgress to give each test worker it's on db They used pytest-sugar to help with visualization, as xdist defaults to quite terse output Use Python 3.12's sys.monitoring to speed up coverage instrumentation 53% time reduction Nice example of using COVERAGE_CORE=sysmon Optimize test discovery Always use testpaths Sped up collection time. 66% reduction (collection was 10% of time) Not a huge savings, but it's 1 line of config Eliminate unnecessary imports Use python -X importtime Examine dependencies not used in testing. Their example: ddtrace A tool they use in production, but it also has a couple pytest plugins included Those plugins caused ddtrace to get imported Using -p:no ddtrace turns off the plugin bits Notes from Brian: I often get questions about if pytest is useful for large projects. Short answer: Yes! Longer answer: But you'll probably want to speed it up I need to extend this article with a general purpose “speeding up pytest” post or series. -p:no can also be used to turn off any plugin, even builtin ones. Examples include nice to have developer focused pytest plugins that may not be necessary in CI CI reporting plugins that aren't needed by devs running tests locally Michael #2: People aren't talking enough about how most of OpenAI's tech stack runs on Python Original article: Building, launching, and scaling ChatGPT Images Tech stack: The technology choices behind the product are surprisingly simple; dare I say, pragmatic! Python: most of the product's code is written in this language. FastAPI: the Python framework used for building APIs quickly, using standard Python type hints. As the name suggests, FastAPI's strength is that it takes less effort to create functional, production-ready APIs to be consumed by other services. C: for parts of the code that need to be highly optimized, the team uses the lower-level C programming language Temporal: used for asynchronous workflows and operations inside OpenAI. Temporal is a neat workflow solution that makes multi-step workflows reliable even when individual steps crash, without much effort by developers. It's particularly useful for longer-running workflows like image generation at scale Michael #3: PyCon Talks on YouTube Some talks that jumped out to me: Keynote by Cory Doctorow 503 days working full-time on FOSS: lessons learned Going From Notebooks to Scalable Systems And my Talk Python conversation around it. (edited episode pending) Unlearning SQL The Most Bizarre Software Bugs in History The PyArrow revolution in Pandas And my Talk Python episode about it. What they don't tell you about building a JIT compiler for CPython And my Talk Python conversation around it (edited episode pending) Design Pressure: The Invisible Hand That Shapes Your Code Marimo: A Notebook that "Compiles" Python for Reproducibility and Reusability And my Talk Python episode about it. GPU Programming in Pure Python And my Talk Python conversation around it (edited episode pending) Scaling the Mountain: A Framework for Tackling Large-Scale Tech Debt Brian #4: Optimizing Python Import Performance Mostly pay attention to #'s 1-3 This is related to speeding up a test suite, speeding up necessary imports. Finding what's slow Use python -X importtime

    Epicenter - Learn about Blockchain, Ethereum, Bitcoin and Distributed Technologies
    ETHPrague: ETH Renaissance - Austin Griffith, Brenda Loya, Joseph Schweitzer, Marek Olszewski

    Epicenter - Learn about Blockchain, Ethereum, Bitcoin and Distributed Technologies

    Play Episode Listen Later Jun 2, 2025 60:25


    After a decade of existence, Ethereum has gone a long way from its initial whitepaper, yet many efforts in scaling and finding product-market-fit have been severely criticized for falling short of their promise. However, despite numerous other ‘Ethereum killers' being launched over the years, none has managed to attract so many developers and liquidity while sticking true to ethos that (once) powered and united this industry. This year's ETHPrague plans to confront exactly these existential challenges and steward community culture towards addressing outside criticism and external reality checks. Ethereum's development, while adapting to market pressures, it always aimed to stick true to its core values in order to remain a technological bedrock for the future of humanity.Topics covered in this episode:The vision for ETH PragueTakeaways from main sessionsHigh-level overview of ETH PragueThe resurgence of PolkadotEuropean crypto summer eventsThe general state of the Ethereum ecosystemCelo's transition to L2L2 liquidity fragmentationChoosing the right L2 to buildImproving hackathonsLightning roundFinal wordsEpisode links:Austin Griffith on XMarek Olszewski on XBrenda Loya on XJoseph Schweitzer on XBuidlGuidl DAO on XCelo on XTellor on XSponsors:Gnosis: Gnosis builds decentralized infrastructure for the Ethereum ecosystem, since 2015. This year marks the launch of Gnosis Pay— the world's first Decentralized Payment Network. Get started today at - gnosis.ioChorus One: one of the largest node operators worldwide, trusted by 175,000+ accounts across more than 60 networks, Chorus One combines institutional-grade security with the highest yields at - chorus.oneThis episode is hosted by Friederike Ernst.

    LINUX Unplugged
    617: The Disposable Server

    LINUX Unplugged

    Play Episode Listen Later Jun 1, 2025 48:52 Transcription Available


    Spin up, share, nuke. We each build a throwaway server, and then rate each others' setups.Sponsored By:Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 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. Support LINUX UnpluggedLinks:💥 Gets Sats Quick and Easy with Strike📻 LINUX Unplugged on Fountain.FMTUI ChallengeTUI Challenge ScorecardSelf-Hosted 150: The Last One — Before hitting the road, we test the limits of local-first file sharing, debate what self-hosting really is, and share our all-time favorite apps.Pick: ws4kp — A web-based WeatherStar 4000Pick: ytdl-sub — Lightweight tool to automate downloading and metadata generation with yt-dlp.

    All TWiT.tv Shows (MP3)
    Untitled Linux Show 205: RHEL: Spicy Edition

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later Jun 1, 2025 73:44 Transcription Available


    Ubuntu 20.04 is retiring, Ubuntu Monthly is here, and Fedora has an H.264 problem. OBS betas 31.1, Ambian ships 25.5, and AlmaLinux ships the spicy 10.0 RHEL alternative. For tips we have pee for splitting pipes, pw-cli for destroying Pipewire objects, and disown for setting background processes free. Grab the show notes at https://bit.ly/3SsqFX5 and enjoy! Host: Jonathan Bennett Co-Hosts: Ken McDonald and Rob Campbell 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.

    This Week in Linux
    313: Linux 6.15, NixOS, AlmaLinux OS 10, Is Ubuntu going Rolling? & more Linux news

    This Week in Linux

    Play Episode Listen Later May 31, 2025 27:57


    video: https://youtu.be/N47e3wcQYJ4 Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a brand new release of the Linux kernel itself. We have some new distro releases from AlmaLinux, NixOS, and more. Plus there's some interesting news from Ubuntu that has people asking whether or not Ubuntu is switching to a rolling release model. We'll answer that question here on this episode of TWIL and we'll also check out some awesome news about how SteamOS absolutely crushes Windows on the Legion Go S. All of this and more on This Week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and Open Source world. Now let's jump right into Your Source for Linux GNews! Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/efa5cdd3-3793-47dd-9f6c-96e050a3d877.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:42 Linux 6.15 Released 05:46 Ubuntu Gets Monthly Snapshot Testing Releases 09:28 NixOS 25.05 Released 12:25 Sandfly Security, agentless Linux security [ad] 14:14 AlmaLinux OS 10 Released 17:10 SteamOS Massively Beats Windows on the Legion Go S 21:31 NVIDIA Stable Driver 575.57.08 Released for Linux 24:46 Armbian 25.5 Released 26:54 Outro Links: Linux 6.15 Released https://lore.kernel.org/lkml/CAHk-=wiLRW8DN8-4jmeCZH0OpO8skXOC5e6FwMfsPwGMpQYmVQ@mail.gmail.com/T/#u (https://lore.kernel.org/lkml/CAHk-=wiLRW8DN8-4jmeCZH0OpO8skXOC5e6FwMfsPwGMpQYmVQ@mail.gmail.com/T/#u) https://kernelnewbies.org/Linux_6.15 (https://kernelnewbies.org/Linux_6.15) Ubuntu Gets Monthly Snapshot Testing Releases https://discourse.ubuntu.com/t/supercharging-ubuntu-releases-monthly-snapshots-automation/61876 (https://discourse.ubuntu.com/t/supercharging-ubuntu-releases-monthly-snapshots-automation/61876) NixOS 25.05 Released https://nixos.org/blog/announcements/2025/nixos-2505/ (https://nixos.org/blog/announcements/2025/nixos-2505/) https://nixos.org/manual/nixos/stable/release-notes#sec-release-25.05 (https://nixos.org/manual/nixos/stable/release-notes#sec-release-25.05) https://nixos.org/manual/nixpkgs/stable/release-notes#sec-nixpkgs-release-25.05 (https://nixos.org/manual/nixpkgs/stable/release-notes#sec-nixpkgs-release-25.05) AlmaLinux OS 10 Released https://almalinux.org/blog/2025-05-27-welcoming-almalinux-10/ (https://almalinux.org/blog/2025-05-27-welcoming-almalinux-10/) SteamOS Massively Beats Windows on the Legion Go S https://www.youtube.com/watch?v=CJXp3UYj50Q (https://www.youtube.com/watch?v=CJXp3UYj50Q) https://www.windowscentral.com/gaming/pc-gaming/in-an-embarrassment-for-microsoft-steamos-seems-to-destroy-windows-11-on-gaming-performance-and-battery-life-as-well-as-usability (https://www.windowscentral.com/gaming/pc-gaming/in-an-embarrassment-for-microsoft-steamos-seems-to-destroy-windows-11-on-gaming-performance-and-battery-life-as-well-as-usability) NVIDIA Stable Driver 575.57.08 Released for Linux https://www.nvidia.com/en-us/drivers/details/245548/ (https://www.nvidia.com/en-us/drivers/details/245548/) https://www.phoronix.com/news/NVIDIA-575.57.08-Linux (https://www.phoronix.com/news/NVIDIA-575.57.08-Linux) https://9to5linux.com/nvidia-575-linux-graphics-driver-released-with-support-for-nvidia-smooth-motion (https://9to5linux.com/nvidia-575-linux-graphics-driver-released-with-support-for-nvidia-smooth-motion) https://www.gamingonlinux.com/2025/05/nvidia-stable-driver-575-57-08-released-for-linux/ (https://www.gamingonlinux.com/2025/05/nvidia-stable-driver-575-57-08-released-for-linux/) Armbian 25.5 Released https://www.armbian.com/newsflash/armbian-25-5/ (https://www.armbian.com/newsflash/armbian-25-5/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)

    ITSPmagazine | Technology. Cybersecurity. Society
    Why Global Community-Led Innovation Is Driving Real Application Security Progress | An OWASP AppSec Global 2025 Conversation with Starr Brown | On Location Coverage with Sean Martin and Marco Ciappelli

    ITSPmagazine | Technology. Cybersecurity. Society

    Play Episode Listen Later May 30, 2025 9:06


    In this On Location episode during OWASP AppSec Global 2025 in Barcelona, Starr Brown, Director of Open Source Projects and Programs at OWASP, unpacks the real engine behind the organization's impact: the projects and the people driving them forward.With over 130 active projects, OWASP continues to expand its open source contributions to improve software security across the board. While the OWASP Top 10 remains its most recognized initiative, Starr points out that it's just one among many. Other significant projects include the Application Security Verification Standard (ASVS), the Software Assurance Maturity Model (SAMM), and the increasingly popular security games like Cornucopia, which use gamification to bring security concepts into business conversations and development workflows.AI is playing an increasingly prominent role in OWASP's work. Starr highlights the GenAI Security Project as a focal point, encompassing tools and guidance for LLM use, agentic AI, red teaming, and more. The scale of community engagement is equally impressive: around 33,000 people are active on Slack, and hundreds contribute to individual initiatives, reflecting the organization's truly global and grassroots structure.Beyond tools and documentation, OWASP is influencing regulation and policy through initiatives like the AI Exchange and the Transparency Exchange. These projects connect with government entities and standards bodies such as the European Commission and CEN/CENELEC to help shape responsible governance frameworks around software, AI, and cybersecurity.Listeners also get a glimpse into what's ahead. From upcoming events in Washington, D.C., to the OWASP Community Room at DEF CON in Las Vegas, the goal is to keep fostering connections and hands-on engagement. These gatherings not only showcase flagship tools and frameworks but create space for open dialogue, prototyping, and collaboration—whether you're breaking things or building them.To get involved, Starr encourages exploring the OWASP Projects page and joining their Slack community. The conversation makes it clear: OWASP is not just a collection of tools—it's a living, breathing network of contributors shaping the future of secure software.GUEST: Starr Brown | Director of Open Source Projects and Programs at OWASP | https://www.linkedin.com/in/starr-brown-8837547/HOST: Sean Martin, Co-Founder at ITSPmagazine and Host of Redefining CyberSecurity Podcast | https://www.seanmartin.comSPONSORSManicode Security: https://itspm.ag/manicode-security-7q8iRESOURCESLearn more and catch more stories from OWASP AppSec Global 2025 Barcelona coverage: https://www.itspmagazine.com/owasp-global-appsec-barcelona-2025-application-security-event-coverage-in-catalunya-spainCatch all of our event coverage: https://www.itspmagazine.com/technology-and-cybersecurity-conference-coverageWant to tell your Brand Story Briefing as part of our event coverage? Learn More

    BSD Now
    613: DragonflyBSD 6.4.2

    BSD Now

    Play Episode Listen Later May 29, 2025 53:24


    Isolating Containers with ZFS and Linux Namespaces, DragonFly BSD 6.4.2, FreeBSD fans rally round zVault upstart, For Upcoming PF Tutorials, We Welcome Your Questions, Using ~/.ssh/authorized keys to decide what the incoming connection can do, PDF bruteforce tool to recover locked files, How and why typical (SaaS) pricing is too high for university departments, 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 Isolating Containers with ZFS and Linux Namespaces (https://klarasystems.com/articles/isolating-containers-with-zfs-and-linux-namespaces/?utm_source=BSD%20Now&utm_medium=Podcast) DragonFly BSD 6.4.2 (https://www.dragonflybsd.org/release64/) FreeBSD fans rally round zVault upstart (https://www.theregister.com/2025/05/12/second_preview_zvault/) News Roundup For Upcoming PF Tutorials, We Welcome Your Questions (https://bsdly.blogspot.com/2025/05/for-upcoming-pf-tutorials-we-welcome.html) Using ~/.ssh/authorized keys to decide what the incoming connection can do (https://dan.langille.org/2025/04/17/using-ssh-authorized-keys-to-decide-what-the-incoming-connection-can-do/) PDF bruteforce tool to recover locked files (https://dataswamp.org/~solene/2025-03-09-test-pdf-passwords.html) How and why typical (SaaS) pricing is too high for university departments (https://utcc.utoronto.ca/~cks/space/blog/tech/UniversityTypicalPricingTooHigh) 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 Nils - CFP (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/612/feedback/nils%20-%20CFP.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)

    ITSPmagazine | Technology. Cybersecurity. Society
    Turning AppSec into a Workflow, Not a Roadblock – Building Security Programs That Teams Actually Want to Use | An OWASP AppSec Global 2025 Conversation with Spyros Gasteratos | On Location Coverage with Sean Martin and Marco Ciappelli

    ITSPmagazine | Technology. Cybersecurity. Society

    Play Episode Listen Later May 29, 2025 17:28


    During the upcoming OWASP Global AppSec EU in Barcelona, Spyros Gasteratos, long-time OWASP contributor and co-founder of Smithy, to explore how automation, collaboration, and community resources are shaping the future of application security. Spyros shares the foundation of his talk at OWASP AppSec Global: building a DevSecOps program from scratch using existing community tools—blending technical guidance with a celebration of open-source achievements.Spyros emphasizes that true progress in security stems not from an ever-growing stack of tools, but from aligning the humans behind them. According to him, security failures often stem from fragmented information and misaligned incentives across teams. His solution? Bring the teams together with a shared, streamlined flow of information and automate wherever possible to reduce wasted cycles and miscommunication.At the core of Spyros' philosophy is the need to turn AppSec from a blocker into a builder. Rather than overwhelming developers with endless bug reports, or security leaders with red dashboards, programs need to reflect the actual risk appetite of the business—prioritizing issues dynamically based on impact, timing, and operational goals. He challenges the one-size-fits-all approach, advocating instead for tagging systems that defer certain risks and encode organizational priorities in automation logic.A major part of that transformation lies in Smithy, the platform he's helping build. It's designed to be “Zapier for security”—an automation engine rooted in open-source standards that allows for custom workflows without creating a tangle of fragile scripts. The idea is to let teams focus on what's unique to them, while relying on battle-tested components for the rest.Looking ahead, Spyros doesn't buy into the doom-and-gloom narrative about AI limiting developer creativity. On the contrary, he argues that AI-enabled coding frees up cognitive space for better architecture and secure design thinking. In his view, creativity doesn't die—it just shifts from syntax to strategy.This episode is more than a discussion—it's a blueprint for how teams can rally around a common goal, and how OWASP's community can be the catalyst. Tune in to hear how open-source, automation, and human alignment are redefining AppSec from the ground up.GUEST: Spyros Gasteratos | OpenCRE co-lead and Founder of smithy.security | https://www.linkedin.com/in/spyr/HOST: Sean Martin, Co-Founder at ITSPmagazine and Host of Redefining CyberSecurity Podcast | https://www.seanmartin.comSPONSORSManicode Security: https://itspm.ag/manicode-security-7q8iRESOURCESSpyros' Session: A completely pluggable DevSecOps programme, for free, using community resources (https://owasp2025globalappseceu.sched.com/event/1whCB/a-completely-pluggable-devsecops-programme-for-free-using-community-resources)Learn more and catch more stories from OWASP Global AppSec EU 2025 Conference coverage: https://www.itspmagazine.com/owasp-global-appsec-barcelona-2025-application-security-event-coverage-in-catalunya-spainCatch all of our event coverage: https://www.itspmagazine.com/technology-and-cybersecurity-conference-coverageWant to tell your Brand Story Briefing as part of our event coverage? Learn More

    Smart Software with SmartLogic
    Zigler: Zig NIFs for Elixir with Isaac Yonemoto

    Smart Software with SmartLogic

    Play Episode Listen Later May 29, 2025 43:00


    In the Season 14 premiere, hosts Dan Ivovich and Sundi Myint chat with Isaac Yonemoto, creator of the Zigler library, to explore how Zigler brings Zig's performance and safety to Elixir through Native Implemented Functions (NIFs). Isaac walks through the core design of Zigler and how it auto-generates the Elixir-to-Zig bridge, enforces type safety, and exposes multiple execution modes (normal, dirty, threaded). The conversation covers real-world applications, from SIMD-powered token selection for LLM hardware acceleration to OTP-style fault tolerance in low-level code. Isaac shares his own journey: stepping back from professional software work to launch a biotech startup focused on reducing drug manufacturing costs while continuing to maintain Zigler and even leveraging Elixir for bioinformatics pipelines. Topics discussed in this episode: What is the Zigler library and what does it do? What does it mean to run a "dirty NIF"? Async mode is temporarily removed from Zig (therefore, yielding NIFs is temporarily deprecated in Zigler) Zigler's three execution modes (normal, dirty, and threaded) and how you switch modes with a single config change Isaac's journey from professional software work to launching a biotech startup How Isaac leverages Elixir in bioinformatics pipelines at his startup LLM hardware acceleration using Zigler NIFs and SIMD-powered token picking Fault-tolerant load balancing of NIF workloads via OTP principles Transparent handling and recovery from hardware failures through monitoring Potential future memory-safety features in Zig and their implications The Elixir-based borrow-checker prototype: purpose and design Unit-checking for scientific computations to enforce correctness New OS support in Zigler 0.14: macOS, Windows, and FreeBSD Inline Zig code authoring directly within Elixir modules Isaac's commitment to maintain Zigler through its 1.0 release (...and beyond?) Links mentioned: https://github.com/E-xyza/zigler https://github.com/ziglang/zig https://vidalalabs.com/ Zig Programming Language: https://ziglang.org/ https://obsidian.md/ https://hexdocs.pm/elixir/macros.html https://erlang.org/documentation/doc-4.7.3/doc/extensions/macros.html A Deep Dive Into the Elixir AST: https://dorgan.ar/posts/2021/04/theelixirast/ https://www.erlang.org/doc/system/nif.html https://nodejs.org/en Llama Open-Source LLM: https://www.llama.com/ Mixtral Open-Source LLM: https://mistral.ai/news/mixtral-of-experts https://Fly.io SIMD: https://en.wikipedia.org/wiki/Singleinstruction,multiple_data https://opentrons.com/ CI/CD: https://en.wikipedia.org/wiki/CI/CD https://hexdocs.pm/zigler/Zig.html http://www.x.com/DNAutics https://bsky.app/profile/dnautics.bsky.social

    Generative Now | AI Builders on Creating the Future
    Mike Krieger: Product Building Lessons from Instagram and Anthropic (Encore)

    Generative Now | AI Builders on Creating the Future

    Play Episode Listen Later May 29, 2025 54:20


    This week, we are revisiting a conversation between Lightspeed partner Michael Mignano and Anthropic's head of product, Mike Krieger. Mike is known for co-founding Instagram, one of the most beloved pieces of consumer technology, and now he has taken his talents to Anthropic. They discuss the challenges AI product builders face and the evolution of product innovation and draw parallels between two transformative eras: the social media revolution that gave birth to Instagram and today's AI renaissance. Episode Chapters: (00:00) Introduction(00:54) Mike Krieger's Journey to Anthropic(03:17) Building Product Strategy at Anthropic(07:43) Rapid Iteration and Safety(10:58) Differentiating AI Models and User Experience(17:57) Impact of AI on Consumer Products and Business Models(24:39) Enterprise vs. Consumer Product Strategy(29:19) AI in Personal Life Management(30:15) Open Source and Claude Integrations(33:09) AI-Assisted Product Development(37:13) Scaling Teams and Processes at Anthropic(42:17) Reflections on AI and Future ProspectsStay in touch:www.lsvp.comX: https://twitter.com/lightspeedvpLinkedIn: https://www.linkedin.com/company/lightspeed-venture-partners/Instagram: https://www.instagram.com/lightspeedventurepartners/Subscribe on your favorite podcast app: generativenow.coEmail: generativenow@lsvp.comThe content here does not constitute tax, legal, business or investment advice or an offer to provide such advice, should not be construed as advocating the purchase or sale of any security or investment or a recommendation of any company, and is not an offer, or solicitation of an offer, for the purchase or sale of any security or investment product. For more details please see lsvp.com/legal.

    Forschung Aktuell - Deutschlandfunk
    Entwaldungsfreie Lieferketten: Mit Blockchain und OpenSource gegen Abholzung

    Forschung Aktuell - Deutschlandfunk

    Play Episode Listen Later May 28, 2025 4:52


    Stang, Michael www.deutschlandfunk.de, Forschung aktuell

    Leveraging AI
    192 | Create AI images like a pro! Using New ChatGPT, Midjourney, and Open Source with Luka Tisler

    Leveraging AI

    Play Episode Listen Later May 27, 2025 38:28 Transcription Available


    Coffee and Open Source
    Maddy Montaquila

    Coffee and Open Source

    Play Episode Listen Later May 27, 2025 65:13


    Maddy Montaquila (formerly Leger) is a Senior Product Manager at Microsoft and the product lead for Aspire. She's been building dev tools at Microsoft since 2018, working across the .NET mobile stack and helping bring .NET MAUI to life. Maddy has been obsessed with making developers' lives easier ever since her first dev tools internship, where she realized it perfectly combined her tech background with her passion for product development.These days, she's focused on making modern distributed app development suck a whole lot less. Maddy's an experienced speaker who's presented everywhere from local user groups to major keynotes, known for bringing great energy and a genuine love for dev tools to every talk.You can find Maddy on the following sites:BlueskyLinkedInXGitHubPLEASE SUBSCRIBE TO THE PODCASTSpotifyApple PodcastsYouTube MusicAmazon MusicRSS FeedYou can check out more episodes of Coffee and Open Source on https://www.coffeeandopensource.comCoffee and Open Source is hosted by Isaac Levin

    Python Bytes
    #433 Dev in the Arena

    Python Bytes

    Play Episode Listen Later May 26, 2025 28:40 Transcription Available


    Topics covered in this episode: git-flight-rules Uravelling t-strings neohtop Introducing Pyrefly: A new type checker and IDE experience for Python Extras Joke Watch on YouTube About the show Sponsored by us! Support our work through: Our courses at Talk Python Training The Complete pytest Course Patreon Supporters Connect with the hosts Michael: @mkennedy@fosstodon.org / @mkennedy.codes (bsky) Brian: @brianokken@fosstodon.org / @brianokken.bsky.social Show: @pythonbytes@fosstodon.org / @pythonbytes.fm (bsky) Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Michael #1: git-flight-rules What are "flight rules"? A guide for astronauts (now, programmers using Git) about what to do when things go wrong. Flight Rules are the hard-earned body of knowledge recorded in manuals that list, step-by-step, what to do if X occurs, and why. Essentially, they are extremely detailed, scenario-specific standard operating procedures. [...] NASA has been capturing our missteps, disasters and solutions since the early 1960s, when Mercury-era ground teams first started gathering "lessons learned" into a compendium that now lists thousands of problematic situations, from engine failure to busted hatch handles to computer glitches, and their solutions. Steps for common operations and actions I want to start a local repository What did I just commit? I want to discard specific unstaged changes Restore a deleted file Brian #2: Uravelling t-strings Brett Cannon Article walks through Evaluating the Python expression Applying specified conversions Applying format specs Using an Interpolation class to hold details of replacement fields Using Template class to hold parsed data Plus, you don't have to have Python 3.14.0b1 to try this out. The end result is very close to an example used in PEP 750, which you do need 3.14.0b1 to try out. See also: I've written a pytest version, Unravelling t-strings with pytest, if you want to run all the examples with one file. Michael #3: neohtop Blazing-fast system monitoring for your desktop Features Real-time process monitoring CPU and Memory usage tracking Beautiful, modern UI with dark/light themes Advanced process search and filtering Pin important processes Process management (kill processes) Sort by any column Auto-refresh system stats Brian #4: Introducing Pyrefly: A new type checker and IDE experience for Python From Facebook / Meta Another Python type checker written in Rust Built with IDE integration in mind from the beginning Principles Performance IDE first Inference (inferring types in untyped code) Open source I mistakenly tried this on the project I support with the most horrible abuses of the dynamic nature of Python, pytest-check. It didn't go well. But perhaps the project is ready for some refactoring. I'd like to try it soon on a more well behaved project. Extras Brian: Python: The Documentary Official Trailer Tim Hopper added Setting up testing with ptyest and uv to his “Python Developer Tooling Handbook” For a more thorough intro on pytest, check out courses.pythontest.com pocket is closing, I'm switching to Raindrop I got one question about code formatting. It's not highlighted, but otherwise not bad. Michael: New course! Polars for Power Users: Transform Your Data Analysis Game Apache Airflow 3.0 Released Paste 5 Joke: Theodore Roosevelt's Man in the Arena, but for programming

    Epicenter - Learn about Blockchain, Ethereum, Bitcoin and Distributed Technologies

    We couldn't miss the Avalanche Summit where we sat down with Emin Gün Sirer, co-founder & CEO of Ava Labs, to discuss the evolution of Avalanche's ecosystem and how HyperSDK ushers in a scalable, interoperable, multi-chain future. Join us for a fascinating discussion on Avalanche's approach to decentralisation, scalability & interoperability, and learn why real-world applicability relies heavily on bespoke blockchain solutions.Topics covered in this episode:Gün x Epicenter bromanceHow the Avalanche ecosystem & community evolvedThe future vision for AvalancheScaling Avalanche and the HyperSDKInteroperability and the multi-chain futureDecentralising Avalanche L1sUse cases and institutional adoptionOn-chain privacyAvaCloudThe impact of AI in cryptoGün's focus in the near futureEpisode links:Emin Gun Sirer on XAvalanche on XAva Labs on XSponsors:Gnosis: Gnosis builds decentralized infrastructure for the Ethereum ecosystem, since 2015. This year marks the launch of Gnosis Pay— the world's first Decentralized Payment Network. Get started today at - gnosis.ioChorus One: one of the largest node operators worldwide, trusted by 175,000+ accounts across more than 60 networks, Chorus One combines institutional-grade security with the highest yields at - chorus.oneThis episode is hosted by Brian Fabian Crain.

    Let's Talk AI
    #210 - Claude 4, Google I/O 2025, OpenAI+io, Gemini Diffusion

    Let's Talk AI

    Play Episode Listen Later May 26, 2025 104:47 Transcription Available


    Our 210th episode with a summary and discussion of last week's big AI news! Recorded on 05/23/2025 Hosted by Andrey Kurenkov and Jeremie Harris. Feel free to email us your questions and feedback at contact@lastweekinai.com and/or hello@gladstone.ai Read out our text newsletter and comment on the podcast at https://lastweekin.ai/. Join our Discord here! https://discord.gg/nTyezGSKwP In this episode: Google's Gemini diffusion technology showcases significant improvements in speed and efficiency for generating text, potentially revolutionizing the auto-regressive generation paradigm. Anthropic activates AI Safety Level 3 protections for Claude Opus 4, implementing robust measures such as bug bounties, synthetic jailbreak data, and preliminary egress bandwidth controls to mitigate bio-risk threats. OpenAI responds to the California Attorney General, refuting claims by the not-for-private-gain coalition and defending their controversial restructuring plans amidst ongoing criticism. Mistral delays the release of its Llama 4 Behemoth model due to training challenges, while Meta faces similar obstacles in rolling out its large-scale AI models, signaling difficulties in reaching frontier level performance. Timestamps + Links: (00:00:00) Intro / Banter (00:01:43) News Preview Tools & Apps (00:02:58) Anthropic's new Claude 4 AI models can reason over many steps (00:09:58) Google Unveils A.I. Chatbot, Signaling a New Era for Search (00:14:04) Google rolls out Project Mariner, its web-browsing AI agent (00:16:40) Veo 3 can generate videos — and soundtracks to go along with them (00:21:26) Imagen 4 is Google's newest AI image generator (00:23:15) Google Meet is getting real-time speech translation (00:25:36) Google's new Jules AI agent will help developers fix buggy code (00:26:43) GitHub's new AI coding agent can fix bugs for you (00:28:50) Mistral's new Devstral model was designed for coding Applications & Business (00:29:53) OpenAI Unites With Jony Ive in $6.5 Billion Deal to Create A.I. Devices (00:36:10) OpenAI's planned data center in Abu Dhabi would be bigger than Monaco (00:41:18) LM Arena, the organization behind popular AI leaderboards, lands $100M (00:45:21) Nvidia CEO says next chip after H20 for China won't be from Hopper series (00:46:39) Google's Gemini AI app has 400M monthly active users (00:51:15) AI Servers: End demand intact, but rising gap between upstream build and system production (2025.5.18) Projects & Open Source (00:53:46) Meta Is Delaying the Rollout of Its Flagship AI Model Research & Advancements (00:57:53) Gemini Diffusion (01:03:07) Chain-of-Model Learning for Language Model (01:09:16) Seek in the Dark: Reasoning via Test-Time Instance-Level Policy Gradient in Latent Space (01:15:38) Two Experts Are All You Need for Steering Thinking: Reinforcing Cognitive Effort in MoE Reasoning Models Without Additional Training (01:20:16) Lessons from Defending Gemini Against Indirect Prompt Injections (01:23:35) How Fast Can Algorithms Advance Capabilities? (01:30:20) Reinforcement Learning Finetunes Small Subnetworks in Large Language Models Policy & Safety (01:31:12) Exclusive: What OpenAI Told California's Attorney General (01:38:25) Activating AI Safety Level 3 Protections

    LINUX Unplugged
    616: From Boston to bootc

    LINUX Unplugged

    Play Episode Listen Later May 25, 2025 90:37 Transcription Available


    Fresh off Red Hat Summit, Chris is eyeing an exit from NixOS. What's luring him back to the mainstream? Our highlights, and the signal from the noise from open source's biggest event of the year.Sponsored By:Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 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. Support LINUX UnpluggedLinks:

    All TWiT.tv Shows (MP3)
    Untitled Linux Show 204: The Scrollodex

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later May 25, 2025 104:23 Transcription Available


    The Wayland-only future is screaming toward us, Mozilla pulls the plug on Pocket, and Steam OS releases Go Country. Microsoft Open Sources WSL; Edit; and more, Gnome needs help with documentation, and Ubuntu goes Chrony. For tips we have zrun for making your own zstd enabled program, more pw-cli howto, y-cruncher for setting number-crunching records, and lsmem and chmem just in case your system has hot-swappable ram. You can see the show notes at https://bit.ly/3H8Ax5P and have fun! 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.

    DevOps and Docker Talk
    What you missed at KubeCon

    DevOps and Docker Talk

    Play Episode Listen Later May 24, 2025 39:21


    At KubeCon EU 2025 in London, Nirmal and I discussed the important (and not-so-important) things you might have missed. There's also a video version of this show on YouTube.Creators & Guests Cristi Cotovan - Editor Beth Fisher - Producer Bret Fisher - Host Nirmal Mehta - Host (00:00) - DDT Audio Podcast Edited (00:04) - Intro (01:24) - KubeCon 2025 EU Overview (03:24) - Platform Engineering and AI Trends (07:03) - AI and Machine Learning in Kubernetes (15:38) - Project Pavilions at KubeCon (17:05) - FinOps and Cost Optimization (20:39) - HAProxy and AI Gateways (24:00) - Proxy Intelligence and Network Layer Optimization (26:52) - Developer Experience and Organizational Challenges (29:23) - Platform Engineering and Cognitive Load (35:54) - End of Life for CNCF Projects You can also support my free material by subscribing to my YouTube channel and my weekly newsletter at bret.news!Grab the best coupons for my Docker and Kubernetes courses.Join my cloud native DevOps community on Discord.Grab some merch at Bret's Loot BoxHomepage bretfisher.com

    This Week in Linux
    312: RHEL 10 is Here! Microsoft WSL Open Sourced? Sidescrolling Tiling Window Manager & more Linux news

    This Week in Linux

    Play Episode Listen Later May 24, 2025 35:12


    video: https://youtu.be/F_imR-7E9ps Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, was just crazy... I just got back from the Red Hat Summit last night, now I'm making a jam packed episode of TWIL with stuff from the Red Hat Summit like them announcing RHEL 10. While I was out of time, we entered into the Twilight Zone because Microsoft apparently open sourced WSL, kind of. Mozilla announced they are shutting down some services. And the giant guitar company Fender, announced a new music creation tool that, yep, it supports Linux. With the walking through airports, a convention center, and the streets of Boston...my feet hurt but you want TWIL right so I'm powering through to bring you all of this and more on This Week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and Open Source world. Now let's jump right into Your Source for Linux GNews! Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/3565a684-135c-4f9d-bb16-dac5159a9270.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 01:03 Red Hat Enterprise Linux 10 Released 06:19 Endof10.org 12:59 Niri 25.05 Window Manager Released 17:28 Sandfly Security, agentless Linux security 19:22 Microsoft Open Sources Windows Subsystem for Linux (WSL) 22:45 Mozilla Is Shutting Down Pocket 27:15 Bluefin and Aurora Updates 30:05 Fender Studio Released with Linux Support 34:11 Outro Links: Red Hat Enterprise Linux 10 Released https://www.redhat.com/en/about/press-releases/red-hat-introduces-rhel-10 (https://www.redhat.com/en/about/press-releases/red-hat-introduces-rhel-10) https://www.redhat.com/en/about/press-releases/red-hat-optimizes-red-hat-ai-speed-enterprise-ai-deployments-across-models-ai-accelerators-and-clouds (https://www.redhat.com/en/about/press-releases/red-hat-optimizes-red-hat-ai-speed-enterprise-ai-deployments-across-models-ai-accelerators-and-clouds) https://www.redhat.com/en/about/press-releases/red-hat-partners-turbocharge-hybrid-cloud-and-ai-innovation-red-hat-enterprise-linux-10 (https://www.redhat.com/en/about/press-releases/red-hat-partners-turbocharge-hybrid-cloud-and-ai-innovation-red-hat-enterprise-linux-10) https://www.redhat.com/en/about/press-releases/red-hat-unlocks-generative-ai-any-model-and-any-accelerator-across-hybrid-cloud-red-hat-ai-inference-server (https://www.redhat.com/en/about/press-releases/red-hat-unlocks-generative-ai-any-model-and-any-accelerator-across-hybrid-cloud-red-hat-ai-inference-server) End of 10.org https://endof10.org/ (https://endof10.org/) Niri 25.05 Window Manager Released https://github.com/YaLTeR/niri/releases/tag/v25.05 (https://github.com/YaLTeR/niri/releases/tag/v25.05) Sandfly Security https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) Microsoft Open Sources Windows Subsystem for Linux (WSL) https://blogs.windows.com/windowsdeveloper/2025/05/19/the-windows-subsystem-for-linux-is-now-open-source/ (https://blogs.windows.com/windowsdeveloper/2025/05/19/the-windows-subsystem-for-linux-is-now-open-source/) https://www.omgubuntu.co.uk/2025/05/microsoft-open-sources-windows-subsystem-for-linux (https://www.omgubuntu.co.uk/2025/05/microsoft-open-sources-windows-subsystem-for-linux) https://www.gamingonlinux.com/2025/05/windows-subsystem-for-linux-wsl-is-now-open-source/ (https://www.gamingonlinux.com/2025/05/windows-subsystem-for-linux-wsl-is-now-open-source/) https://www.phoronix.com/news/Microsoft-Edit-Open-Source (https://www.phoronix.com/news/Microsoft-Edit-Open-Source) Mozilla Is Shutting Down Pocket https://support.mozilla.org/en-US/kb/future-of-pocket (https://support.mozilla.org/en-US/kb/future-of-pocket) Fender Studio Released with Linux Support https://www.fender.com/pages/fender-studio (https://www.fender.com/pages/fender-studio) https://www.omgubuntu.co.uk/2025/05/fender-studio-linux-audio-recording-app (https://www.omgubuntu.co.uk/2025/05/fender-studio-linux-audio-recording-app) Bluefin & Aurora https://projectbluefin.io/ (https://projectbluefin.io/) https://getaurora.dev/en (https://getaurora.dev/en) https://universal-blue.discourse.group/t/live-iso-testing-for-bluefin-round-2/8559 (https://universal-blue.discourse.group/t/live-iso-testing-for-bluefin-round-2/8559) https://universal-blue.discourse.group/t/live-iso-testing-for-aurora/8588 (https://universal-blue.discourse.group/t/live-iso-testing-for-aurora/8588)

    BlockHash: Exploring the Blockchain
    Ep. 522 Jinx | Building Open-source Blockchain Infrastructure with Pocket Network

    BlockHash: Exploring the Blockchain

    Play Episode Listen Later May 23, 2025 29:22


    For episode 522, Brandon Zemp is joined by Jinx, Head of Operations at Pocket Network. Pocket Network's mission is to provide the world with unstoppable open-source infrastructure. They aim to empower developers with access to reliable, performant, and cost-effective data access. Their vision is a future where the world's most important digital infrastructure is owned and governed by its users. ⏳ Timestamps: 0:00 | Introduction1:20 | Who is Jinx?3:50 | What is Pocket Network?5:33 | Shannon Upgrade8:06 | What are Gateways?11:25 | $POKT Token13:31 | Ripple XRPL EVM Use-case16:07 | Future of Open Data19:05 | Disrupting centralized data21:32 | Will AI dominate data consumption?24:23 | Pocket Network Roadmap 

    Bitcoin Park
    Mine Your Business: FPPS, PPLNS, Solo Mine? What Makes the Most Sense?

    Bitcoin Park

    Play Episode Listen Later May 23, 2025 36:04


    KeywordsBitcoin, mining, payment mechanisms, FPPS, PPLNS, Tides, decentralization, mining pools, hash rate, eCashSummaryThis conversation delves into the complexities of Bitcoin mining, focusing on the various payment mechanisms and their implications for decentralization. The panel discusses innovations in mining pool architecture, contrasting traditional payout methods like FPPS and PPLNS with newer models such as Tides. The discussion highlights the centralization risks associated with current mining practices and emphasizes the need for open-source solutions to foster a more decentralized mining ecosystem.TakeawaysThe conversation highlights the importance of understanding how hash rates convert into Bitcoin.Innovative payment methods can significantly influence mining decisions.Ocean's approach to mining pools aims to reduce centralization risks.Tides represents a new, improved implementation of PPLNS.The panelists advocate for open-source mining pool architectures.Centralization in mining pools can lead to systemic risks for Bitcoin.Diversity in mining pool options can lead to evolutionary advancements.The future of mining may involve smaller, decentralized operations.Payout mechanisms directly impact miner behavior and pool dynamics.The need for more economical payout methods is crucial for the sustainability of mining.Chapters00:00 Introduction to Bitcoin Mining and Payout Mechanisms01:42 Innovations in Mining Pool Technologies04:53 Understanding Payout Mechanisms: FPPS vs. Tides08:05 Exploring HashPool and Accountless Mining10:57 The Future of Mining Pools and Decentralization13:44 Centralization Risks in Bitcoin Mining17:02 The Role of Open Source in Mining Technologies19:58 Economic Factors Influencing Mining Centralization22:46 Conclusion and Future Directions

    Cloud Unplugged
    AI Infrastructure Boom: CoreWeave's IPO, AWS Transform, and Quantum Computings Next Leap

    Cloud Unplugged

    Play Episode Listen Later May 22, 2025 44:18


    In this episode, we dissect industry-shaping stories, debating CoreWeave's $35 billion IPO, AWS Transform: AI for legacy app modernisation, and the exciting intersection of quantum computing and AI and how much Nvidia is investing in the Market - are they becoming the new Microsoft, Apple or Google?Whether you're deep in tech, cloud services, AI innovation, or market dynamics, this episode delivers sharp analysis, insightful predictions, and essential context to stay ahead in a rapidly evolving technological landscape.Hosts:https://www.linkedin.com/in/jonathanshanks/https://www.linkedin.com/in/lewismarshall/

    BSD Now
    612: Zip Bomb Protection

    BSD Now

    Play Episode Listen Later May 22, 2025 37:33


    I use Zip Bombs to Protect my Server, Owning the Stack: Infrastructure Independence with FreeBSD and ZFS, Optimisation of parallel TCP input, Chosing between "it works for now" and "it works in the long term", Losing one of my evenings after an OpenBSD upgrade, What drive did I just remove from the system?, 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 I use Zip Bombs to Protect my Server (https://idiallo.com/blog/zipbomb-protection) Owning the Stack: Infrastructure Independence with FreeBSD and ZFS (https://klarasystems.com/articles/owning-the-stack-infrastructure-independence-with-freebsd-zfs/?utm_source=BSD%20Now&utm_medium=Podcast) News Roundup Optimisation of parallel TCP input (https://www.undeadly.org/cgi?action=article;sid=20250508122430) Chosing between "it works for now" and "it works in the long term" (https://utcc.utoronto.ca/~cks/space/blog/sysadmin/WorksNowVsWorksGenerally) Losing one of my evenings after an OpenBSD upgrade (https://www.ncartron.org/losing-one-of-my-evenings-after-an-openbsd-upgrade.html) What drive did I just remove from the system? (https://dan.langille.org/2025/04/21/what-drive-did-i-just-remove-from-the-system/) 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 Benjamin - Street PCs (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/613/feedback/Benjamin%20-%20street%20pcs.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)

    Eye On A.I.
    #256 Stephen Schmidt: Inside Amazon's AI-Powered Cybersecurity Strategy

    Eye On A.I.

    Play Episode Listen Later May 22, 2025 53:35


    Can Generative AI Be Secured? Amazon's Chief Security Officer Weighs In   In this episode of Eye on AI, Amazon's Chief Security Officer Stephen Schmidt pulls back the curtain on how Amazon is using AI-powered cybersecurity to defend against real-world threats. From global honeypots to intelligent alarm systems and secure AI agent networks, Steve shares never-before-heard details on how Amazon is protecting both its infrastructure and your data in the age of generative AI.   We dive deep into: Amazon's MadPot honeypot network and how it tracks adversaries in 90 seconds The role of AI in threat detection, alarm triage, and code validation Why open-source vs. closed-source models are a real security debate The critical need for data privacy, secure LLM usage, and agent oversight Amazon's $5M+ Nova Trusted AI Challenge to battle adversarial code generation Whether you're building AI tools, deploying models at scale, or just want to understand how the future of cybersecurity is evolving—this episode is a must-listen.   Don't forget to like, subscribe, and turn on notifications to stay updated on the latest in AI, security, and innovation.     Stay Updated: Craig Smith on X:https://x.com/craigss Eye on A.I. on X: https://x.com/EyeOn_AI (00:00) Preview (00:52) Stephen Schmidt's Role and Background at Amazon (02:11) Inside Amazon's Global Honeypot Network (MadPot) (05:26) How Amazon Shares Threat Intel Through GuardDuty (08:06) Are Cybercriminals Using AI? (10:28) Open Source vs Closed Source AI Security Debate (13:09) What Is Amazon GuardDuty (17:44) How Amazon Protects Customer Data at Scale (20:18) Can Autonomous AI Agents Handle Security? (25:14) How Amazon Empowers SMBs with Agent-Driven Security (26:18) What Tools Power Amazon's Security Agents? (29:25) AI Security Basics (35:34) Securing AI-Generated Code (37:26) Are Models Learning from Our Queries? (39:44) Risks of Agent-to-Agent Data Sharing (42:08) Inside the $5M Nova Trusted AI Security Challenge (47:01) Supply Chain Attacks and State Actor Tactics (51:32) How Many True Adversaries Are Out There? (53:04) What Everyone Needs to Know About AI Security  

    Digital Transformation Podcast
    Open-Source Content Management

    Digital Transformation Podcast

    Play Episode Listen Later May 22, 2025 28:49


    Mats Persson discusses how open-source content management can drive digital transformation—and what it takes to create modern web experiences that scale. Mats is CEO of Umbraco, a website builder and CMS for businesses and developers, built on Microsoft's .NET platform and used by over 250,000 people around the world. Prior to Umbraco Mats held leadership roles at PwC, IBM and Adform, among others. Host, Kevin Craine Want to be a guest? https://DigitalTransformationPodcast.net/guest Do you want to be a sponsor? https://www.digitaltransformationpodcast.net/sponsor  

    Destination Linux
    420: We Did It People! Open Source Lab Got The Funding!

    Destination Linux

    Play Episode Listen Later May 20, 2025 73:45


    video: https://youtu.be/23-FYQvEqZQ In this episode, we discuss community feedback about the challenges of anti-cheat systems regarding privacy and security. Then we talk about Anduin OS and Linux distros that look a lot like Windows. Plus, the implications of Redis' licensing shift back to open source. Jill updates us on the Open Source Lab's successful funding campaign, and we share a lively discussion about "Floorp," a Firefox-based browser focused on customization and tracking protection. Forum Discussion Thread (https://destinationlinux.net/forum) Download as MP3 (https://aphid.fireside.fm/d/1437767933/32f28071-0b08-4ea1-afcc-37af75bd83d6/edb63036-e701-4eff-b9b7-32878acf4c67.mp3) Support the show by becoming a patron at tuxdigital.com/membership (https://tuxdigital.com/membership) or get some swag at tuxdigital.com/store (https://tuxdigital.com/store) Hosted by: Ryan (DasGeek) = dasgeek.net (https://dasgeek.net) Jill Bryant = jilllinuxgirl.com (https://jilllinuxgirl.com) Michael Tunnell = michaeltunnell.com (https://michaeltunnell.com) Chapters: 00:00:00 Intro 00:01:27 Community Feedback: Rootkits, Anti-Cheat, and Apple's Open Source Claims 00:07:20 When Anti-Cheat Starts Looking Like Malware 00:17:54 Sandfly Security 00:20:18 Preview: Red Hat Summit Coverage Plans 00:23:21 Distro Talk: Anduin OS, a Windows 11 Lookalike 00:28:24 Microsoft's Next Move? Nobody Knows, Not Even Microsoft 00:29:47 Imitating Windows 11: Helpful Onboarding or User Trap? 00:34:02 Please Add Clippy 00:35:23 Big Profits, Bigger Cuts: Microsoft's 3% Workforce Reduction 00:40:11 Final Thoughts on Anduin OS 00:41:24 Open Source Lab Reaches Funding Goal – What's Next 00:47:26 Redis Flips Back to Open Source – Too Little, Too Late? 00:54:43 Software Spotlight: Floorp – A Firefox-Based Browser 00:56:59 Judging Browsers by Their Websites—Because We Can 00:58:11 Sea Monkey Website Roast & Browser Tangents 00:58:44 Fun Fact: Floorp Powers Garuda's FireDragon Browser 00:59:04 SeaMonkey Browser: Stuck in Time, Just Like Its Website 00:59:46 Dial-Up Vibes Only: Exploring Netscape's Classic ISP Site 01:01:01 SeaMonkey Nostalgia: Childhood Pets That Didn't Do Much 01:02:05 Making Friends & Sea Monkey Sponsorship Pitch 01:03:13 SeaMonkey Browser: Channeling That Pet Shrimp Energy 01:04:17 Join the TuxDigital Discord—Your Next Linux Friend Awaits! 01:05:51 Membership Perks & Upcoming Merch Tease 01:07:13 Ryan's SeaMonkey Obsession—And He Doesn't Even Know What They Are 01:08:23 Outro 01:10:09 Post Show Links: https://www.anduinos.com/ (https://www.anduinos.com/) https://news.anduinos.com/post/2025/5/6/story-behind-anduinos-a-letter-from-anduin (https://news.anduinos.com/post/2025/5/6/story-behind-anduinos-a-letter-from-anduin) https://osuosl.org/blog/osl-future-update/ (https://osuosl.org/blog/osl-future-update/) https://osuosl.org/donate/ (https://osuosl.org/donate/) https://www.zdnet.com/article/redis-returns-to-open-source-with-agplv3-license-but-not-everyone-is-happy/ (https://www.zdnet.com/article/redis-returns-to-open-source-with-agplv3-license-but-not-everyone-is-happy/) https://floorp.app/en-US (https://floorp.app/en-US) https://www.seamonkey-project.org/ (https://www.seamonkey-project.org/) https://sea-monkeys.com/ (https://sea-monkeys.com/)

    Bitcoin Park
    Freedom Mining: The Decentralized and Open Source Tools Making it Possible

    Bitcoin Park

    Play Episode Listen Later May 20, 2025 27:52


    KeywordsBitcoin, open source, decentralization, mining, APIs, UTX Oracle, firmware, Bitcoin price, self-sovereignty, hardwareSummaryThis conversation delves into the significance of open source in Bitcoin mining, emphasizing its role in decentralization and innovation. The speakers discuss various open source projects aimed at improving mining efficiency, the challenges posed by current mining firmware, and the potential of the UTX Oracle in providing a crowdsourced Bitcoin price. They also explore the future of open source in Bitcoin mining hardware, highlighting the need for greater control and transparency in the mining process.TakeawaysBitcoin is a combination of many innovative ideas.Open source is crucial for the decentralization of Bitcoin.Bitcoin mining must also be open source to remain decentralized.PyASIC simplifies monitoring for Bitcoin miners.The UTX Oracle offers a more reliable Bitcoin price.Current mining firmware is poorly designed and limits control.Greater control over mining operations can enhance profitability.Crowdsourcing Bitcoin price through UTX Oracle is revolutionary.Self-sovereignty in Bitcoin mining is essential.Open source hardware faces significant challenges but is possible.Chapters00:00 Decentralizing Bitcoin Mining: An Introduction01:50 The Importance of Open Source in Bitcoin04:55 Innovative Tools for Bitcoin Miners08:06 Challenges with Current Mining Firmware10:52 Curtailment and Control in Mining Operations13:49 The Role of UTX Oracle in Bitcoin Pricing16:44 Crowdsourcing Bitcoin Price Data20:06 The Future of Open Source Hardware in Bitcoin Mining22:56 Community Engagement and Open Source Contributions

    The Data Stack Show
    244: Postgres to ClickHouse: Simplifying the Modern Data Stack with Aaron Katz & Sai Krishna Srirampur

    The Data Stack Show

    Play Episode Listen Later May 20, 2025 34:51


    Highlights from this week's conversation include:Background of ClickHouse (1:14)PostgreSQL Data Replication Tool (3:19)Emerging Technologies Observations (7:25)Observability and Market Dynamics (11:26)Product Development Challenges (12:39)Challenges with PostgreSQL Performance (15:30)Philosophy of Open Source (18:01)Open Source Advantages (22:56)Simplified Stack Vision (24:48)End-to-End Use Cases (28:13)Migration Strategies (30:21)Final Thoughts and Takeaways (33:29)The Data Stack Show is a weekly podcast powered by RudderStack, the CDP for developers. Each week we'll talk to data engineers, analysts, and data scientists about their experience around building and maintaining data infrastructure, delivering data and data products, and driving better outcomes across their businesses with data.RudderStack helps businesses make the most out of their customer data while ensuring data privacy and security. To learn more about RudderStack visit rudderstack.com.

    Open||Source||Data
    Democratizing Cloud Infrastructure | Kevin Carter

    Open||Source||Data

    Play Episode Listen Later May 20, 2025 59:19


    Discover how Rackspace Spot is democratizing cloud infrastructure with an open-market, transparent option for cloud servers. Kevin Carter, Product Director at Rackspace Technology, discusses Rackspace Spot's hypothesis and the impact of an open marketplace for cloud resources. Discover how this novel approach is transforming the industry. TIMESTAMPS[00:00:00] – Introduction & Kevin Carter's Background[00:02:00] – Journey to Rackspace and Open Source[00:04:00] – Engineering Culture and Pushing Boundaries[00:06:00] – Rackspace Spot and Market-Based Compute[00:08:00] – Cognitive vs. Technical Barriers in Cloud Adoption[00:10:00] – Tying Spot to OpenStack and Resource Scheduling[00:12:00] – Product Roadmap and Expansion of Spot[00:16:00] – Hardware Constraints and Power Consumption[00:18:00] – Scrappy Startups and Emerging Hardware Solutions[00:20:00] – Programming Languages for Accelerators (e.g., Mojo)[00:22:00] – Evolving Role of Software Engineers[00:24:00] – Importance of Collaboration and Communication[00:28:00] – Building Personal Networks Through Open Source[00:30:00] – The Power of Asking and Offering Help[00:34:00] – A Question No One Asks: Mentors[00:38:00] – The Power of Educators and Mentorship[00:40:00] – Rackspace's OpenStack and Spot Ecosystem Strategy[00:42:00] – Open Source Communities to Join[00:44:00] – Simplifying Complex Systems[00:46:00] – Getting Started with Rackspace Spot and GitHub[00:48:00] – Human Skills in the Age of GenAI - Post Interview Conversation[00:54:00] – Processing Feedback with Emotional Intelligence[00:56:00] – Encouraging Inclusive and Clear Collaboration QUOTESCHARNA PARKEY“If you can't engage with this infrastructure in a way that's going to help you, then I guarantee you it's not up to par for the direction that we're going. [...] This democratization — if you don't know how to use it — it's not doing its job.”KEVIN CARTER“Those scrappy startups are going to be the ones that solve it. They're going to figure out new and interesting ways to leverage instructions. [...] You're going to see a push from them into the hardware manufacturers to enhance workloads on FPGAs, leveraging AVX 512 instruction sets that are historically on CPU silicon, not on a GPU.”

    Absolute AppSec
    Episode 286 - Kayra Otaner - Authenticating Open Source Developers

    Absolute AppSec

    Play Episode Listen Later May 20, 2025


    We are happy to have Kayra Otaner as a special guest on the Absolute AppSec podcast. Kayra (kayraotaner on LinkedIn and X/twitter), the current Director of DevSecOps at Roche, brings over 15 years of cybersecurity leadership experience from New York and Wall Street. He's led DevSecOps and DevOps teams across a variety of organizations, including ADP, Voice, and adMarketplace, and has served as a trusted CTO advisor for Trendyol. His background also includes cybersecurity consulting for the Turkish Navy, where he helped develop a defense solution that was later deployed in NATO's Locked Shields cyber defense war games in Tallinn. Kayra is a frequent speaker at international DevSecOps conferences and serves on the Business and Computer Science Advisory Board at Middlesex County College in New Jersey. During this episode of the podcast Kayra discusses his journey into information security and spurs on his recent thoughts on authenticating open source developers through models similar to TSA PreCheck.

    Coffee and Open Source
    Aravind Putrevu

    Coffee and Open Source

    Play Episode Listen Later May 20, 2025 56:42


    Aravind is Director of Developer GTM at CodeRabbit, a lifelong learner and passionate technologist who transforms complex challenges into clear, engaging narratives.As a mentor, speaker, and open-source advocate, he champions community-driven innovation and hands-on experimentation.You can find Aravind on the following sites:WebsiteXLinkedInGitHubBlueskyYouTubeHere are some links provided by Aravind:CodeRabbitCodeRabbit GitHubPLEASE SUBSCRIBE TO THE PODCASTSpotifyApple PodcastsYouTube MusicAmazon MusicRSS FeedYou can check out more episodes of Coffee and Open Source on https://www.coffeeandopensource.comCoffee and Open Source is hosted by Isaac Levin

    Canaltech Podcast
    DeepSeek e o futuro da IA open-source

    Canaltech Podcast

    Play Episode Listen Later May 20, 2025 16:27


    O novo episódio do Podcast Canaltech traz uma conversa reveladora sobre a ascensão da DeepSeek, a startup chinesa que está chamando a atenção do mundo da tecnologia com seu modelo de Inteligência Artificial open-source e de baixo custo. Para analisar esse cenário e seus impactos no Brasil, recebemos Thelma Valverde, CEO da eMiolo, startup focada em desenvolver soluções inteligentes e customizadas para grandes corporações.Thelma comenta como a DeepSeek conseguiu desenvolver uma IA por apenas US$ 6 milhões, enquanto gigantes como OpenAI e Meta investem mais de US$ 500 milhões, e o que isso representa para o mercado global. Entre os temas discutidos estão: O avanço da China na corrida da Inteligência Artificial Oportunidades e riscos das IAs open-source para empresas brasileiras Privacidade, segurança e soberania digital em tempos de transformação acelerada Como o Brasil pode (ou não) se posicionar nesse novo ecossistema tecnológico Este podcast foi roteirizado e apresentado por Fernanda Santos e contou com reportagens de Lucas Parente, Vinicius Moschen, Emanuele Almeida e Paulinha Alves. A trilha sonora é de Guilherme Zomer, a edição de Jully Cruz e a arte da capa é de Erick Teixeira.See omnystudio.com/listener for privacy information.

    Oracle Groundbreakers
    Ivar Grimstad: Java for Everything

    Oracle Groundbreakers

    Play Episode Listen Later May 20, 2025 41:45


    Jim Grisanzio from Java Developer Relations talks with Ivar Grimstad, who is a Java Champion, a JCP Executive Committee Member, and a Jakarta EE Developer Advocate. Ivar is based in Sweden but travels to over 40 events a year talking about Java and Open Source with thousands of developers. He feels passionately about contributing to Java projects as the best way for young developers to learn Java and connect with the community, especially at Java conferences. Ivar has been working with Java professionally since 2000, but he's been solving problems with code since he was a little kid around 12 or 13 years old. "Java has been my go-to language for everything!" he says. "It's been here for 30 years and it'll probably be around for 30 more!"  Ivar Grimstad https://x.com/ivar_grimstad https://bsky.app/profile/theguywiththeduketattoo.com https://www.linkedin.com/in/ivargrimstad/ Duke's Corner https://dukescorner.libsyn.com https://bsky.app/profile/dukescorner.bsky.social Jim Grisanzio https://x.com/jimgris https://www.linkedin.com/in/jimgris/ https://jimgrisanzio.wordpress.com/

    The Changelog
    Windows Subsystem for Linux is open source (News)

    The Changelog

    Play Episode Listen Later May 19, 2025 7:39


    Microsoft finally opens the source of WSL, Paolo Scanferla describes an inherent trade-off in TypeScript's type system, Alberto Fortin is taking a step back from heavy LLM use while coding, a pseudonymous hacker spent two weeks coding from their Android phone, and NLWeb might become the HTML of the open agentic web.

    Python Bytes
    #432 How To Fix Your Computer

    Python Bytes

    Play Episode Listen Later May 19, 2025 25:48 Transcription Available


    Topics covered in this episode: pre-commit: install with uv PEP 773: A Python Installation Manager for Windows (Accepted) Changes for Textual The Best Programmers I Know Extras Joke Watch on YouTube About the show Sponsored by NordLayer: pythonbytes.fm/nordlayer Connect with the hosts Michael: @mkennedy@fosstodon.org / @mkennedy.codes (bsky) Brian: @brianokken@fosstodon.org / @brianokken.bsky.social Show: @pythonbytes@fosstodon.org / @pythonbytes.fm (bsky) Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Brian #1: pre-commit: install with uv Adam Johnson uv tool works great at keeping tools you use on lots of projects up to date quickly, why not use it for pre-commit. The extension of pre-commit-uv will use uv to create virtual environments and install packages fore pre-commit. This speeds up initial pre-commit cache creation. However, Adam is recommending this flavor of using pre-commit because it's just plain easier to install pre-commit and dependencies than the official pre-commit install guide. Win-win. Side note: No Adam, I'm not going to pronounce uv “uhv”, I'll stick with “you vee”, even Astral tells me I'm wrong Michael #2: PEP 773: A Python Installation Manager for Windows (Accepted) via pycoders newsletter One manager to rule them all – PyManager. PEP 773 replaces all existing Windows installers (.exe “traditional” bundle, per-version Windows Store apps, and the separate py.exe launcher) with a single MSIX app called Python Install Manager (nick-named PyManager). PyManager should be mainstream by CPython 3.15, and the traditional installer disappears no earlier than 3.16 (≈ mid-2027). Simple, predictable commands. python → launches “the best” runtime already present or auto-installs the latest CPython if none is found. py → same launcher as today plus management sub-commands: py install, py uninstall, py list, py exec, py help. Optional python3 and python3.x aliases can be enabled by adding one extra PATH entry. Michael #3: Changes for Textual Bittersweet news: the business experiment ends, but the code lives on. Textual began as a hobby project layered on top of Rich, but it has grown into a mature, “makes-the-terminal-do-the-impossible” TUI framework with an active community and standout documentation. Despite Textual's technical success, the team couldn't pinpoint a single pain-point big enough to sustain a business model, so the company will wind down in the coming weeks. The projects themselves aren't going anywhere: they're stable, battle-tested, and will continue under the stewardship of the original author and the broader community. Brian #4: The Best Programmers I Know Matthias Endler “I have met a lot of developers in my life. Lately, I asked myself: “What does it take to be one of the best? What do they all have in common?”” The list Read the reference Know your tools really well Read the error message Break down problems Don't be afraid to get your hands dirty Always help others Write Never stop learning Status doesn't matter Build a reputation Have patience Never blame the computer Don't be afraid to say “I don't know” Don't guess Keep it simple Each topic has a short discussion. So don't just ready the bullet points, check out the article. Extras Brian: I had a great time in Munich last week. I a talk at a company event, met with tons of people, and had a great time. The best part was connecting with people from different divisions working on similar problems. I love the idea of internal conferences to get people to self organize by topic and meet people they wouldn't otherwise, to share ideas. Also got started working on a second book on the plane trip back. Michael: Talk Python Clips (e.g. mullet) Embrace your cloud firewall (example). Python 3.14.0 beta 1 is here Congrats to the new PSF Fellows. Cancelled faster CPython https://bsky.app/profile/snarky.ca/post/3lp5w5j5tws2i Joke: How To Fix Your Computer

    Let's Talk AI
    #209 - OpenAI non-profit, US diffusion rules, AlphaEvolve

    Let's Talk AI

    Play Episode Listen Later May 19, 2025 113:14 Transcription Available


    Our 209th episode with a summary and discussion of last week's big AI news! Recorded on 05/16/2025 Hosted by Andrey Kurenkov and Jeremie Harris. Feel free to email us your questions and feedback at contact@lastweekinai.com and/or hello@gladstone.ai Read out our text newsletter and comment on the podcast at https://lastweekin.ai/. Join our Discord here! https://discord.gg/nTyezGSKwP In this episode: OpenAI has decided not to transition from a nonprofit to a for-profit entity, instead opting to become a public benefit corporation influenced by legal and civic discussions. Trump administration meetings with Saudi Arabia and the UAE have opened floodgates for AI deals, leading to partnerships with companies like Nvidia and aiming to bolster AI infrastructure in the Middle East. DeepMind introduced Alpha Evolve, a new coding agent designed for scientific and algorithmic discovery, showing improvements in automated code generation and efficiency. OpenAI pledges greater transparency in AI safety by launching the Safety Evaluations Hub, a platform showcasing various safety test results for their models. Timestamps + Links: (00:00:00) Intro / Banter (00:01:41) News Preview (00:02:26) Response to listener comments Applications & Business (00:03:00) OpenAI says non-profit will remain in control after backlash (00:13:23) Microsoft Moves to Protect Its Turf as OpenAI Turns Into Rival (00:18:07) TSMC's 2nm Process Said to Witness ‘Unprecedented' Demand, Exceeding 3nm Due to Interest from Apple, NVIDIA, AMD, & Many Others (00:21:42) NVIDIA's Global Headquarters Will Be In Taiwan, With CEO Huang Set To Announce Site Next Week, Says Report (00:23:58) CoreWeave in Talks for $1.5 Billion Debt Deal 6 Weeks After IPO Tools & Apps (00:26:39) The Day Grok Told Everyone About ‘White Genocide' (00:32:58) Figma releases new AI-powered tools for creating sites, app prototypes, and marketing assets (00:36:12) Google's bringing Gemini to your car with Android Auto (00:38:49) Google debuts an updated Gemini 2.5 Pro AI model ahead of I/O (00:45:09) Hugging Face releases a free Operator-like agentic AI tool Projects & Open Source (00:47:42) Stability AI releases an audio-generating model that can run on smartphones (00:50:47) Freepik releases an ‘open' AI image generator trained on licensed data (00:54:22) AM-Thinking-v1: Advancing the Frontier of Reasoning at 32B Scale (01:01:29) BLIP3-o: A Family of Fully Open Unified Multimodal Models-Architecture, Training and Dataset Research & Advancements (01:05:40) DeepMind claims its newest AI tool is a whiz at math and science problems (01:12:31) Absolute Zero: Reinforced Self-play Reasoning with Zero Data (01:19:44) How far can reasoning models scale? (01:26:47) HealthBench: Evaluating Large Language Models Towards Improved Human Health Policy & Safety (01:34:10) Trump administration officially rescinds Biden's AI diffusion rules (01:37:08) Trump's Mideast Visit Opens Floodgate of AI Deals Led by Nvidia (01:44:04) Scaling Laws For Scalable Oversight (01:49:43) OpenAI pledges to publish AI safety test results more often

    Open Source Security Podcast
    Repository signing with Kairo De Araujo

    Open Source Security Podcast

    Play Episode Listen Later May 19, 2025 33:29


    I recently had a chat with Kairo about a project he maintains called Repository Service for TUF (RSTUF). We explain why TUF is tough (har har har), what RSTUF can do, and some of the challenges around securing repositories. The show notes and blog post for this episode can be found at https://opensourcesecurity.io/2025/2025-05-rstuf-with-kairo-de-araujo/

    Changelog News
    Windows Subsystem for Linux is open source

    Changelog News

    Play Episode Listen Later May 19, 2025 7:39


    Microsoft finally opens the source of WSL, Paolo Scanferla describes an inherent trade-off in TypeScript's type system, Alberto Fortin is taking a step back from heavy LLM use while coding, a pseudonymous hacker spent two weeks coding from their Android phone, and NLWeb might become the HTML of the open agentic web.

    All TWiT.tv Shows (MP3)
    Untitled Linux Show 203: Notorious Flatpak

    All TWiT.tv Shows (MP3)

    Play Episode Listen Later May 18, 2025 84:57 Transcription Available


    Canonical is giving back through thanks.dev, AMD is Hiring for Ryzen Linux work, and Rust celebrates 10 years! Then There's the End of Ten project, a Flatpak update, and AMD really hitting it out of the park with Laptop processors. Elementary OS shines, KDE does better HDR, and Live Upgrade Orchestrator is posed to be a whole new way to update your kernel. For tips we have vipe for editing piped data, pw-cli for managing remote clients, taskset for managing which CPU core a process runs on, and a quick primer on capabilities for using priveleged ports. You can find the show notes at https://bit.ly/433AdOk and see you next week! Host: Jonathan Bennett Co-Hosts: Ken McDonald, Rob Campbell, and Jeff Massie 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.

    Sweat Equity Podcast® Law Smith + Eric Readinger
    How To Receive Love From The Genteel Alexis Fawx | ROI Podcast™ ep. 485 | Law Smith @LawSmithWorks & Eric Readinger

    Sweat Equity Podcast® Law Smith + Eric Readinger

    Play Episode Listen Later May 18, 2025 39:00 Transcription Available


    ROI! Return On Investment? Ritual Of Indulgence? Robust Oral Idol? ROI Podcast™ hosted by Law Smith @LawSmithWorks and Eric Readinger... Here's the episode description fo sho fo sho wrote   Law Smith and Eric Readinger piggyback off the previous episode hitting the back walls about hilarious chaos behind Tampa's 2 Bears 5K race. Law shares his adventures sprinting through Raymond James Stadium in American flag speedos, awkward celebrity run-ins with comedians Bert Kreischer and Tom Segura, and funny mishaps you won't hear anywhere else. Expect wild stories, comedic insights, and candid celebrity gossip—all served with ROI's signature humor. Buckle up comedy fans, this one's a ride. N.O.R.E. Noreaga, Comedian Meat Dave's Dave Williamson, Dean Akers, Jason Kelce, Bo Allen, Former All Pro and former Buccaneer Ryan Jensen, Buccaneer OG Cody Mauch, Buccaneer C Graham Barton, All Pro Buccaneer OT Tristian Wirfs, Barstool's Frank The Tank, Kevin KFC Clancy, John Feitelberg, Mike Calta, Por Osos Vodka, 2 Bears 1 Cave, Spartan Race, Oddsox, Alexis Fawx. Host Law Smith shares an unforgettable encounter with the genuinely gracious Alexis Fawx. Dive into candid, hilarious reflections on dating app mishaps, eyebrow disasters, and navigating today's relationship minefields. Laugh, learn, and improve your emotional intelligence by decoding life's subtle absurdities—only on ROI Podcast®.   Episode sponsored by @ZUPYAK  https://www.Zupyak.com → promo code → SWEAT @Flodesk -50% off https://flodesk.com/c/AL83FF @Incogni remove you personal data from public websites 50% off https://get.incogni.io/SH3ve @SQUARESPACE website builder → https://squarespacecircleus.pxf.io/sweatequity @CALL RAIL call tracking → https://bit.ly/sweatequitycallrail @LINKEDIN PREMIUM - 2 months free! → https://bit.ly/sweatequity-linkedin-premium @OTTER.ai → https://otter.ai/referrals/AVPIT85N   Hosts' Eric Readinger & Law Smith

    Cyber Security Today
    The Monthly Cybersecurity Review: Data Breaches, Ransomware, and Critical Infrastructure

    Cyber Security Today

    Play Episode Listen Later May 17, 2025 56:44 Transcription Available


    In this episode of 'Cybersecurity Today', host Jim Love is joined by panelists Laura Payne from White Tuque and David Shipley from Beauceron Security to review significant cybersecurity events over the past month. The discussion covers various impactful stories such as the disappearance of a professor, a data breach at Hertz, and government officials using a commercial app during a conflict. They dive deep into the ransomware attack on PowerSchool and its implications for K-12 schools in North America. The conversation also highlights the vulnerability of critical infrastructures, including the food supply chain and the importance of robust cybersecurity measures. Finally, the panel touches upon the progression towards post-quantum encryption by major tech companies like AWS and Google, signaling advancements in securing future technologies. 00:00 Introduction and Panelist Welcome 00:20 Major Cybersecurity Incidents of the Month 02:04 PowerSchool Data Breach Analysis 04:11 Ransomware and Double Extortion Tactics 12:20 4chan Security Breach and Its Implications 16:31 Hertz Data Loss and Retail Cybersecurity 17:44 Critical Infrastructure and Cyber Regulation 27:03 The Importance of CVE Database 27:54 Debate on Vulnerability Scoring 30:17 Open Source Software and Geopolitical Risks 31:43 The Evolution and Challenges of Open Source 37:17 The Need for Software Regulation 46:50 Signal Gate and Compliance Issues 54:08 Post-Quantum Cryptography 56:10 Conclusion and Final Thoughts

    Epicenter - Learn about Blockchain, Ethereum, Bitcoin and Distributed Technologies
    Initia: Incentively Aligned Appchains - Ezaan Mangalji, Anil Lulla & Jose Maria Macedo

    Epicenter - Learn about Blockchain, Ethereum, Bitcoin and Distributed Technologies

    Play Episode Listen Later May 16, 2025 62:08


    Blockchain architecture is constantly being forced to adapt to new technologies, as well as to meet new demands from users and builders. While the idea of apps building their own chains was first explored by Cosmos, it lacked the support and tooling to see it succeed. Later on, rollups also took the centerstage of Ethereum's scaling roadmap, but due to their general purpose design, it led to a cannibalistic ecosystem. Initia learned from these 2 models and combined the best of both worlds: it built a full-stack framework for a seamless DevEx from the get-go and, more importantly, it designed its tokenomics in order to ensure maximum incentive alignment for its appchains. While the former decision removed the need for each separate chain to reinvent the wheel and risk ending up ‘a jack of all trades, master of none', the latter ensured that appchains would not extract value away from the L1.Topics covered in this episode:Ezaan's backgroundFrom building on Terra to InitiaHow Initia is rewriting the appchain thesisInitia's enshrined liquidity & vested interest program (VIP)Metrics & Initia's bet on crypto innovationSolving liquidity fragmentationDelphi's involvement in InitiaFuture roadmapEpisode links:Ezaan Mangalji on XJose Maria Macedo on XAnil Lulla on XInitia on XDelphi Digital on XDelphi report on InitiaSponsors:Gnosis: Gnosis builds decentralized infrastructure for the Ethereum ecosystem, since 2015. This year marks the launch of Gnosis Pay— the world's first Decentralized Payment Network. Get started today at - gnosis.ioChorus One: one of the largest node operators worldwide, trusted by 175,000+ accounts across more than 60 networks, Chorus One combines institutional-grade security with the highest yields at - chorus.oneThis episode is hosted by Brian Fabian Crain.

    Kubernetes Podcast from Google

    In this episode, we're bringing you a curated selection of conversations from the KubeCon EU 2025 showfloor. We'll be diving into the rise of platform engineering, exploring some cutting-edge technologies, getting updates on core Kubernetes components, and hearing some truly unique user stories, like using Kubernetes on a dairy farm! Do you have something cool to share? Some questions? Let us know: - web: kubernetespodcast.com - mail: kubernetespodcast@google.com - twitter: @kubernetespod - bluesky: @kubernetespodcast.com   News of the week CNCF Blog - Announcing the Automated Governance Maturity Model Kubernetes Blog CNCF Blog - Understanding Kubernetes Gateway API: A Modern Approach to Traffic Management Open Observability Summit Links from the interview NAIS at NAV, with Hans Kristian Flaatten and Audun Fauchald Strand Audun Fauchald Strand Hans Kristian Flaatten NAV (Norwegian Labor and Welfare Administration) Kubernetes Podcast 216: NAIS, with Johnny Horvi and Frode Sundby NAIS KubeCon EU 2025 Keynote: Adventures of Building a Platform as a Service for the Government - Hans Kristian Flaatten, Lead Platform Engineer, NAV & Audun Fauchald Strand, Principal Software Engineer, NAV GKE release notes   Platform Engineering, with Max Körbächer and Andreas (Andi) Grabner Max Körbächer Andreas (Andi) Grabner Book: “Platform Engineering for Architects: Crafting modern platforms as a product” by Max Körbächer, Andreas Grabner, and Hilliary Lipsig Cloud Native Summit Munich   Kubernetes at LinkedIn, with Ahmet Alp Balkan and Ronak Nathani Ahmet Alp Balkan Ronak Nathani Kubernetes Podcast 249: Kubernetes at LinkedIn, with Ahmet Alp Balkan and Ronak Nathani Ahmet's Blog Introducing Multi-Cluster Orchestrator: Scale your Kubernetes workloads across regions   LLMs on Kubernetes, with Mofi and Abdel KubeCon EU 2025 talk: Yes You Can Run LLMs on Kubernetes - Abdel Sghiouar & Mofi Rahman, Google Cloud About the Gateway API Gateway API Inference Extension Deploy GKE Inference Gateway   SIG etcd with Ivan Valdes Ivan Valdes etcd.io SIG etcd on GitHub   Open Source Kubernetes, with Jago Macleod Jago Macleod Google Open Source: Kubernetes Schedmd Slurm Ray Run:ai from Nvidia Medium blog: “Deploy Slurm on GKE” by Abdel Sghiouar AI-Hypercomputer, xpk XPK (Accelerated Processing Kit, pronounced x-p-k) is a command line interface that simplifies cluster creation and workload execution on Google Kubernetes Engine (GKE). XPK generates preconfigured, training-optimized clusters and allows easy workload scheduling without any Kubernetes expertise. Cursor AI Editor   Dairy Farm Automation & Banking with Kubernetes, with Clément Nussbaumer Clément Nussbaumer Talos Linux Cluster-api Cluster API is a Kubernetes subproject focused on providing declarative APIs and tooling to simplify provisioning, upgrading, and operating multiple Kubernetes clusters. KubeCon EU 2025 Talk: “Day-2'000 - Migration From Kubeadm+Ansible To ClusterAPI+Talos: A Swiss Bank's Journey” - Clément Nussbaumer, PostFinance Kubeadm Kubeadm is a tool built to provide kubeadm init and kubeadm join as best-practice "fast paths" for creating Kubernetes clusters.   Being a First-Time KubeCon Attendee, with Nick Taylor Kubernetes The Hard Way K3s - “The certified Kubernetes distribution built for IoT & Edge computing” Kubernetes Ingress Controllers Kubernetes Up and Running Kubernetes Docs KubeCon EU 2025 Sponsored Keynote: The Science of Winning: Oracle Red Bull Racing's Formula with Open Source, Kubernetes and AI - Sudha Raghavan, SVP of OCI Developer Platform, Oracle

    IT in the D
    Open Source Insights with Tom Lawrence of Lawrence Systems – IT in the D 514

    IT in the D

    Play Episode Listen Later May 15, 2025 64:26


    Today, Bob and Randy are rejoined by Tom Lawrence of Lawrence Systems, an open-source advocate and YouTuber. They discuss the benefits and challenges of open-source solutions, particularly in comparison to VMware and other commercial software. Tom shares his experiences with open-source storage solutions for large-scale applications and offers insights into consulting on high-stakes IT projects, including data center rebuilding post-crisis. The conversation also touches on the rapid growth of AI technologies, challenges in AI model training, and the potential for AI to reshape various industries. Additionally, the hosts delve into personal stories, talk about the importance of tech community events, and reflect on the role of content creation in tech careers. The episode wraps up with a fun discussion on sci-fi shows and movies, from 'Black Mirror' to 'Star Wars: Andor.'

    The Knowledge Project with Shane Parrish
    #228 Elad Gil: How to Spot a Billion-Dollar Startup Before the Rest of the World

    The Knowledge Project with Shane Parrish

    Play Episode Listen Later May 13, 2025 98:34


    What if the world's most connected tech investor handed you his mental playbook? Elad Gil, an investor behind Airbnb, Stripe, Coinbase and Anduril, flips conventional wisdom on its head and prioritizes market opportunities over founders. Elad decodes why innovation has clustered geographically throughout history, from Renaissance Florence to Silicon Valley, where today 25% of global tech wealth is created. We get into why he believes AI is dramatically under-hyped and still under-appreciated, why remote work hampers innovation, and the self-inflicted wounds that he's seen kill most startups.   This is a masterclass in pattern recognition from one of tech's most consistent and accurate forecasters, revealing the counterintuitive principles behind identifying world-changing ideas.  Disclaimer: This episode was recorded in January. The pace of AI development is staggering, and some of what we discussed has already evolved. But the mental models Elad shares about strategy, judgment, and high-agency thinking are timeless and will remain relevant for years to come. Approximate timestamps: Subject to variation due to dynamically inserted ads. (2:13) - Investing in Startups (3:25) - Identifying Outlier Teams (6:37) - Tech Clusters (9:55) - Remote Work and Innovation (11:19) - Role of Y Combinator (15:19) - The Waves of AI Companies (20:24) - AI's Problem Solving Capabilities (26:13) - AI's Learning Process (30:41) - Prompt Engineering and AI (32:00) - AI's Role in Future Development (34:37) - AI's Impact on Self-Driving Technology (40:16) - The Role of Open Source in AI (43:23) - The Future of AI in Big Players (44:23) - Regulation and Safety Concerns in AI (49:11) - Common Self-Inflicted Wounds (51:34) - Scaling the CEO and Avoiding Conventional Wisdom (55:21) - Workplace Culture (58:39) - Patterns Among Outlier CEOs (1:15:50) - Remote Work and its Implications (1:18:47) - The Impact of Clusters and Exceptional Individuals (1:25:41) - Investing in Defense Technology (1:27:38) - Business Model Shift in the Defense Industry (1:31:46) - Changes in Warfare SHOPIFY: Upgrade your business and get the same checkout I use. Sign up for your one-dollar-per-month trial period at shopify.com/knowledgeproject NORDVPN: To get the best discount off your NordVPN plan go to nordvpn.com/KNOWLEDGEPROJECT. Our link will also give you 4 extra months on the 2-year plan. There's no risk with Nord's 30 day money-back guarantee! Newsletter - The Brain Food newsletter delivers actionable insights and thoughtful ideas every Sunday. It takes 5 minutes to read, and it's completely free. Learn more and sign up at ⁠fs.blog/newsletter⁠ Upgrade — If you want to hear my thoughts and reflections at the end of the episode, join our membership: ⁠⁠⁠⁠⁠⁠⁠⁠fs.blog/membership⁠⁠⁠ and get your own private feed. Watch on YouTube: ⁠@tkppodcast Learn more about your ad choices. Visit megaphone.fm/adchoices