ga Episode 81: Interview Erich Gamma By feedproxy.google.com Published On :: Sun, 23 Dec 2007 18:37:22 +0000 This episode is a conversation with Erich Gamma. We covered the four things he is known for in chronological order. We started with design patterns and the Gang-of-Four book of which he is the lead author. We then looked at JUnit, the testing framework he coauthored with Kent Beck and how it introduced unit testing to the masses. The next topic is obviously Eclipse, where Erich and his lab in Zürich is responsible for the Java Development Tooling. We also briefly discussed The Eclipse Way, the (obviously) successful process the Eclipse team uses for developing Eclipse itself. Finally, we're looking at Erich's current endeavour, the Jazz project. Jazz is a technology for collaborative software development. Full Article
ga Episode 82: Organization of Large Code Bases with Juergen Hoeller By feedproxy.google.com Published On :: Wed, 02 Jan 2008 17:02:27 +0000 In this episode Eberhard Wolff speaks with Jürgen Höller, the co-found of the Spring framework. Spring is a tremendously successful Java framework so they discuss the design of large frameworks and the issues that arise in the evolution. Jürgen explains the management of dependencies in the framework, how to structure such a framework, how to offer compatibility for the existing user base while evolving the framework and the role of metrics during development. Full Article
ga Episode 84: Dick Gabriel on Lisp By feedproxy.google.com Published On :: Tue, 22 Jan 2008 17:50:43 +0000 In this Episode we're talking with Dick Gabriel on Lisp. We started by looking at artificial intelligence as the historic context of Lisp, the goals AI tried to reach, and how Lisp was supposed to help reach those. We then discussed the language itself, starting with the Data As Program / Program As Data concept that is a foundation for Lisp. Then we discussed adding a meta-circular interpreter, programming as language development, and the blurred boundary between language and frameworks (because everything uses the same syntax). We then talked about Lisp's type system and the importance of macros to extend the language. The next section concerned CLOS, the Common Lisp Object System and its important concepts: generic functions, multimethods, mixins, and method combination. We also briefly looked at the meta-object protocol but agreed this is a topic for a separate episode. After a discussion about the various dialects of Lisp and Scheme, we concluded the Lisp discussion by explaining why Lisp did not really catch on ("AI Winter") and Lisp's role in today's industry. We ended the episode with a couple of details about Dick's other life as a poet and his Poem a Day effort. Make sure you listen till the end, where we have added a song about Lisp (courtesy of Prometheus Music.) Full Article
ga Episode 88: The Singularity Research OS with Galen Hunt By feedproxy.google.com Published On :: Sun, 02 Mar 2008 20:58:38 +0000 In this episode we talk to Galen Hunt about the Singularity research OS. Galen is the head of Microsoft's OS Research Group and, together with a team of about 30 other researches, has built Singularity. We started our discussion by covering the basics of Singularity: why it was designed, what the goals of the project are as well as some of the architectural foundations of Singularity: software isolated processes, contract-based channels and manifest-based programs. In this context we also looked at the role of the Spec# and Sing# programming languages and the role of static analysis tools to statically verify important properties of a singularity application. We then looked a little bit more closely at the role of the kernel and how it is different from kernels in traditional OSes. In a second part of the discussion we looked at some of the experiments the group did based on the OS. These include compile-time reflection, using hardware protection domains, heterogenerous multiprocessing as well as the typed assembly language We closed the conversation with a look at some of the performance characteristics of Singularity, compatibility with traditional operating systems and a brief look at how the findings from Singularity influence product development at Microsoft. Full Article
ga Episode 92: Introduction to Game Development By feedproxy.google.com Published On :: Mon, 07 Apr 2008 13:19:51 +0000 In this Episode, Arno talks with Oliver Jucknath about the art of writing computer games. A lot of myth is attached to this area of computing, and while a game technically is just another program, it is written in a different context than typical business applications. This is true at the code level, where aggressive optimization is a focus throughout development. It also applies at the team level, where collaboration between specialists is pronounced. And the business context is different as well, which in turn influences the development effort as a whole. Full Article
ga Episode 134: Release It with Michael Nygard By feedproxy.google.com Published On :: Wed, 06 May 2009 07:25:03 +0000 This episode is a discussion with Michael Nygard about his book "Release It" which covers aspects of software architecture you often don't think of initially when starting to build a system. Some of the points we discussed were capacity planning, recovery as well as making the system suitable for operation in a data center. Full Article
ga Episode 140: Newspeak and Pluggable Types with Gilad Bracha By feedproxy.google.com Published On :: Mon, 13 Jul 2009 21:03:15 +0000 This episode is a conversation with Gilad Bracha about Newspeak, type systems in general and optional/pluggable types in particular. It was recorded during DSL Devcon in the gardens of the Microsoft campus, and thanks to Gilad's "speaking like a book" way of talking it is published completely unedited :-) Full Article
ga Episode 166: Living Architectures with John Wiegand By www.se-radio.net Published On :: Wed, 18 Aug 2010 19:37:29 +0000 This time we have John Wiegand on the mic for an episode on architectures and agile software development. We talk about the role of architectures in an agile world and why architectures change and need to change over time. We discuss the characteristics of those living architectures, using the Eclipse and the Jazz projects as examples, and the surrounding development methods for such environments. Full Article
ga Episode 175: Game Development with Andrew Brownsword By www.se-radio.net Published On :: Fri, 06 May 2011 04:23:33 +0000 We discuss characteristics and performance properties of modern games and outline the challenges for software development. Full Article
ga Episode 215: Gang of Four – 20 Years Later By www.se-radio.net Published On :: Thu, 20 Nov 2014 18:54:54 +0000 Johannes Thönes talks with Erich Gamma, Ralph Johnson and Richard Helm from the Gang of Four about the 20th anniversary of their book Design Patterns. They discuss the following topics: the definition of a design pattern and each guest’s favorite design pattern; the origins of the book in architecture workshops; the writing of the book […] Full Article
ga Episode 218: Udi Dahan on CQRS (Command Query Responsibility Segregation) By www.se-radio.net Published On :: Fri, 30 Jan 2015 21:26:42 +0000 Guest Udi Dahan talks with host Robert Blumen about the CQRS (command query responsibility segregation) architectural pattern. The discussion begins with a review of the command pattern. Then a high-level overview of CQRS, which consists of a separation of a command processing subsystem that updates a write model from one or more distinct and separate, […] Full Article
ga SE-Radio Episode 242: Dave Thomas on Innovating Legacy Systems By traffic.libsyn.com Published On :: Fri, 13 Nov 2015 22:33:02 +0000 Full Article
ga SE-Radio-Episode-255:-Monica-Beckwith-on-Java-Garbage-Collection By traffic.libsyn.com Published On :: Tue, 26 Apr 2016 19:56:41 +0000 Monica Beckwith joins Robert Blumen for a discussion of java garbage collection. What is garbage collection? GC algorithms; history of GC in the java language; fragmentation and compaction; generational strategies; causes of pauses; impact of pauses on application performance; tuning GC; GC on multi-core and large memory machines; should production servers be implemented in non-GC languages?; going off heap and other programming techniques to avoid garbage; the future of java GC. Full Article
ga SE-Radio Episode 257: Michael Nygard on Clojure in Practice By traffic.libsyn.com Published On :: Tue, 17 May 2016 18:07:40 +0000 Michael Nygard of “Release It!” fame talks with Stefan Tilkov about his experience using the Clojure programming language. Topics include the tool chain and development process, the Clojure learning curve, and on-boarding new developers. Michael explains the similarities and differences compared to typical OO languages when implementing domain logic, and uses both game development and typical web development projects as examples. Finally, the two discuss how well Clojure can be used in the face of long-running projects, and some typical obstacles and strategies for introducing it to real-world scenarios. Full Article
ga SE-Radio Episode 291: Morgan Wilde on LLVM By traffic.libsyn.com Published On :: Mon, 15 May 2017 21:53:27 +0000 Morgan Wilde talks with SE Radio’s Jeff Meyerson about the LLVM compiler toolchain. They begin with a discussion of how a compiler works and how compiled code executes against different processor architectures. Using the JVM as a model for interoperability, they move on to how LLVM is a system that optimizes an intermediate representation (IR), which is similar to the Java bytecode: every programming language that compiles down to IR can leverage the same optimizations of that IR. The conversation concludes with a discussion of applications of LLVM and the future of the ecosystem. Full Article
ga SE-Radio-Episode-294-Asaf-Yigal-on-Machine-Learning-in-Log-Analysis By traffic.libsyn.com Published On :: Mon, 19 Jun 2017 22:58:41 +0000 Asaf Yigal talks with SE Radio’s Edaena Salinas about machine learning in log analysis. The discussion starts with an overview of the structure of logs and what information they can contain. Asaf discusses what the log analysis process looks like without machine learning -- and the role of humans in this – before moving on to how the process is improved by incorporating external resources using machine learning. Topics include: log analysis, machine learning, operations. Full Article
ga SE-Radio Episode 295: Michael Feathers on Legacy Code By traffic.libsyn.com Published On :: Tue, 27 Jun 2017 21:20:25 +0000 Felienne talks with Michael Feathers about Legacy Code. When is something legacy? Is working on legacy different from working on greenfield code? Do developers need different skills and techniques? Testing legacy code. How to test a legacy system? When do we have enough tests to feel safe to start coding? Techniques to make legacy systems more testable. Full Article
ga SE-Radio Episode 311: Armon Dadgar on Secrets Management By traffic.libsyn.com Published On :: Tue, 05 Dec 2017 17:49:10 +0000 Armon Dadgar speaks to Matthew Farwell about Secrets Management. Full Article
ga SE-Radio Episode 312: Sachin Gadre on the Internet of Things By traffic.libsyn.com Published On :: Tue, 12 Dec 2017 03:19:07 +0000 Edaena Salinas talks with Sachin Gadre about the internet of things. The discussion begins with an overview of what IoT is and how businesses are adopting it. It then explores the architecture of an IoT application and the security implications of these systems. Full Article
ga SE-Radio Episode 320: Nate Taggart on Serverless Paradigm By se-radio.net Published On :: Tue, 27 Mar 2018 18:18:25 +0000 Kishore Bhatia discusses with Nate Taggart about Serverless. Topics include: understanding the motivations for this computing model, deep dive learning about Serverless architecture, development frameworks and tools. Learn from Nate’s experience with Serverless paradigm developing Operations tools at Stackery and find out various approaches, challenges and best practices for architecting and building Serverless applications. Full Article
ga SE-Radio Episode 331: Kevin Goldsmith on Architecture and Organizational Design By se-radio.net Published On :: Tue, 24 Jul 2018 17:02:48 +0000 Travis Kimmel and Kevin Goldsmith discuss the correspondence between organizational design and software architecture. Their conversation covers: what Conway’s Law is; Kevin’s experiences in different organizational structures (e.g., Avvo, Spotify, Adobe, and Microsoft) and how those structures influenced the software architecture; what the “Reverse Conway Maneuver” is and how organizations can leverage it; how organizations can evolve existing architectures. Full Article
ga SE-Radio Episode 339: Jafar Soltani on Continuous Delivery for Multiplayer Games.mp3 By traffic.libsyn.com Published On :: Wed, 26 Sep 2018 18:25:36 +0000 Jafar Soltani of Rare (Microsoft Studios) discusses Continuous Delivery in AAA Games and how it can increase quality, reduce crunch, and deliver games faster. Topics include implementation and architecture, asset and delivery pipelines, and special challenges of games. Full Article
ga SE-Radio Episode 340: Lara Hogan and Deepa Subramaniam on Revitalizing a Cross-Functional Product Organization By traffic.libsyn.com Published On :: Wed, 03 Oct 2018 17:18:47 +0000 Travis Kimmel talks with Lara Hogan and Deepa Subramaniam about evidence-based tactics that product and engineering leaders can use to can use to diagnose problems that are holding back their teams, and build healthier, high-performing organizations. Full Article
ga SE-Radio Episode 349: Gary Rennie on Phoenix By traffic.libsyn.com Published On :: Wed, 12 Dec 2018 19:04:04 +0000 Gary Rennie, a core contributor to Phoenix and Plug, discusses the Phoenix, a web framework for Elixir. Host Nate Black talks with Gary about the parts of Phoenix, writing a Phoenix application, and troubleshooting performance issues. Full Article
ga SE-Radio episode 352: Johanathan Nightingale on Scaling Engineering Management By traffic.libsyn.com Published On :: Wed, 16 Jan 2019 19:10:24 +0000 Travis Kimmel talks with Johnathan Nightingale about scaling engineering management. Their discuss when to hire additional engineering managers and how to set them up for success, how leaders can prepare for “growing pains” as an organization scales, Full Article
ga SE-Radio Episode 355: Randy Shoup Scaling Technology and Organization By traffic.libsyn.com Published On :: Fri, 08 Feb 2019 17:27:20 +0000 Randy Shoup talks with SE-Radio’s Travis Kimmel about how to scale technology and organizations together, so that an organization can move faster as they grow (and not slow down). Their discussion covers how to effectively scale culture, process... Full Article
ga 363: Jonathan Boccara on Understanding Legacy Code By traffic.libsyn.com Published On :: Tue, 16 Apr 2019 19:22:28 +0000 Jonathan Boccara, author of The Legacy Code Programmer’s Toolbox discusses understanding and working with legacy code. Working with legacy code is a key skill of professional software development that is often neglected. Full Article
ga Episode 375: Gabriel Gonzalez on Configuration By traffic.libsyn.com Published On :: Wed, 07 Aug 2019 17:35:04 +0000 Gabriel Gonzalez, the creator of Dhall the programmable configuration language, discusses configuration, why it is important and how we can make it better. Adam Gordon Bell spoke Gonzalez about Dhall, yaml, total functional programming and dealing... Full Article
ga Episode 380: Margaret Burnett on GenderMag By se-radio.net Published On :: Tue, 10 Sep 2019 17:01:49 +0000 Felienne interviews Margaret Burnett on GenderMag, a systematic way to assess the inclusivity of software. Full Article
ga Episode 410: Sara Leen on Localizing and Porting Japanese Games By traffic.libsyn.com Published On :: Tue, 19 May 2020 22:04:21 +0000 Sara Leen discusses localizing, porting, and modernizing Japanese games with Jeremy Jung. Full Article
ga Episode 412: Sam Gavis Hughson on Technical Interviews By traffic.libsyn.com Published On :: Tue, 09 Jun 2020 23:06:13 +0000 Felienne spoke with Gavis-Hughson about how to prepare for the dreaded 'whiteboard interview'. Full Article
ga Episode 459: Otakar Nieder on Gaming vs Simulation Engines By traffic.libsyn.com Published On :: Wed, 12 May 2021 21:16:01 +0000 Otakar Nieder, Senior Director of Development at Bohemia Interactive Simulations, discusses how simulation apps are different from gaming with host Kanchan Shringi. Full Article
ga Episode 480: Venky Naganathan on Chatbots By traffic.libsyn.com Published On :: Wed, 06 Oct 2021 19:20:29 +0000 Host Kanchan Shringi speaks with Venky Naganathan,Sr. Director of Engineering at Conga specializing in Artificial Intelligence and Chatbots about the Conversational UI paradigm for Enterprise Apps as well as the enablers and business use cases suited... Full Article
ga Episode 521: Phillip Mayhew on Test Automation in Gaming By se-radio.net Published On :: Thu, 21 Jul 2022 20:17:00 +0000 Phillip Mayhew of GameDriver discusses test automation for games and game-like applications. Host Philip Winston spoke with Mayhew about the increasing role of test automation in modern game development, the impact on the QA role, how to run tests... Full Article
ga Episode 525: Randy Shoup on Evolving Architecture and Organization at eBay By se-radio.net Published On :: Wed, 17 Aug 2022 16:44:29 +0000 Randy Shoup of eBay discusses the evolution of eBay's tech stack. SE Radio host Jeremy Jung speaks with Shoup about eBay's origins as a single C++ class with an Oracle database, a five-year migration to multiple Java services, sharing a database... Full Article
ga Episode 544: Ganesh Datta on DevOps vs Site Reliability Engineering By se-radio.net Published On :: Wed, 28 Dec 2022 22:14:00 +0000 Ganesh Datta, CTO and cofounder of Cortex, joins SE Radio's Priyanka Raghavan to discuss site reliability engineering (SRE) vs DevOps. They examine the similarities and differences and how to use the two approaches together to build better software... Full Article
ga SE Radio 565: Luca Galante on Platform Engineering By se-radio.net Published On :: Tue, 23 May 2023 22:25:00 +0000 Luca Galante, head of product at Humanitec, joins host Jeff Doolittle for a conversation about platform engineering. They begin by defining platform engineering and its relationship to, and distinction from, DevOps. Tracing platform engineering's history, Luca describes how internal developer platforms are fundamental, and then explores the goals of addressing complexity and reducing the cognitive load on developers by creating golden paths. Full Article
ga SE Radio 582: Leo Porter and Daniel Zingaro on Learning to Program with LLMs By se-radio.net Published On :: Wed, 20 Sep 2023 18:05:00 +0000 Dr. Daniel Zingaro and Dr. Leo Porter, co-authors of the book Learn AI-Assisted Python Programming, speak with host Jeremy Jung about teaching programming with the aid of large language models (LLMs). They discuss writing a book to use in Leo's introductory CS class and explore how GitHub Copilot de-emphasizes syntax errors, reduces the need to memorize APIs, and why they want students to write manual test cases. They also discuss possible ethical concerns of relying on commercial tools, their impact on coursework, and why they aren't worried about students cheating with LLMs. Full Article
ga SE Radio 597: Coral Calero Muñoz and Félix García on Green Software By se-radio.net Published On :: Mon, 08 Jan 2024 23:44:00 +0000 Coral Calero Muñoz and Felix Garcia, professors at the University of Castilla-La Mancha, speak with host Giovanni Asproni about green and sustainable software—an approach to software development aimed at creating software systems that consume less energy and produce less CO2 during their entire lifetimes with minimal impact on their functionality and other qualities. The episode starts by describing why green software matters, particularly in the context of global warming, and introducing the key concepts. Continues discussing the current status of the field, in both academia and industry, and finishes with hints and tips that can be readily applied by development teams to make their systems greener. Brought to you by IEEE Computer Society and IEEE Software magazine. Full Article
ga SE Radio 600: William Morgan on Kubernetes Sidecars and Service Mesh By se-radio.net Published On :: Fri, 26 Jan 2024 00:17:00 +0000 William Morgan, founder of the Linkerd service mesh and CEO of Bouyant, joins SE Radio’s Robert Blumen for a discussion of sidecars, service mesh, and a forthcoming enhancement to kubernetes to support sidecars natively. The conversation explores the origin of sidecars, sidecars and service mesh, and migrating service mesh to kubernetes. They take a deep dive into some aspects of running service mesh on kubernetes, the difficulties in running a sidecar container in a pod, and Kubernetes Enhancement Proposal (KEP) 753, which is intended to provide better native support for sidecar containers. William also gives some thoughts on the continuing relevance of service mesh. Full Article
ga SE Radio 601: Han Yuan on Reorganizations By se-radio.net Published On :: Wed, 31 Jan 2024 23:58:00 +0000 Han Yuan, an accomplished Chief Product and Technology Officer, joins host Priyanka Raghavan to discuss reorganizations. The conversation starts with a broad discussion of reorganizations and reasons that companies choose to undertake them. They then consider organizational behavior and topics such as Conway's law and the theory of constraints. Han offers some advice on key steps to take when planning for a reorg, including how software teams could organize themselves based on technology, frameworks, or user journeys. The episode ends with some discussion of metrics and lessons learned. Brought to you by IEEE Computer Society and IEEE Software magazine. Full Article
ga SE Radio 602: Nicolas Carlo on Improving Legacy Code By se-radio.net Published On :: Wed, 07 Feb 2024 00:14:00 +0000 Nicolas Carlo talks with host Sam Taggart about Nicolas’s recent book, Legacy Code First Aid Kit. They start by defining legacy code and the general issues that developers face when dealing with it. Nicolas describes some of the tools in his book and provides examples of where he has found them useful. The episode also touches briefly on the role of AI and some other tools Nicolas has discovered since writing the book. This episode sponsored by WorkOS. Full Article
ga SE Radio 631: Abhay Paroha on Cloud Migration for Oil and Gas Operations By se-radio.net Published On :: Wed, 28 Aug 2024 23:14:00 +0000 Abhay Paroha, an engineering leader with more than 15 years' experience in leading product dev teams, joins SE Radio's Kanchan Shringi to talk about cloud migration for oil and gas production operations. They discuss Abhay's experiences in building a cloud foundation layer that includes a canonical data model for storing bi-temporal data. They further delve into his teams' learnings from using Kubernetes for microservices, the transition from Java to Scala, and use of Akka streaming, along with tips for ensuring reliable operations. Brought to you by IEEE Computer Society and IEEE Software magazine. Full Article
ga Palit GeForce RTX 2080 Super Gaming Pro OC By www.pcstats.com Published On :: Fri, 06 Mar 2020 15:09:35 Palit's RTX 2080 Super Gaming Pro OC is a new variant with a triple-slot, triple-fan cooler, to replace their dual-fan designs. It delivers solid temperatures and noise levels. At $720, the card is priced very reasonably, yet includes a factory overclock, idle-fan-stop, and backplate.... [PCSTATS] Full Article Video Cards
ga MSI Radeon RX 5500 XT GAMING X Review By www.pcstats.com Published On :: Fri, 06 Mar 2020 15:10:39 MSI puts its usual GAMING X and TWIN FROZR 7 magic on AMD's new mid-range Radeon RX 5500 XT. Check out our full review here."... [PCSTATS] Full Article Video Cards
ga SteelSeries Apex 3 Water Resistant Gaming Keyboard Review By www.pcstats.com Published On :: Sat, 07 Mar 2020 09:03:00 " Writing an entire article on the Apex 3 was a really easy task thanks to the higher actuation point and we did not make any mistakes like on the regular high-speed gaming-only keyboards. This is a good point to recommend when using the keyboard in corporate offices as well: the new SteelSeries domes are silent, while the full-size layout allows ... [PCSTATS] Full Article Peripherals
ga Razer Kraken Ultimate Gaming Headset Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 09:00:00 "About a year ago we took a look at Razer�s Kraken Tournament Edition headset, which we really did enjoy. It was however designed for professional gamers, hence the name �Tournament Edition�. For those looking for a more polished home solution Razer has the new Kraken Ultimate Edition. This sits as their flagship Kraken gaming headset and brings al... [PCSTATS] Full Article Audio / Sound
ga ASRock X570 Phantom Gaming-ITX/TB3 Motherboard Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:39:24 "When it comes to mini-ITX AMD X570 motherboards there are only a handful to choose from. Today we are checking out ASRock�s offering which comes in the form of the X570 Phantom Gaming-ITX/TB3. We first saw the Phantom Gaming Series from ASRock with their Z390 Phantom Gaming X and we are hoping to see the same quality in the X570 Phantom Gaming-ITX... [PCSTATS] Full Article Motherboards
ga Gamerstorm Macube 310P Mid-Tower Chassis Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:40:25 "Gamerstorm's Macube 310P mid-tower computer case offers great value for money with just a few issues here and there."... [PCSTATS] Full Article Cases
ga Galax GeForce RTX 2070 Super HOF 10 Year Anniversary By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:41:29 The Galax RTX 2070 Super HOF 10 Year comes with a large overclock on both GPU and memory, it's actually the fastest RTX 2070 we ever tested, almost matching RTX 2080. Thanks to a large power limit increase and 16 Gbps memory chips from Samsung, manual overclocking works great, too.... [PCSTATS] Full Article Video Cards