CyberSecurity Summary

CyberSecurity Summary

CyberSecurity Summary is your go-to podcast for concise and insightful summaries of the latest and most influential books in the field of cybersecurity. Each episode delves into the core concepts, key takeaways, and practical applications of these books, providing you with the knowledge you need to stay ahead in the ever-evolving world of cybersecurity. Whether you’re a seasoned professional or just starting out, CyberSecurity Summary offers valuable insights and discussions to enhance your understanding and keep you informed. You can listen and download our episodes for free on more than 10 different platforms: https://linktr.ee/cyber_security_summary

Episodes

September 21, 2026 27 mins
A comprehensive foundational textbook designed to teach the computational and algorithmic principles of robotics to undergraduate students. The text bridges the gap between mechanical engineering and computer science by exploring how robots sense, actuate, and navigate through uncertain real-world environments. Key topics include forward and inverse kinematics, path planning, and the mathematical frameworks of linear algebra and pr...
Listen
Watch
Mark as Played
A technical introduction to the LISP programming language and the architectural design of its interpreter, based on Gary D. Knott’s book. It details how LISP utilizes linked-list data structures and a unique "prefix form" syntax to process information through functional applications. The author outlines the internal mechanics of the atom and number tables, explaining how memory is managed via typed-pointers and list nodes. Ba...
Listen
Watch
Mark as Played
Outlines the philosophy and technical execution of inclusive web design, emphasizing that accessibility should be a foundational mindset rather than an afterthought. It argues that true design thinking involves solving problems for all humans by utilizing semantic HTML, robust data structures, and flexible layouts that accommodate diverse user needs. The author highlights how standard web conventions, such as using proper button el...
Listen
Watch
Mark as Played
Explore the critical intersection of user identity and digital protection. The authors argue that modern developers must take personal responsibility for securing data rather than offloading it, especially given the high financial costs of cybersecurity breaches. Key topics include the inherent vulnerabilities of human-selected passwords and the technical strategies used to mitigate risks, such as password entropy, salting, and slo...
Listen
Watch
Mark as Played
Explores the intersection of computer programming and artistic design. The text challenges the myth of "left-brain" versus "right-brain" thinking by illustrating how technical logic and creative expression are inseparable in the gaming industry. Through an overview of the Unity engine, the author details how mathematical concepts like vectors, algorithms, and physics directly empower the creation of visual assets and interactive me...
Listen
Watch
Mark as Played
A systematic method for learning computer science through the lens of liberal arts. Instead of focusing on technical jargon, the authors introduce design recipes that guide students through a structured problem-solving process from analysis to testing. The curriculum utilizes Scheme and the DrScheme environment to minimize administrative overhead, allowing beginners to focus on core concepts like data definitions and functional rel...
Listen
Watch
Mark as Played
September 15, 2026 17 mins
A comprehensive guide to modern web development techniques. The authors focus on the transition of the web from a collection of static documents to a robust platform for interactive applications. Key topics include the use of new semantic elements, accessible ARIA roles, and advanced JavaScript APIs for media, graphics, and data storage. Readers are introduced to practical implementations of the Canvas API, SVG, and Web development...
Listen
Watch
Mark as Played
A comprehensive pedagogical framework for integrating mathematics and computer programming into the creative design process. Rather than focusing on specific software that may soon become obsolete, the authors prioritize foundational concepts such as vector geometry and object-oriented programming using the Python language. To facilitate this learning, the book introduces Decod.es, a custom open-source geometry library designed spe...
Listen
Watch
Mark as Played
September 13, 2026 21 mins
Introduces the Haskell language by emphasizing functional programming over the traditional instruction-based approach of the von Neumann architecture. The text focuses on the mathematical foundations of code, defining functions as transparent mappings that must always return the same output for a given input. By eliminating side effects and hidden states, the author argues that programmers can create safer, more predictable softwar...
Listen
Watch
Mark as Played
An introduction and guide to F#, a mature, functional-first programming language that operates on the .NET platform. Author Isaac Abraham emphasizes that F# enables developers to write more succinct and maintainable code by leveraging immutability, expressions, and function composition. While the language supports object-oriented features, it focuses on guiding programmers toward a "pit of success" through its powerful type system ...
Listen
Watch
Mark as Played
September 11, 2026 22 mins
A hands-on introduction to coding for beginners using the JS Bin online sandbox. The text utilizes a continuous project called The Crypt, a text-based adventure game, to demonstrate how specific programming concepts build a complex application. Part 1 focuses on core building blocks, beginning with variables to store and manipulate individual pieces of data like player names or scores. It then introduces objects, which allow develo...
Listen
Watch
Mark as Played
September 10, 2026 25 mins
A comprehensive guide for building server-side applications using the Go programming language. The material highlights why Go is an ideal choice for modern web development, specifically noting its efficiency, scalability, and built-in support for concurrency. Rather than relying on external frameworks, the author emphasizes using Go's standard library to handle the core components of a web application. The sources outline the funda...
Listen
Watch
Mark as Played
September 9, 2026 23 mins
A comprehensive guide to understanding recursion as both a computational strategy and a mathematical concept. The book explores how complex problems can be solved by breaking them down into smaller, self-similar instances, utilizing a step-by-step methodology to transition from simple linear recursion to advanced topics like backtracking and mutual recursion. By prioritizing a declarative approach and using Python 3, the author aim...
Listen
Watch
Mark as Played
A comprehensive college-level textbook designed to teach foundational computer science concepts through the Scala language. Written by Mark C. Lewis and Lisa L. Lacher, the text covers a wide spectrum of topics ranging from hardware basics and algorithmic history to advanced subjects like GUI development, recursion, and object-oriented design. The book emphasizes a problem-solving approach, encouraging students to view programming ...
Listen
Watch
Mark as Played
Focuses on the intersection of blockchain technology and modern cybersecurity, framing decentralized systems as a solution to an increasingly volatile threat landscape. The material begins by detailing prevalent risks such as ransomware, DDoS attacks, insider threats, and data breaches, illustrating how traditional security models often fail to stop advanced persistent threats. It highlights the author’s perspective that secu...
Listen
Watch
Mark as Played
A technical guide authored by Nikhil Buduma and Nicholas Locascio for designing machine intelligence algorithms. It establishes the field by contrasting traditional computer programming, which relies on rigid instructions, with machine learning, which utilizes models that improve through data-driven examples. The authors explain the biological inspiration behind these systems, describing how artificial neurons and neural networks e...
Listen
Watch
Mark as Played
September 5, 2026 23 mins
A comprehensive look at the technical frameworks and professional roles within the video game industry. The material defines a game engine as a reusable, data-driven software suite that serves as the foundation for various titles, distinguishing it from game-specific code. It categorizes the diverse disciplines of a development team, including engineers, artists, and designers, while detailing how their work intersects to create co...
Listen
Watch
Mark as Played
September 4, 2026 21 mins
A technical guide to managing simultaneous tasks and parallel programming within the Java ecosystem. The text introduces foundational concepts such as the Thread class and Runnable interface, explaining how to initialize, identify, and prioritize execution units. It further explores sophisticated control mechanisms, including thread interruption, managing daemon threads for background services, and utilizing thread-local variables ...
Listen
Watch
Mark as Played
A comprehensive framework for designing and managing RESTful web services that prioritize the developer experience. The text guides readers through the entire lifecycle of an API, from establishing business value and metrics to creating schema models using tools like OpenAPI and RAML. By analyzing case studies from companies like Netflix and Twitter, the author illustrates how to avoid common pitfalls such as poor design and incons...
Listen
Watch
Mark as Played
A foundational guide to iOS 12 development using Swift 4.2, Xcode 10, and the Cocoa framework. Author Matt Neuburg introduces Swift as a modern, object-oriented language where every entity functions as an object across three primary types: classes, structs, and enums. The text explains essential programming mechanics, such as how variables store data and how functions group executable code into reusable batches. It further clarifie...
Listen
Watch
Mark as Played

