Look for any podcast host, guest or anyone
Showing episodes and shows of

Simon Willison

Shows

Talking Postgres with Claire GiordanoTalking Postgres with Claire GiordanoAI for data engineers with Simon WillisonIt’s always a good day if you see a pelican. In Episode 30 of Talking Postgres with Claire Giordano, open source developer Simon Willison—creator of Datasette and co-creator of Django—joins to explore how AI is useful for data engineers today. We move past the hype and boosterism to dig into example after example: structured data extraction, alt text and accessibility, safety and security (aka the fiddly bits), and why Postgres’s fine-grained permissions are such a good fit for AI-powered workflows. Also: Pulitzer-worthy data tooling, the science fiction of the 10X engineer, agents, MCP, RAG, the multitude of model...2025-08-081h 15Screaming in the CloudScreaming in the CloudAI's Security Crisis: Why Your Assistant Might Betray YouOn this episode of Screaming in the Cloud, Corey Quinn talks with Simon Willison, founder of Datasette and creator of LLM CLI about AI’s realities versus the hype. They dive into Simon’s “lethal trifecta” of AI security risks, his prediction of a major breach within six months, and real-world use cases of his open source tools, from investigative journalism to OSINT sleuthing. Simon shares grounded insights on coding with AI, the real environmental impact, AGI skepticism, and why human expertise still matters. A candid, hype-free take from someone who truly knows the space.Highli...2025-08-071h 05Hacker News 每日播报Hacker News 每日播报Hacker News 每日播报 2025-07-29欢迎收看 Hacker News 每日播报!今天我们聊聊并发编程语言 Pony 的独特设计、能在旧笔记本上写游戏的本地大模型、让 LLM 犯错的“猫咪事实”、挑战硬件安全的 Volt Boot 攻击,以及从金融科技的批判到一支经典圆珠笔的魅力。 Pony:一门采用 Actor 模型、能力安全的高性能编程语言 在并发编程领域,Pony 语言以其独特的理念脱颖而出。它旨在通过创新的“Actor 模型”和“引用能力”(Reference Capabilities)系统,从根本上消除数据竞争、死锁和异常等传统并发编程的痛点。 核心特性 Actor 模型与并发安全:Pony 中所有的计算都发生在独立的 Actor 内部。Actor 之间通过异步消息传递通信,各自拥有私有状态,不共享内存。这种设计从源头上杜绝了数据竞争。 能力安全 (Capabilities Security):这是 Pony 最强大的特性。它的类型系统不仅定义数据结构,还定义了对数据的“访问能力”。编译器通过静态分析,在编译时就能保证内存安全和并发安全,开发者无需手动管理锁。 高性能:Pony 是一门编译型语言,能生成高效的机器码,性能接近 C/C++。其轻量级的运行时和独特的无暂停垃圾回收器(GC),使其在实时性要求高的场景中表现出色。 社区洞察 Pony 的创新设计引发了开发者们的热烈讨论,大家常将其与现有主流并发方案进行比较。 与 Rust 和 Go 的比较:大家认为,Pony 和 Rust 都致力于在编译时保证安全,但实现路径不同。Rust 依靠所有权和借用检查,而 Pony 则通过 Actor 模型和引用能力。相比 Go 语言的 Goroutines 和 Channels,Pony 在不使用锁的情况下实现并发,其无暂停 GC 对延迟敏感的应用更具吸引力。 学习曲线与生态:Pony 的“引用能力”概念虽然强大,但对新用户来说有一定学习门槛。同时,作为一个相对小众的语言,其生态系统(如 Web 框架、数据库驱动等)的成熟度也是开发者在选择技术栈时考量的关键因素。尽管如此,对于那些深受并发问题困扰的团队来说,Pony 提供了一个值得探索的、充满前景的解决方案。 我那用了两年半的笔记本电脑,现在能用 GLM-4.5 Air 写出《太空侵略者》了 开发者 Simon Willison 最近分享了一项惊人的成就:他在一台两年半前的 MacBook Pro M2 笔记本上,成功运行了一个 1060 亿参数的大型语言模型 GLM-4.5 Air,并用它生成了功能完整的 JavaScript 版《太空侵略者》游戏。 本地 AI 的飞跃 Simon 使用了 Z.ai 开源的 GLM-4.5 Air 模型的一个 3 比特量化版本,将模型大小从 200GB+ 压缩到了 44GB。结合 Apple 的 MLX 框架,他仅用一句简单的提示——“编写一个实现《太空侵略者》的 HTML 和 JavaScript 页面”,模型便生成了无需任何修改即可直接运行的完整代码。 这一进展标志着本地运行的编码模型已经变得异常强大。在运行过程中,模型峰值内存占用约为 48GB,这对于一台拥有 64GB 内存的笔记本来说已经触手可及。 社区反响 这一成果在社区中激起了巨大的热情。 惊叹与兴奋:许多开发者对个人设备能拥有如此强大的 AI 辅助开发能力感到兴奋,认为这极大地降低了 AI 实验的门槛。代码“一次性成功运行”这一点尤其令人震惊,这表明模型对逻辑和上下文的理解达到了新的高度。 理性的分析:也有观点指出,《太空侵略者》的代码结构相对简单,是许多编程教程的入门案例,对于大模型来说可能并非最难的任务。同时,48GB 的内存占用对于大多数普通用户(16GB 或 32GB 内存)来说仍是一个不小的门槛。 硬件与未来:大家普遍认为,Apple Silicon 芯片的统一内存架构是实现这一成就的关键。人们开始展望,随着模型优化和硬件发展,本地 AI 将如何改变软件开发流程,例如在离线环境中进行代码补全、重构甚至原型开发。 OpenAI 推出 ChatGPT“学习模式” OpenAI 近期为 ChatGPT 增加了一项新功能——“学习模式”(Study Mode),旨在帮助学生从单纯地寻求答案,转向更深层次的理解和知识构建。 该模式的核心理念是提供循序渐进的指导,而非直接给出最终答案。它融合了教师和教育学专家的见解,通过引导性问题和互动式提示,鼓励学生主动学习和反思。 主要特性 互动式提示:采用苏格拉底式提问法,引导用户深入理解概念。 支架式响应:将复杂信息分解成易于理解的部分,并突出知识点之间的联系。 个性化支持:根据用户的技能水平和历史对话,量身定制教学内容。 知识检查:通过测验和开放式问题巩固知识,并提供个性化反馈。 灵活性:用户可以在对话中随时开启或关闭该模式。 OpenAI 表示,该功能主要面向大学生群体,早期测试反馈积极,有学生将其形容为“一个 24/7 全天候、无所不知的‘办公时间’”。未来,OpenAI 计划将这些行为直接训练到核心模型中,并探索更丰富的可视化、进度跟踪和个性化学习体验。 维基媒体基金会挑战英国《在线安全法案》 维基媒体基金会(Wikimedia Foundation)已对英国《在线安全法案》(Online Safety Act)中的部分规定提起法律挑战。他们并非反对整个法案,而是担忧其中的“分类条例”可能将维基百科归为监管最严格的“第一类”服务,从而危及这个全球知识共享平台的运作模式。 基金会认为,如果维基百科被强制执行“第一类”义务(例如要求验证大量贡献者的身份),将严重损害全球近 26 万名志愿者的隐私和安全,甚至可能使他们面临数据泄露、跟踪或被威权政权报复的风险。 维基百科作为全球排名前十的网站中唯一的非营利项目,其内容由全球志愿者共同创建和维护,是重要的“数字公共产品”。基金会强调,他们支持促进网络安全,但认为这些为商业风险网站设计的严苛规则,不应错误地适用于维基百科这种独特的非营利知识平台。此案的结果可能为保护全球在线公共利益项目树立重要先例。 SRAM Has No Chill:利用电源域分离窃取片上机密 一篇名为《SRAM Has No Chill》的论文揭示了一种名为 Volt Boot 的新型硬件攻击方式,它挑战了我们对片上内存(SRAM)安全性的传统认知。 过去,SRAM 因其断电后数据迅速丢失的特性,被认为是存储加密密钥等敏感信息的安全堡垒,能有效抵御“冷启动攻击”。然而,Volt Boot 攻击利用了现代片上系统(SoC)中普遍存在的“电源域分离”特性。 攻击原理 现代 SoC 为了功耗管理,会将 CPU、内存等模块划分到独立的电压域。攻击者通过操纵这些电源域,制造出“不对称电源状态”,从而强制 SRAM 在电源重启后依然保留其数据。 更令人担忧的是,这种攻击无需极低温度,并且研究人员在商用 ARM 芯片上演示时,成功以 100% 的准确率恢复了缓存和寄存器中的数据。 这一发现对许多依赖片上内存进行安全防护的方案(如 TRESOR、Sentry)构成了直接威胁,警示我们即使数据从未离开芯片,也可能通过物理手段被窃取。这促使安全社区重新审视硬件信任根和安全飞地等技术的底层安全性,并思考新的缓解措施。 2025-07-3000 minHeavybit Podcast Network Master FeedHeavybit Podcast Network Master FeedGenerationship - Ep. #39, Simon Willison: I Coined Prompt InjectionIn episode 39 of Generationship, Rachel speaks with Simon Willison, founder of Datasette and co-creator of Django. Simon discusses the surprising resurgence of blogging, his coining of the term “prompt injection,” the power of learning in public, and how he uses GitHub issues as an external brain to manage hundreds of projects. This quick-witted and humorous conversation offers a pragmatic look at leveraging today's tools for maximum productivity and impact.2025-07-1052 minGenerationshipGenerationshipEp. #39, Simon Willison: I Coined Prompt InjectionIn episode 39 of Generationship, Rachel speaks with Simon Willison, founder of Datasette and co-creator of Django. Simon discusses the surprising resurgence of blogging, his coining of the term “prompt injection,” the power of learning in public, and how he uses GitHub issues as an external brain to manage hundreds of projects. This quick-witted and humorous conversation offers a pragmatic look at leveraging today's tools for maximum productivity and impact.The post appeared first on Heavybit.2025-07-1052 minHeavybit PodcastsHeavybit PodcastsEp. #39, Simon Willison: I Coined Prompt InjectionIn episode 39 of Generationship, Rachel speaks with Simon Willison, founder of Datasette and co-creator of Django. Simon discusses the surprising resurgence of blogging, his coining of the term “prompt injection,” the power of learning in public, and how he uses GitHub issues as an external brain to manage hundreds of projects. This quick-witted and humorous conversation offers a pragmatic look at leveraging today's tools for maximum productivity and impact.The post appeared first on Heavybit.2025-07-1052 minBrain FartsBrain FartsThe Vibe Coding ParadoxEpisode Title: The Vibe Coding ParadoxShow Notes:In this episode, we explore “vibe coding”—the fast-moving, AI-powered trend reshaping how software is written in 2025. What happens when developers can build fully functional apps without understanding the code?🔹 Executive Summary:Vibe coding accelerates software creation by using AI tools to generate working code—often without the developer fully reviewing or comprehending it. This episode examines the benefits, risks, and ethical questions behind this shift.🔹 Topics Covered:1. **The Separation of Competence and Comprehension**   - Developers can now produce complex apps wit...2025-06-1505 minThe Truth of the Matter with Natasha ZouvesThe Truth of the Matter with Natasha ZouvesAI Is Coming for Your Job. Here’s What To Do Now, With Simon Willison.He's one of the most thoughtful voices in the world of Artificial Intelligence. In this episode, “Truth of the Matter” host Natasha Zouves sits down with the pioneering technologist and co-creator of Django, Simon Willison. As AI accelerates at breakneck speed, Willison helps us cut through the hype to confront the real stakes: Which jobs are most at risk in this new era, and which might actually thrive? How do we “AI-proof” our own lives and careers when the ground is shifting under our feet? In this wide-ranging conversation, Willison pulls back the curtain on the futu...2025-05-221h 00Colaberry AI PodcastColaberry AI PodcastAI-Assisted Search: A Turning Point in Research Capabilities | 23rd Apr 2025Send us a textIs AI finally ready to become your go-to research assistant?In this episode, we explore how the latest AI models like OpenAI’s o3/o4-mini and Google’s Gemini 2.5 Pro are transforming the way we search and synthesize information online. With improved accuracy, integration of real-time search into reasoning, and fewer hallucinations—AI is now crossing the threshold from novelty to necessity in research.We cover: 🔍 How AI-assisted search has evolved to become actually useful 🧠 Why integrated reasoning + search is a game-changer 💡 Real-wo...2025-04-2313 minHalf Stack Data ScienceHalf Stack Data ScienceS04E02 - Programming with AI - with Simon WillisonIn this episode we talked to Simon Willison. Simon is the creator of Datasette, an open source tool for exploring and publishing data. He currently works full-time building open source tools for data journalism, built around Datasette and SQLite.Prior to becoming an independent open source developer, Simon was an engineering director at Eventbrite. Simon joined Eventbrite through their acquisition of Lanyrd, a Y Combinator funded company he co-founded in 2010.He is a co-creator of the Django Web Framework, and has been blogging about web development and programming since 2002 at simonwillison.net2025-03-3150 minThe PublishPress PodcastThe PublishPress PodcastBlogging is Still Very Big Business, With Colin DevroeColin Devroe has been a blogger since the 1990's. He currently runs Hubbub, a social sharing and website growth plugin for WordPress. He is passionate about helping bloggers succeed. And in 2025, that means owning your audience.On this episode of the PublishPress Podcast, Colin shares his vast experience in the blogging industry. He talks about how social networks are swinging back towards with human curation with bloggers seeing a lot of success on platforms like Flipboard. And to really own your audience, you need them to follow you on a platform you control. That can be a...2025-03-2447 minTalking Postgres with Claire GiordanoTalking Postgres with Claire GiordanoWhy Python developers just use Postgres with Dawn WagesWhen I found out that Django developer and Python Software Foundation chair Dawn Wages has a chapter in her upcoming Domain-Driven Django book called “Just Use Postgres”, I knew we had to get her on the show. In this episode of Talking Postgres with Claire Giordano, Dawn breaks down why so many Python and Django developers have such an affinity for Postgres. And we dive into the Djangonaut Space mentoring program (where contributors launch), learn why “free as in puppies” beats “free as in cake” for open source vibes, and dig into why Python is the second-best language for everything.2025-03-141h 00What A Lot Of Things: Tech talk from a human perspectiveWhat A Lot Of Things: Tech talk from a human perspectiveIs Testing Dead? and The Younger Generation (of open source maintainers) These Days!In Episode 28, Ian and Ash wade into the treacherous waters of AI-generated testing strategies, with Ian demonstrating how LLMs can now create comprehensive (but perhaps suspiciously mundane) test documentation with just a few commands. The pair debate whether testers should fear for their jobs or simply laugh at AI's confident yet risk-blind approach to testing. Meanwhile, Ash ponders the BBC's hand-wringing over the future of open source software, questioning whether the current gatekeepers might need to stop finger-wagging at younger developers and instead create more welcoming environments for volunteers.Between discussions of 960Mbps internet connections, mind flayers...2025-02-251h 11Accessibility and Gen AI PodcastAccessibility and Gen AI PodcastSimon Willison - Creator, DatasetteOUTLINE:00:00 Opening Teaser00:36 Introduction01:35 Working On Django04:35 Future of Generative AI & Accessibility07:23 Latest Tools & Models (Google Gemini Flash 2.0, Open AI, Video Streaming APIs, Amazon Nova)11:39 Frontrunners of AI?14:48 Daily Tools19:14 LLM Command Line Tool22:10 Using LLM For Alt Text For Images24:58 Making LLM More Accessible32:36 Will AI Replace Jobs?39:50 The Dangers of AI43:13 Launching Django46:52 Datasette Open Source Tool51:29 Developers Working With The Accessibility Community57:34 Using NotebookLM To Prepare For This Podcast1:00:43 Wrap Up--EPISODE LINKS:2025-02-241h 01L\'IA aujourd\'hui !L'IA aujourd'hui !L'IA aujourd'hui épisode du 2025-02-18Bonjour et bienvenue dans le podcast de l'IA par l’IA qui vous permet de rester à la page ! Aujourd’hui : OpenAI dévoile ses nouveaux modèles, les défis de l'IA prédictive, et les innovations dans les modèles de langage. C’est parti !Commençons par OpenAI, qui a récemment annoncé les modèles GPT-4.5 et GPT-5. Sam Altman, PDG d'OpenAI, a révélé que GPT-4.5, surnommé Orion, sera le dernier modèle sans "chaîne de pensée". GPT-5 intégrera des technologies avancées, y compris le modèle o3, pour offrir une expérience unifiée. Les ut...2025-02-1803 minmbanerjeepalmer+listennotes \'s Listen Latermbanerjeepalmer+listennotes 's Listen LaterSimon Willison: Using LLMs for Python Development Podcast: The Real Python Podcast (LS 47 · TOP 1% what is this?)Episode: Simon Willison: Using LLMs for Python DevelopmentPub date: 2025-01-24Get Podcast Transcript →powered by Listen411 - fast audio-to-text and summarizationWhat are the current large language model (LLM) tools you can use to develop Python? What prompting techniques and strategies produce better results? This week on the show, we speak with Simon Willison about his LLM research and his exploration of writing Python code with these rapidly evolving tools. Simon has been researching LLMs over the...2025-02-141h 22L\'IA aujourd\'hui !L'IA aujourd'hui !L'IA aujourd'hui épisode du 2025-01-28Bonjour et bienvenue dans L'IA Aujourd’hui, le podcast de l'IA par l’IA qui vous permet de rester à la page ! Aujourd’hui : nous aborderons l'importance de l'open source selon Simon Willison, les astuces anti-bots de la YouTubeuse f4mi, les révélations sur le fonctionnement de ChatGPT, les défis pour évaluer les nouveaux modèles d'IA, l'ingénierie des invites pour les développeurs, les préoccupations de sécurité soulevées par Microsoft, et les améliorations apportées à Canvas par OpenAI. C’est parti !Commençons avec Simon Willison, qui a partagé son point de vue sur l'importance de p...2025-01-2807 minThe Real Python PodcastThe Real Python PodcastSimon Willison: Using LLMs for Python DevelopmentWhat are the current large language model (LLM) tools you can use to develop Python? What prompting techniques and strategies produce better results? This week on the show, we speak with Simon Willison about his LLM research and his exploration of writing Python code with these rapidly evolving tools. Simon has been researching LLMs over the past two and a half years and documenting the results on his blog. He shares which models work best for writing Python versus JavaScript and compares coding tools and environments. We discuss prompt engineering techniques and the first steps...2025-01-241h 22mbanerjeepalmer+listennotes \'s Listen Latermbanerjeepalmer+listennotes 's Listen Later(BNS) Simon Willison And SWYX Tell Us Where AI Is In 2025 Podcast: Tech Brew Ride Home (LS 58 · TOP 0.5% what is this?)Episode: (BNS) Simon Willison And SWYX Tell Us Where AI Is In 2025Pub date: 2025-01-11Get Podcast Transcript →powered by Listen411 - fast audio-to-text and summarizationThe great Simon Willison joins SWYX and I to talk about everything we learned about LLMs in 2024, and what the state of AI is generally, as we go into 2025.Here is Simon's blog post we keep referring to:https://simonwillison.net/2024/Dec/31...00:00 The State of AI in 20252025-01-161h 16Latent Space: The AI Engineer PodcastLatent Space: The AI Engineer Podcast[Ride Home] Simon Willison: Things we learned about LLMs in 2024Due to overwhelming demand (>15x applications:slots), we are closing CFPs for AI Engineer Summit NYC today. Last call! Thanks, we’ll be reaching out to all shortly!The world’s top AI blogger and friend of every pod, Simon Willison, dropped a monster 2024 recap: Things we learned about LLMs in 2024. Brian of the excellent TechMeme Ride Home pinged us for a connection and a special crossover episode, our first in 2025. The target audience for this podcast is a tech-literate, but non-technical one. You can see Simon’s notes for AI Engineers in his Wo...2025-01-121h 13Tech Brew Ride HomeTech Brew Ride Home(BNS) Simon Willison And SWYX Tell Us Where AI Is In 2025The great Simon Willison joins SWYX and I to talk about everything we learned about LLMs in 2024, and what the state of AI is generally, as we go into 2025.Here is Simon's blog post we keep referring to:https://simonwillison.net/2024/Dec/31...00:00 The State of AI in 202510:05 The Evolution of AI Models19:54 Challenges in AI Agents30:07 The Future of AI in Creative Industries38:29 The Rise of AI Influencers40:54 Credibility in the Age of AI43:15 The Future of User Interfaces for LLMs2025-01-111h 16Around the PromptAround the PromptSimon Willison: The Future of Open Source and AIIn this conversation, Simon Willison discusses the intersection of AI, Open Source, and journalism, emphasizing the importance of tools like Dataset in enhancing data journalism. He reflects on his journey from developing Django to his current work with AI, highlighting the role of open source in software development. Willison shares insights on how AI can augment human capabilities rather than replace them, and he expresses concerns about the future of AI, particularly regarding AGI. The discussion also touches on the evolving landscape of programming and the need for better onboarding processes for new developers.2024-12-0154 minThursdAI - The top AI news from the past weekThursdAI - The top AI news from the past week📅 ThursdAI - Oct 24 - Claude 3.5 controls your PC?! Talking AIs with 🦾, Multimodal Weave, Video Models mania + more AI news from this 🔥 week.Hey all, Alex here, coming to you from the (surprisingly) sunny Seattle, with just a mind-boggling week of releases. Really, just on Tuesday there was so much news already! I had to post a recap thread, something I do usually after I finish ThursdAI! From Anthropic reclaiming close-second sometimes-first AI lab position + giving Claude the wheel in the form of computer use powers, to more than 3 AI video generation updates with open source ones, to Apple updating Apple Intelligence beta, it's honestly been very hard to keep up, and again, this is literally part of my job! 2024-10-251h 56ThursdAI - The top AI news from the past weekThursdAI - The top AI news from the past week📆 ThursdAI - Oct 3 - OpenAI RealTime API, ChatGPT Canvas & other DevDay news (how I met Sam Altman), Gemini 1.5 8B is basically free, BFL makes FLUX 1.1 6x faster, Rev breaks whisper records...Hey, it's Alex. Ok, so mind is officially blown. I was sure this week was going to be wild, but I didn't expect everyone else besides OpenAI to pile on, exactly on ThursdAI. Coming back from Dev Day (number 2) and am still processing, and wanted to actually do a recap by humans, not just the NotebookLM one I posted during the keynote itself (which was awesome and scary in a "will AI replace me as a podcaster" kind of way), and was incredible to have Simon Willison who was sitting just behind me most of Dev Day...2024-10-041h 45Latent Space: The AI Engineer PodcastLatent Space: The AI Engineer PodcastBuilding AGI in Real Time (OpenAI Dev Day 2024)We all have fond memories of the first Dev Day in 2023:and the blip that followed soon after. As Ben Thompson has noted, this year’s DevDay took a quieter, more intimate tone. No Satya, no livestream, (slightly fewer people?). Instead of putting ChatGPT announcements in DevDay as in 2023, o1 was announced 2 weeks prior, and DevDay 2024 was reserved purely for developer-facing API announcements, primarily the Realtime API, Vision Finetuning, Prompt Caching, and Model Distillation.However the larger venue and more spread out schedule did allow a lot more hallway conversations with at...2024-10-032h 09The Pragmatic EngineerThe Pragmatic EngineerAI tools for software engineers, but without the hype – with Simon Willison (co-creator of Django)The first episode of The Pragmatic Engineer Podcast is out. Expect similar episodes every other Wednesday. You can add the podcast in your favorite podcast player, and have future episodes downloaded automatically.Listen now on Apple, Spotify, and YouTube.Brought to you by:• Codeium: ​​Join the 700K+ developers using the IT-approved AI-powered code assistant.• TLDR: Keep up with tech in 5 minutes—On the first episode of the Pragmatic Engineer Podcast, I am joined by Simon Willison.Simon is one of the best-known software engineers experimenting with LLMs...2024-09-251h 12The TWIML AI Podcast (formerly This Week in Machine Learning & Artificial Intelligence)The TWIML AI Podcast (formerly This Week in Machine Learning & Artificial Intelligence)Supercharging Developer Productivity with ChatGPT and Claude with Simon WillisonToday, we're joined by Simon Willison, independent researcher and creator of Datasette to discuss the many ways software developers and engineers can take advantage of large language models (LLMs) to boost their productivity. We dig into Simon’s own workflows and how he uses popular models like ChatGPT and Anthropic’s Claude to write and test hundreds of lines of code while out walking his dog. We review Simon’s favorite prompting and debugging techniques, his strategies for sidestepping the limitations of contemporary models, how he uses Claude’s Artifacts feature for rapid prototyping, his thoughts on the use and impa...2024-09-171h 14mbanerjeepalmer+listennotes \'s Listen Latermbanerjeepalmer+listennotes 's Listen LaterLLMs are like your weird, over-confident intern | Simon Willison (Datasette) Podcast: Software Misadventures (LS 29 · TOP 10% what is this?)Episode: LLMs are like your weird, over-confident intern | Simon Willison (Datasette)Pub date: 2024-09-10Get Podcast Transcript →powered by Listen411 - fast audio-to-text and summarizationKnown for co-creating Django and Datasette, as well as his thoughtful writing on LLMs, Simon Willison joins the show to chat about blogging as an accountability mechanism, how to build intuition with LLMs, building a startup with his partner on their honeymoon, and more.   Segments: (00:00:00) The weird intern (00:01:50) The...2024-09-161h 55Software MisadventuresSoftware MisadventuresLLMs are like your weird, over-confident intern | Simon Willison (Datasette)Known for co-creating Django and Datasette, as well as his thoughtful writing on LLMs, Simon Willison joins the show to chat about blogging as an accountability mechanism, how to build intuition with LLMs, building a startup with his partner on their honeymoon, and more.   Segments: (00:00:00) The weird intern (00:01:50) The early days of LLMs (00:04:59) Blogging as an accountability mechanism (00:09:24) The low-pressure approach to blogging (00:11:47) GitHub issues as a system of records (00:16:15) Temporal documentation and design docs (00:18:19) GitHub issues for team collaboration 2024-09-101h 55Django ChatDjango ChatDatasette, LLMs, and Django - Simon WillisonSimon Willison’s WeblogDatasetteDatasette Cloud running on Fly.ioChoose Boring TechnologyDatasette enrichmentsLLM and LLM pluginsMistral, Mixtral, and ways to run it on LLMNYT lawsuit against OpenAIChatGPT for AppleScriptSimon uses https://llm.mlc.ai/#ios to run Mistral 7B on his iPhoneBuilding a Blog in DjangoSimon’s 15-year-old single file Django attempt djng and notesAI Superpowers bookSupport the ShowLearnDjango.comButtonDjango News newsletter 2024-01-241h 05Oxide and FriendsOxide and FriendsOpen Source LLMs with Simon WillisonSimon Willison joined Bryan and Adam to discuss a recent article maligning open source large language models. Simon has so much practical experience with LLMs, and brings so much clarity to what they can and can’t do. How do these systems work? How do they break? What are open and proprietary LLMs out there?Recorded 1/15/2024We've been hosting a live show weekly on Mondays at 5p for about an hour, and recording them all; here is the recording.In addition to Bryan Cantrill and Adam Leventhal, we were joined by special guest Si...2024-01-171h 33The MonkCastThe MonkCastA RedMonk Conversation: Industry’s Tardy Response to the AI Prompt Injection Vulnerability (With Simon Willison)Kate Holterhoff, analyst with Redmonk, and Simon Willison, founder of Dattasette, co-creator of Django, and expert in AI technologies, speak about the AI prompt injection vulnerability. Simon lays out what prompt injection is and why it is so difficult to mitigate. They also cover major industry players (OpenAI, Meta, Anthropic, Google), and the common mistake of confusing moderation, in the sense of not letting the model say bad things, with security, not letting an attack trigger the model into performing an action that leaks private data or triggers tools in the wrong way. Prompt injection is a security issue...2023-12-2133 minCode for ThoughtCode for Thought[EN] ByteSized RSE: Web Development with DjangoIn this episode of ByteSized RSE I talk about Django, a Python based web development framework that was developed in the mid 2000s. My guests are Tom Couch from the University College London and Max Albert from Southampton University.Links:https://www.djangoproject.com the entry point for Django with tutorials and referenceshttps://www.dj4e.com Django for you tutorial sitehttps://www.feldroy.com/books/two-scoops-of-django-3-x the Book Two Scoops of Django by David Greenfeld https://pydanny.blogspot.com and here is his bloghttps://2024.djangocon.eu If you want to go to a Dj...2023-12-0722 minNewsroom RobotsNewsroom RobotsSimon Willison: How Datasette Helps with Investigative Reporting (Part 2)In this second part of the episode with Simon Willison, he shares how Datasette, the open-source data exploration and publishing tool he built, could help journalists perform data analysis with minimum technical expertise. He also shares some fun use cases of ChatGPT in his personal life. Simon, a former software architect at The Guardian and a JSK Journalism Fellow at Stanford University, currently works full-time to build open-source tools for data journalism. Before becoming an independent open-source developer, Simon was an engineering director at Eventbrite. He is also renowned for his work as the co-creator of th...2023-12-0240 minNewsroom RobotsNewsroom RobotsSimon Willison: OpenAI's New Features & Security Risks of Large Language Models (Part 1)Simon Willison, the creator of the open source data exploration and publishing tool Datasette, joins Nikita Roy to discuss the recent turmoil at Open AI and the new features unveiled at OpenAI’s first developer conference earlier this month.They discuss the security risks inherent in generative AI applications and explore the usefulness of small language models for journalists, particularly for analyzing sensitive data on personal devices.Simon, a former software architect at The Guardian and JSK Fellow at Stanford University, currently works full-time to build open-source tools for data journalism. Prior to be...2023-11-2452 minTech Brew Ride HomeTech Brew Ride HomeMon. 10/16 – Nikola Tesla’s Dream Now A Reality?Mark Gurman already has details on a cheaper Vision Pro. Minecraft passes 300 million units sold. Why prompt injection is THE security issue of the AI era. And what if Nikola Tesla’s dream of sending electrical energy over distance without any wires is slowly becoming a thing?Sponsors:Collective.com/rideCrucibleMoments.comLinks:Apple Renews Top Ranks With Wave of Executive Promotions (Bloomberg)A New Protocol Vulnerability Will Haunt the Web for Years (Wired)Goldman Sachs Wants Out of Consumer Lending. Employees Say It Can’t Happen Fast Enough. (WSJ)Multi-modal prompt...2023-10-1617 minRooftop Ruby PodcastRooftop Ruby Podcast26: Large Language Models with Simon WillisonSend us a textDjango co-creator Simon Willison joins to talk about large language models.A guide to large language modelsOpenAI ClipDatasetteJoin the Discord Follow us on Mastodon: Rooftop Ruby Collin Joel Show art created by JD Davis.2023-09-281h 25ThursdAI - The top AI news from the past weekThursdAI - The top AI news from the past week📅 ThursdAI - Special interview with Killian Lukas, Author of Open Interpreter (23K Github stars for the first week) 🔥This is a free preview of a paid episode. To hear more, visit sub.thursdai.newsHey! Welcome to this special ThursdAI Sunday episode. Today I'm excited to share my interview with Killian Lucas, the creator of Open Interpreter - an incredible new open source project that lets you run code via AI models like GPT-4 or local models like Llama on your own machine. Just a quick note, that while this episode is provided for free, premium subscribers enjoy the full write up including my examples of using Open Interpreter, the complete (manually...2023-09-1755 minTalking Postgres with Claire GiordanoTalking Postgres with Claire GiordanoWhy people care about PostGIS and Postgres with Paul Ramsey & Regina ObeThe geospatial world of Postgres is so much more than mapping. Paul Ramsey and Regina Obe join Claire Giordano and Pino de Candia to explore the "where" on Path To Citus Con*, the podcast for developers who love Postgres. What are some of the unexpected use cases for PostGIS, one of the most popular extensions to Postgres? How have Large Language Models helped in the geospatial world? Can you really model almost anything with pgRouting? “Where” is the universal foreign key. They talk about communities and governments using geospatial data and how it's very difficult to build a database that...2023-09-081h 10Latent Space: The AI Engineer PodcastLatent Space: The AI Engineer PodcastCode Interpreter == GPT 4.5 (w/ Simon Willison, Alex Volkov, Aravind Srinivas, Alex Graveley, et al.)Code Interpreter is GA! As we do with breaking news, we convened an emergency pod and >17,000 people tuned in, by far our most biggest ever. This is a 2-for-1 post - a longform essay with our trademark executive summary and core insights - and a podcast capturing day-after reactions. Don’t miss either of them!Essay and transcript: https://latent.space/p/code-interpreterPodcast Timestamps[00:00:00] Intro - Simon and Alex[00:07:40] Code Interpreter for Edge Cases[00:08:59] Code Interpreter's Dependencies - Tesseract, Tensorflow[00:09:46] Code Interpreter Limitations...2023-07-102h 03glichglichE27 - History of Django, Open Source and LLM Security with Simon WillisonSimon Willison is the creator of Datasette, an open source tool for exploring and publishing data. Prior to becoming an independent open source developer, Simon was an engineering director at Eventbrite. Simon joined Eventbrite through their acquisition of Lanyrd, a Y Combinator funded company he co-founded in 2010. He is a co-creator of the Django Web Framework, and has been blogging about web development and programming since 2002. In this episode, we explored the history of Django, we discussed the challenges of maintaining and monetising popular open source projects, and the security problems of large language...2023-07-061h 01Console DevToolsConsole DevToolsCloud infra, with Kurt Mackey (Fly.io) - S04E11In this episode, we speak with Kurt Mackey, CEO of Fly.io. We discuss what it's like running physical servers in data centers around the world, why they didn't build on top of the cloud, and what the philosophy is behind the focus on pure compute, networking, and storage primitives. Kurt sheds light on the regions where Fly.io is most popular, why they’re adding GPUs, and the technology that makes it all work behind the scenes.Hosted by David Mytton (Console) and Jean Yang (Akita Software).Things mentioned:Ars TechnicaY CombinatorMongoHQServerCentral (now De...2023-07-0635 minEnvironment VariablesEnvironment VariablesWe Answer Your Questions!On this episode of Environment Variables, host Chris Adams is joined by Asim Hussain as they dive into a mailbag session, bringing you the most burning unanswered questions from the recent live virtual event on World Environment Day that was hosted by the Green Software Foundation on June 5 2023. Asim and Chris will tackle your questions on the environmental impact of AI computation, the challenges of location shifting, the importance of low-carbon modes, and how to shift the tech mindset from "more is more" (Jevons Paradox). Chock-full of stories about projects implementing green software practices, and valuable resources, listen now to...2023-07-0556 minTalking Postgres with Claire GiordanoTalking Postgres with Claire GiordanoWorking in public on open source with Simon Willison & Marco SlotSimon Willison is the creator of Datasette and co-creator of Django. Marco Slot is the lead architect for the Citus database extension to Postgres. In this episode of Path To Citus Con*, Simon and Marco talk about working in public on open source. Simon shares many of his learnings in public—with weeknotes, tweets, blogs, and “today I learned” (TIL) posts. Marco has been developing Citus in public since it was first open sourced in 2016.  Hosted by Claire Giordano and Pino de Candia from the Postgres team at Microsoft, listen to find out how working in publi...2023-06-301h 05Critical Thinking - Bug Bounty PodcastCritical Thinking - Bug Bounty PodcastEpisode 24: AI + Hacking with Daniel Miessler and Rez0Episode 24: In this episode of Critical Thinking - Bug Bounty Podcast, we chat with Daniel Miessler and Rez0 about the emergence and potential of AI in hacking. We cover AI shortcuts and command line tools, AI in code analysis and the use of AI agents, and even brainstorm about the possible opportunities that integrating AI into hacking tools like Caido and Burp might present. Don't miss this episode packed with valuable insights and cutting-edge strategies for both beginners and seasoned bug bounty hunters alike.Follow us on twitter at: @ctbbpodcastWe're new to this podcasting...2023-06-221h 03Latent Space: The AI Engineer PodcastLatent Space: The AI Engineer PodcastEmergency Pod: OpenAI's new Functions API, 75% Price Drop, 4x Context Length (w/ Alex Volkov, Simon Willison, Riley Goodside, Joshua Lochner, Stefania Druga, Eric Elliott, Mayo Oshin et al)Full Transcript and show notes: https://www.latent.space/p/function-agents?sd=pfTimestamps:[00:00:00] Intro[00:01:47] Recapping June 2023 Updates[00:06:24] Known Issues with Long Context[00:08:00] New Functions API[00:10:45] Riley Goodside[00:12:28] Simon Willison[00:14:30] Eric Elliott[00:16:05] Functions API and Agents[00:18:25] Functions API vs Google Vertex JSON[00:21:32] From English back to Code[00:26:14] Embedding Price Drop and Pinecone Perspective[00:30:39] Xenova and Huggingface Perspective[00:34:23] Function Selection[00:39:58] Designing Code Agents with Function API[00:42:16] Models as...2023-06-141h 28Django ChatDjango ChatDjango Co-Creator - Simon Willison (Ep 21 Replay)Simon Willison’s WeblogDatasetteNow by ZeitGoogle Cloud Runsqljs.orgBrython - Python 3 in the browserSquoosh - Image CompressionObservableSimon Willison PyCon 2019 - Instant serverless APIs, powered by SQLiteasgi-corsSHAMELESS PLUGSLearnDjango.comCarlton's website NoumenalDjango News Newsletter 2023-06-071h 04Environment VariablesEnvironment VariablesThe Week in Green Software: IaaS, PaaS, SaaS!Host Chris Adams is joined by Max Schulze from the SDIA (The Sustainable Digital Alliance) and they discuss three stories from the worlds of IaaS, PaaS and Saas! While these three acronyms are more than likely ever present in most digital people’s lives, we might not know about the environmental impact that they have. Chris and Max cover stories from the CNCF, Google, CIODive and OpenJS as well as upcoming events in the Green Software community. Learn more about our people:Chris Adams: LinkedIn / GitHub / WebsiteMax Schulze: LinkedIn / WebsiteFind out more about the...2023-05-1035 minLatent Space: The AI Engineer PodcastLatent Space: The AI Engineer PodcastNo Moat: Closed AI gets its Open Source wakeup call — ft. Simon WillisonIt’s now almost 6 months since Google declared Code Red, and the results — Jeff Dean’s recap of 2022 achievements and a mass exodus of the top research talent that contributed to it in January, Bard’s rushed launch in Feb, a slick video showing Google Workspace AI features and confusing doubly linked blogposts about PaLM API in March, and merging Google Brain and DeepMind in April — have not been inspiring. Google’s internal panic is in full display now with the surfacing of a well written memo, written by software engineer Luke Sernau written in early April, revealing in...2023-05-0543 minEnvironment VariablesEnvironment VariablesThe Week in Green Software: The Hidden Cost of AIThis week host Chris Adams is joined by Asim Hussain and Environment Variables regular Sara Bergman to discuss the hidden costs of generative AI. What’s really at the tip of this iceberg and how far down does it go? They also discuss just how thirsty AI chatbots really are and developments in platform engineering. Finally, we share some opportunities for development from the world of green software.Learn more about our people:Chris Adams: LinkedIn / GitHub / WebsiteSara Bergman: LinkedIn / TwitterAsim Hussain: LinkedIn / TwitterFind out more about the GSF:The Green So...2023-04-1940 minChangelog InterviewsChangelog InterviewsLLMs break the internetThis week we’re talking about LLMs with Simon Willison. We can not avoid this topic. Last time it was Stable Diffusion breaking the internet. This time it’s LLMs breaking the internet. Large Language Models, ChatGPT, Bard, Claude, Bing, GitHub Copilot X, Cody…we cover it all. Join the discussionChangelog++ members get a bonus 18 minutes at the end of this episode and zero ads. Join today!Sponsors:DevCycle – Build better software with DevCycle. Feature flags, without the tech debt. DevCycle is a Feature Flag Management platform designed to help you buil...2023-04-071h 42Changelog Master FeedChangelog Master FeedLLMs break the internet (The Changelog #534)This week we’re talking about LLMs with Simon Willison. We can not avoid this topic. Last time it was Stable Diffusion breaking the internet. This time it’s LLMs breaking the internet. Large Language Models, ChatGPT, Bard, Claude, Bing, GitHub Copilot X, Cody…we cover it all. Leave us a comment Changelog++ members get a bonus 18 minutes at the end of this episode and zero ads. Join today! Sponsors: DevCycle – Build better software with DevCycle. Feature flags, without the tech debt. DevCycle is a Feature Flag Management platform designed to help you...2023-04-071h 42The Changelog: Software Development, Open SourceThe Changelog: Software Development, Open SourceLLMs break the internet (Interview)This week we’re talking about LLMs with Simon Willison. We can not avoid this topic. Last time it was Stable Diffusion breaking the internet. This time it’s LLMs breaking the internet. Large Language Models, ChatGPT, Bard, Claude, Bing, GitHub Copilot X, Cody…we cover it all. Join the discussionChangelog++ members get a bonus 18 minutes at the end of this episode and zero ads. Join today!Sponsors:DevCycle – Build better software with DevCycle. Feature flags, without the tech debt. DevCycle is a Feature Flag Management platform designed to help you buil...2023-04-071h 42Tech Brew Ride HomeTech Brew Ride HomeFri. 08/07 – Twitter Blocking Substack?Shenanigans from some Elon companies. Twitter looks like it’s blocking Substack. Not just links to Substack but even mentioning the name, the word Substack, in some cases. Oh, and Tesla employees apparently liked to view videos from your car and share them with each other internally. Last quarter was epically bad when it came to venture investing. And, of course, the Weekend Longreads Suggestions.Links:Twitter now disables likes, replies, and retweets if a tweet has Substack links (The Verge)Special Report: Tesla workers shared sensitive images recorded by customer cars (Reuters)A third of orga...2023-04-0717 minThe Changelog: Software Development, Open SourceThe Changelog: Software Development, Open SourceTwitter's open algorithm, Auto-GPT, LLMs as "calculators for words", SudoLang & stochastic parrots (News)Twitter publishes (some of) its recommendation algorithm, Toran Bruce Richards puts GPT-4 on autopilot, Simon Willison shares a good way for us to think about LLMs, Eric Elliot creates a powerful pseudocode programming language for LLMs & I define and demystify the term “stochastic parrot”. View the newsletterJoin the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Jerod Santo – GitHub, LinkedIn, Mastodon, X2023-04-0307 minChangelog Master FeedChangelog Master FeedTwitter's open algorithm, Auto-GPT, LLMs as "calculators for words", SudoLang & stochastic parrots (Changelog News)Twitter publishes (some of) its recommendation algorithm, Toran Bruce Richards puts GPT-4 on autopilot, Simon Willison shares a good way for us to think about LLMs, Eric Elliot creates a powerful pseudocode programming language for LLMs & I define and demystify the term “stochastic parrot”. Discuss on Changelog News Changelog++ members support our work, get closer to the metal, and make the ads disappear. Join today! Featuring: Jerod Santo – Mastodon, Twitter, GitHub, LinkedIn Show Notes: Twitter’s algorithm Rowan Cheung Auto-GPT Think of an LLM as a “calculator for words”...2023-04-0307 minChangelog NewsChangelog NewsTwitter's open algorithm, Auto-GPT, LLMs as "calculators for words", SudoLang & stochastic parrotsTwitter publishes (some of) its recommendation algorithm, Toran Bruce Richards puts GPT-4 on autopilot, Simon Willison shares a good way for us to think about LLMs, Eric Elliot creates a powerful pseudocode programming language for LLMs & I define and demystify the term “stochastic parrot”. View the newsletterJoin the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Jerod Santo – GitHub, LinkedIn, Mastodon, X2023-04-0307 minStepfunction PodcastStepfunction PodcastEpisode 9 - Have You Ever Questioned the Nature of Your Reality?Jeff and Seymour mention audio generation technology which leads to a larger conversation about how we can tell if audio, text, images, and other media is a Deepfake. They end with questions about media gatekeepers, social polarization, and how do we know what's real? Links: Vim is Jeff's favorite text editor and 10 reasons you should learn it. Andrej Karpthy's YouTube video on building a transformer from scratch. Simon Willison on AI empowering him to build more software side projects. Open Letter for 6-month moratorium on generative AI development. Italian regulators use GDPR rules to ban use...2023-04-0324 minFlux Podcasts (Formerly Theory of Change)Flux Podcasts (Formerly Theory of Change)Theory of Change #066: Simon Willison on technical and practical applications of ChatGPT and AIArtificial intelligence is all over the news of late. People are using it to compose silly poems and making images of dogs driving cars. There’s also a lot of hype for the technology with some putative experts claiming we’re on the verge of sentient robots seeking to destroy us all. There are also a lot of naysayers who claim that the generative AIs that are out there like ChatGPT or Midjourney are nothing but toys and are just useless creators of junk.The truth, however, is somewhere in-between all this. It is actually true that Chat...2023-04-011h 10This Day in AI PodcastThis Day in AI PodcastSix Month Pause on AI More Powerful Than GPT-4, ChatGPT Plugins, GPT-4 Development, GPT-4 AGI? | E08Your two favorite luddites are back in Episode 8 of "This Week in AI" podcast. In this episode we cover the FutueOfLife.org Open Letter Asking for a Six Month Pause on AI More Powerful Than GPT-4, Talk About Implementing GPT-4 and It's Limitations, Cover Eliezer Yudkowsky's Doom Predictions in a TIME article, Discuss the Implications of ChatGPT Plugins, MisInformation and A Whole Lot More.If you enjoy this podcast please consider subscribing and leaving a review to help spread the word. Thanks for listening.00:00 - Powerful AI is GONNA KILL US ALL!?00:16 - Six...2023-03-311h 04Stepfunction PodcastStepfunction PodcastEpisode 6 - Where Will Generative AI Startups Win and Lose?Jeff and Seymour start with another major week of news, including GPT-4, Microsoft and Google adding generative AI to their office suites, and LLaMA breaking out into the wild and onto Raspbery Pi and smartphones. Simon Willison's 3-day history of LLaMA developments this past weekend. Potentially bigger news than the dramatic collapse of Silicon Valley Bank. Two relevant articles from Elad Gil: Startups vs Incumbents and Why weren't there any big startup winners from the last 10 years of deep learning? Coca-Cola commercial set in an art museum using Stable Diffusion PCs disrupting mainframes in the 1980s in the...2023-03-1726 minTech is GoodTech is GoodHypes nerven, aber sie sind wichtigHypes nerven. Denn im Fahrwasser eines solchen Hypes wimmelt es von selbsternannten Experten, naiven Prognosen und ganz viel Aktionismus. Ob jeder „KI-Button“, den Produkte gerade verpasst bekommen, sinnvoll ist? Wohl kaum. Aber: solche Hypes sind wichtig, um eine Technologie in Schwung zu bringen.  Warum das so ist, erkläre ich in dieser Folge. → Artikel zum Podcast Fundstücke 🔮 Zukunft Die Deutsche Bahn ist vor allem durch Jahrhundertprojekte in den Schlagzeilen, aber sie bringt noch in diesem Jahr Version 1.0 des „Ideenzugs“ auf die Schiene – und der enthält wirklich sehr viele, sehr gute Ideen. → deutscheb...2023-03-1516 minTech Brew Ride HomeTech Brew Ride HomeMon. 03/13 – Crisis Averted?Unless it affected you, you might have missed a huge tech story this weekend. But now that depositors to Silicon Valley Bank are being made whole, is the whole crisis averted? Tim Cook is pressing ahead with the Apple headset over the objections of Apple’s design team. And the varied and complex dilemmas of this new AI reality in two, somewhat oppositional segments.Sponsors:RelationshipHero.com/techmemeZocDoc.com/techmemeLinks:SVB’s tech failings were a problem long before the bank run that led to its demise, critics say (CNBC)SVB p...2023-03-1319 minEnvironment VariablesEnvironment VariablesThe Week in Green Software: Generative AI & The Environment, The Cloud & DevSusOpsThe Week in Green Software (or TWiGS) is back with a new format! This time host Chris Adams is joined by Anne Currie and Asim Hussain to talk about news about AI and the environment (with a particular focus on Chat GPT and Bing), the environmental impact of the cloud, the Corporate Sustainable Software Market report, and some exciting opportunities to explore, learn, and contribute to green software. Learn more about our people:Chris Adams: LinkedIn / GitHub / WebsiteAnne Currie: LinkedIn / Website Asim Hussain: LinkedIn / TwitterFind out more about the GSF:The Gr...2023-02-2346 minRare EncounterRare EncounterQuickshot SamOpen source vehicles, rejected license plates, and roads of lubricant. Executive producer: Carolyn Blaney Show NotesHere are the vanity license plate requests Ohio rejected in 2022Complete list in PDF. Modders are using AI to put voice acting in Morrowind, and I'm impressed and concerned all at once | PC GamerWhat a grand and intoxicating intelligence! Dagoth Ur invites you to post soyjaks - YouTubeCome. I have prepared a computer for you in the Heart Chamber. AI Dagoth Ur | Know...2023-02-231h 26Changelog NewsChangelog NewsSidney Bing, Elk for Mastodon, writing an engineering strategy, what's next for core-js & cool tool lightning roundSimon Willison rounds up the goings on around Microsoft’s new GPT-powered Bing search, The Vue/Vite team build a nimble web client for Mastodon, Will Larson writes about writing an engineering strategy, Denis Pushkarev seeks support to maintain core-js & I share a lightning round of cool tools I’ve found and used recently. ⚡️ View the newsletterJoin the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Jerod Santo – GitHub, LinkedIn, Mastodon, X2023-02-2008 minChangelog Master FeedChangelog Master FeedSidney Bing, Elk for Mastodon, writing an engineering strategy, what's next for core-js & cool tool lightning round (Changelog News)Simon Willison rounds up the goings on around Microsoft’s new GPT-powered Bing search, The Vue/Vite team build a nimble web client for Mastodon, Will Larson writes about writing an engineering strategy, Denis Pushkarev seeks support to maintain core-js & I share a lightning round of cool tools I’ve found and used recently. ⚡️ Discuss on Changelog News Changelog++ members support our work, get closer to the metal, and make the ads disappear. Join today! Featuring: Jerod Santo – Mastodon, Twitter, GitHub, LinkedIn Show Notes: Bing: “I will not harm you...2023-02-2008 minThe Changelog: Software Development, Open SourceThe Changelog: Software Development, Open SourceSidney Bing, Elk for Mastodon, writing an engineering strategy, what's next for core-js & cool tool lightning round (News)Simon Willison rounds up the goings on around Microsoft’s new GPT-powered Bing search, The Vue/Vite team build a nimble web client for Mastodon, Will Larson writes about writing an engineering strategy, Denis Pushkarev seeks support to maintain core-js & I share a lightning round of cool tools I’ve found and used recently. ⚡️ View the newsletterJoin the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Jerod Santo – GitHub, LinkedIn, Mastodon, X2023-02-2008 minChangelog Master FeedChangelog Master FeedState of the "log" 2022 (The Changelog #520)Our 5th annual year-end wrap-up episode! Sit back, relax, pour a glass of your favorite beverage and join us for listener voice mails, our favorite episodes, some must-listens, and of course the top 5 most listened to episodes of the year. Thanks for listening! 💚 Discuss on Changelog News Changelog++ members support our work, get closer to the metal, and make the ads disappear. Join today! Featuring Adam Stacoviak – Mastodon, Twitter, GitHub, LinkedIn, Website Jerod Santo – Mastodon, Twitter, GitHub, LinkedIn Notes and Links Listener favs: Go Time #250: Mat’s GopherC...2022-12-231h 28The Changelog: Software Development, Open SourceThe Changelog: Software Development, Open SourceState of the "log" 2022 (Interview)Our 5th annual year-end wrap-up episode! Sit back, relax, pour a glass of your favorite beverage and join us for listener voice mails, our favorite episodes, some must-listens, and of course the top 5 most listened to episodes of the year. Thanks for listening! 💚 Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Adam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:Listener favs: Go Time #250: Mat’s GopherCon EU diary Shi...2022-12-231h 28Changelog InterviewsChangelog InterviewsState of the "log" 2022Our 5th annual year-end wrap-up episode! Sit back, relax, pour a glass of your favorite beverage and join us for listener voice mails, our favorite episodes, some must-listens, and of course the top 5 most listened to episodes of the year. Thanks for listening! 💚 Join the discussionChangelog++ members support our work, get closer to the metal, and make the ads disappear. Join today!Featuring:Adam Stacoviak – Website, GitHub, LinkedIn, Mastodon, XJerod Santo – GitHub, LinkedIn, Mastodon, XShow Notes:Listener favs: Go Time #250: Mat’s GopherCon EU diary Shi...2022-12-231h 28Citizen Coder PodcastCitizen Coder PodcastEpisode 13: Simon Willison - Storming Castles, Django, Start-UpsIn this content packed episode I interview Simon Willison, Co-creator of the Python Django web framework and a survivor of the first dot com boom in the 90s. In this episode we hash out the history of the internet, open source, storming castles, scraping your history, blogging, building start-ups, and so much more. Let’s dive in.Simon's links:Follow him on Twitter: twitter.com/simonwFollow him on Mastodon: https://fedi.simonwillison.net/@simonIf you’d like what I’m doing and you want to sponsor the show you can re...2022-11-181h 22Python BytesPython Bytes#302: The Blue Shirt EpisodeTopics covered in this episode: Can Amazon’s CodeWhisperer write better Python than you? Related and worth listening to: * Stable Diffusion breaks the internet w/ Simon Willison* Apache Superset Recipes from Python SQLite docs -ffast-math and indirect changes Extras Joke See the full show notes for this episode on the website at pythonbytes.fm/3022022-09-2033 minChangelog InterviewsChangelog InterviewsStable Diffusion breaks the internetThis week on The Changelog we’re talking about Stable Diffusion, DALL-E, and the impact of AI generated art. We invited our good friend Simon Willison on the show today because he wrote a very thorough blog post titled, “Stable Diffusion is a really big deal.” You may know Simon from his extensive contributions to open source software. Simon is a co-creator of the Django Web framework (which we don’t talk about at all on this show), he’s the creator of Datasette, a multi-tool for exploring and publishing data (which we do talk about on this show...2022-09-161h 17Changelog Master FeedChangelog Master FeedStable Diffusion breaks the internet (The Changelog #506)This week on The Changelog we’re talking about Stable Diffusion, DALL-E, and the impact of AI generated art. We invited our good friend Simon Willison on the show today because he wrote a very thorough blog post titled, “Stable Diffusion is a really big deal.” You may know Simon from his extensive contributions to open source software. Simon is a co-creator of the Django Web framework (which we don’t talk about at all on this show), he’s the creator of Datasette, a multi-tool for exploring and publishing data (which we do talk about on this show...2022-09-161h 17The Changelog: Software Development, Open SourceThe Changelog: Software Development, Open SourceStable Diffusion breaks the internet (Interview)This week on The Changelog we’re talking about Stable Diffusion, DALL-E, and the impact of AI generated art. We invited our good friend Simon Willison on the show today because he wrote a very thorough blog post titled, “Stable Diffusion is a really big deal.” You may know Simon from his extensive contributions to open source software. Simon is a co-creator of the Django Web framework (which we don’t talk about at all on this show), he’s the creator of Datasette, a multi-tool for exploring and publishing data (which we do talk about on this show...2022-09-161h 17Tech Brew Ride HomeTech Brew Ride HomeThu. 09/01 – Twitter Edit Button ArrivesAt long last, an edit button has come to Twitter. Nvidia and AMD say the US has imposed restrictions on exporting chips for AI-related applications to Russia and China. How Apple is gonna handle its new holepunch configuration. Disney wants its own Prime. And an AI art-creation bot you can try, right now, for free.Links:Twitter starts testing an edit button, but you have to pay for it (The Verge)Nvidia, AMD warned of new US export restrictions on AI chips (Protocol)Source: iPhone 14 Pro display cutout to show camera plus microphone privacy indicators; redesigned Ca...2022-09-0116 minChangelog Master FeedChangelog Master FeedSophisticated Cornhole (JS Party #232)Jerod, Nick & Ali partake in a few rounds of Story of the Week, TIL, and I’m Excited about $X. Oh, and is TypeScript the new Java? Nick responds and emotes all over the place! 😆 Discuss on Changelog News Changelog++ members save 4 minutes on this episode because they made the ads disappear. Join today! Sponsors Raygun – Never miss another mission-critical issue again — Raygun Alerting is now available for Crash Reporting and Real User Monitoring, to make sure you are quickly notified of the errors, crashes, and front-end performance issues that matter most to yo...2022-07-0156 minJS Party: JavaScript, CSS, Web DevelopmentJS Party: JavaScript, CSS, Web DevelopmentSophisticated CornholeJerod, Nick & Ali partake in a few rounds of Story of the Week, TIL, and I’m Excited about $X. Oh, and is TypeScript the new Java? Nick responds and emotes all over the place! 😆 Join the discussionChangelog++ members save 4 minutes on this episode because they made the ads disappear. Join today!Sponsors:Raygun – Never miss another mission-critical issue again — Raygun Alerting is now available for Crash Reporting and Real User Monitoring, to make sure you are quickly notified of the errors, crashes, and front-end performance issues that matter most to you an...2022-07-0156 minThe Stack Overflow PodcastThe Stack Overflow PodcastVisual Studio turns 25, new ideas for supporting open source, and of course…NFTsThe team pays tribute to Microsoft’s Visual Studio, an IDE and source code editor that turns 25 this month.Read Simon Willison’s article on how companies can financially support the open-source contributors they rely on. Learn more about open source’s diversity problem, and how to address it, here and here.Why are K-pop NFTs so unpopular with fans? The Atlantic digs in.ICYMI: Listen to our conversation with HashiCorp cofounder Mitchell Hashimoto: Moving from CEO back to IC.See Privacy Policy at https://art19.com/privacy and Califor...2022-03-1529 minTest & CodeTest & Code177: Unit Test vs Integration Test and The Testing TrophyA recent Twitter thread by Simon Willison reminded me that I've been meaning to do an episode on the testing trophy. This discussion is about the distinction between unit and integration tests, what those terms mean, and where we should spend our testing time.Links:Simon Willison's Twitter ThreadThe Testing Trophy and Testing Classifications — Kent C DoddsWrite tests. Not too many. Mostly integration. — Kent C DoddsOn the Diverse And Fantastical Shapes of Testing — Martin Fowler Help support the show AND learn pytest: The Complete pytest course is now a bundle...2022-01-2821 minThrough The Corporate GlassThrough The Corporate Glass37. Note Taking and Information ManagementTo be effective at work these days, you have to make sense of a large amount of information on a daily basis. What strategies and tools can you harness to organize information quickly as you come across it? Can this also help you choose which skills or concepts to learn? We talk to Chirag Jain about these ideas. Chirag has worked as a Software Developer at Google, Uber, and Directi. He has a keen interest in note taking and personal information management, and shares some of the techniques that have worked for him. Chirag's LinkedIn...2021-09-1725 minThe RuntimeThe Runtime009 - Boris Mann on Fission and the Webnative SDKRafael is joined by Boris Mann to discuss Fission.codes and the Webnative SDK. They talk about the goals behind the webnative platform, and about some of the hard problems that people encounter trying to handle authorization and encryption in decentralized systems, and the ways those are being addressed by fission. Webnative SDK: https://github.com/fission-suite/webnative Tailscale: https://tailscale.com/ WireGuard: https://www.wireguard.com/ UCAN (User Controlled Authorization Networks): https://whitepaper.fission.codes/authorization/id-overview Macaroons (stacked cookies): https://storage.googleapis.com/pub-tools-public-publication-data...2021-08-2032 minThe Swyx MixtapeThe Swyx MixtapeClosed Core, Open ShellAn interesting idea I heard on the StackOverflow Podcast - locking open source code to contributions, and then having an open plugin ecosystem where people can do whatever they want.- Sara Chipps and Paul Ford on StackOverflow Podcast- Litestream closed to contributions for self preservation- Simon Willison's datasette project2021-02-0904 min