Popular Podcasts

    If you've ever wanted to know about champagne, satanism, the Stonewall Uprising, chaos theory, LSD, El Nino, true crime and Rosa Parks, then look no further. Josh and Chuck have you covered.

    Dateline NBC

    Current and classic episodes, featuring compelling true-crime mysteries, powerful documentaries and in-depth investigations. Follow now to get the latest episodes of Dateline NBC completely free, or subscribe to Dateline Premium for ad-free listening and exclusive bonus content: DatelinePremium.com

    The Bobby Bones Show

    Listen to 'The Bobby Bones Show' by downloading the daily full replay.

    The Joe Rogan Experience

    The official podcast of comedian Joe Rogan.

    The Clay Travis and Buck Sexton Show

    The Clay Travis and Buck Sexton Show. Clay Travis and Buck Sexton tackle the biggest stories in news, politics and current events with intelligence and humor. From the border crisis, to the madness of cancel culture and far-left missteps, Clay and Buck guide listeners through the latest headlines and hot topics with fun and entertaining conversations and opinions.

Advertise With Us
Music, radio and podcasts, all free. Listen online or download the iHeart App.

Connect

© 2026 iHeartMedia, Inc.

  • Help
  • Privacy Policy
  • Terms of Use
  • AdChoicesAd Choices