Backend ציבורי
[search 0]
עוד
Download the App!
show episodes
 
The only podcast dedicated to backend development, technologies, and careers. Lane Wagner, the founder of Boot.dev, interviews successful backend engineers to get their takes on various trends, technologies, and career tips for new backend developers. Golang, Python, JavaScript, and Rust are the programming languages most commonly discussed, but speakers dabble in all sorts.
  continue reading
 
Welcome to the Backend Engineering Show podcast with your host Hussein Nasser. If you like software engineering you’ve come to the right place. I discuss all sorts of software engineering technologies and news with specific focus on the backend. All opinions are my own. Most of my content in the podcast is an audio version of videos I post on my youtube channel here http://www.youtube.com/c/HusseinNasser-software-engineering Buy me a coffee https://www.buymeacoffee.com/hnasr 🧑‍🏫 Courses I Te ...
  continue reading
 
Ace your next backend interview with "Backend Interview Crashcasts"! Join host Sheila and expert interviewee Victor as they dive deep into essential topics for senior backend engineer positions. Each episode simulates a real interview scenario, gradually increasing in complexity to cover everything from basic concepts to advanced edge cases. Whether you're preparing for a phone screen or brushing up on your skills, this podcast offers invaluable insights, tips, and common pitfalls to avoid. ...
  continue reading
 
Artwork

1
Backend Boys

Backend Boys

Unsubscribe
Unsubscribe
יומי+
 
Face one and listen to sum real nigga conversations. We decided our convos are too great to just be heard by ourselves so why not let others hear it. Backend Boys giving yall the content yall need.
  continue reading
 
Here On Our Show We Have Conversions with Artist, Business Owners, positive influencers about ways To Change The Mindset of individuals making a better way of life for themselves. Family and The Generations Coming Under Us with business.
  continue reading
 
Artwork
 
Andre Wyatts (@blanknaem) and Ryan Tanner (@RTanner1337) take a look at the start of the week to the end of the week at the end of the week. A look back at the week that was and then some. Email backended@blanknaem.com if you think there's something we should look at, or hit up our Twitter accounts!
  continue reading
 
Welcome to the Building the Backend Podcast! We’re a data podcast focused on uncovering the data technologies, processes, and patterns that are driving today’s most successful companies. You will hear from data leaders sharing their knowledge and insights with what’s working and what’s not working for them. Our goal is to bring you valuable insights that will save you and your team time when building a modern data architecture in the cloud. Topics will span from big data, AI, ML, governance, ...
  continue reading
 
Loading …
show series
 
Fundamentals of Database Engineering udemy course https://databases.winMySQL has been having bumpy journey since 2018 with the release of the version 8.0. Critical crashes that made to the final product, significant performance regressions, and tons of stability and bugs issues. In this video I explore what happened to MySql, are these issues getti…
  continue reading
 
Today, we bring you the final episode of the first season of Backend Banter! It’s a wrap up for now. With 69 episodes behind us, we want to tell you the story of Boot Dev and how far we’ve come from our beginnings, and for that, we bring Allan Lires, the first official employee and the second person to work on our platform! We’re going to cover our…
  continue reading
 
Fundamentals of Operating Systems Course https://oscourse.winIn this video I use strace a performance tool that measures how many system calls does a process makes. We compare a simple task of reading from a file, and we run the program in different runtimes, namely nodejs, buns , python and native C. We discuss the cost of kernel mode switches, sy…
  continue reading
 
Fundamentals of Operating Systems Course https://os.husseinnasser.comWhen do you use threads?I would say in scenarios where the task is either 1) IO blocking task2) CPU heavy3) Large volume of small tasksIn any of the cases above, it is favorable to offload the task to a thread.1) IO blocking taskWhen you read from or write to disk, depending on ho…
  continue reading
 
I am fascinated by how timeouts affect backend and frontend programming. When a party is waiting on something you can place a timeout to break the wait. This is useful for freeing resources to more critical processes, detecting slow operations and even avoiding DOS attacks. Contrary to common beliefs, timeouts are not exclusive to request processin…
  continue reading
 
Learn more about database and OS internals, check out my courses Fundamentals of database engineering https://databases.win Fundamentals of operating systems https://oscourse.win This new PostgreSQL 17 feature is game changer. You see, postgres like most databases work with fixed size pages. Pretty much everything is in this format, indexes, table …
  continue reading
 
Fundamentals of Operating Systems Course https://os.husseinnasser.comWhy Windows Kernel connects slower than Linux I explore the behavior of TCP/IP stack in Windows kernel when it receives a RST from the backend server especially when the host is available but the port we are trying to connect to is not. This behavior is exacerbated by having both …
  continue reading
 
Dive into the world of system design as we explore the intricacies of building a scalable URL shortener service like bit.ly and TinyURL. In this episode, we explore: The core components of a URL shortener and the fascinating process of generating short links Cutting-edge scalability strategies to handle millions of requests efficiently Real-world c…
  continue reading
 
Dive into the world of load balancers and learn how to design a scalable, fault-tolerant system for high-traffic web applications. In this episode, we explore: Load balancing algorithms and health checks: Discover the best strategies for distributing traffic and maintaining system health Scalability techniques and handling traffic spikes: Learn the…
  continue reading
 
Dive into the world of deadlocks in operating systems and concurrent programming with expert insights from senior backend engineer Victor. In this episode, we explore: The four crucial conditions for deadlocks and how to remember them Effective strategies to prevent and detect deadlocks in various scenarios Real-world examples and edge cases, inclu…
  continue reading
 
Dive into the world of database scaling strategies as we pit sharding against replication in this informative episode. In this episode, we explore: Sharding vs. Replication fundamentals: Uncover the key differences between these two powerful database scaling techniques Scaling and performance benefits: Learn how each strategy tackles the challenges…
  continue reading
 
Dive into the intricate world of API design as we explore the delicate balance between maintaining compatibility and driving innovation. In this episode, we explore: Backward and forward compatibility: Unraveling these crucial concepts and their impact on API design The compatibility conundrum: Strategies for introducing new features without breaki…
  continue reading
 
Dive into the world of Command Query Responsibility Segregation (CQRS) and discover how this powerful architectural pattern can revolutionize your software design. In this episode, we explore: Understanding CQRS: Core principles and how it differs from traditional CRUD models Implementing CQRS: Best practices, potential challenges, and strategies f…
  continue reading
 
Dive into the world of synchronization primitives with an in-depth comparison of semaphores and mutexes in operating systems and concurrent programming. In this episode, we explore: The fundamental differences between semaphores and mutexes, and when to use each Real-world applications, from managing hotel rooms to coordinating chefs and waiters Co…
  continue reading
 
Dive into the world of HTTP 4xx status codes and their crucial role in web communication with this informative episode of Networking Interview Crashcasts. In this episode, we explore: Common 4xx status codes and their meanings in client-side errors Real-world applications and intriguing edge cases of 4xx codes Best practices for implementing status…
  continue reading
 
Dive into the intricate world of Apache Kafka as we explore the delicate balance between consumers and partitions in this enlightening episode. In this episode, we explore: The fascinating dynamics when consumers outnumber partitions in Kafka Kafka's clever rebalancing mechanism for fair workload distribution Real-world implications for scalability…
  continue reading
 
Dive deep into the intricate world of JVM internals and unlock the secrets to optimizing your Java applications' performance. In this episode, we explore: The ins and outs of garbage collection and memory management in the JVM A tour of memory areas beyond the heap and their crucial roles An in-depth look at various garbage collection algorithms an…
  continue reading
 
Dive into the cutting-edge world of Java technologies as we explore the rise of GraalVM, HotSpot, and Quarkus in this enlightening episode. In this episode, we explore: The evolution of Java performance: From HotSpot's adaptive optimization to GraalVM's versatility Ahead-of-Time vs. Just-in-Time compilation: Unraveling the key differences and use c…
  continue reading
 
Dive into the world of database isolation levels and learn how to balance data consistency with performance in your applications. In this episode, we explore: The four standard isolation levels and their implications for data consistency A real-world e-commerce scenario illustrating the importance of choosing the right isolation level Performance t…
  continue reading
 
Dive into the world of Event Sourcing and discover how this powerful architectural pattern can revolutionize your distributed systems. In this episode, we explore: The core concept of Event Sourcing and its game-changing benefits (SCALE) A real-world application in financial systems that showcases Event Sourcing's true potential Key implementation …
  continue reading
 
Today we welcome Chuck Carpenter aka Charles The 3rd, co-host at Whiskey Web and Whatnot. As two content creators in the tech scene, we discuss if and how celebrity developers and tech influencers are a good thing for the community, how we should be careful when choosing technologies based on influencers’ opinions, why so many people nowadays want …
  continue reading
 
In this episode of the backend engineering show I describe an interesting bug I ran into where the web server ran out of ephemeral ports causing the system to halt. 0:00 Intro 0:30 System architecture 2:20 The behavior of the bug 4:00 Backend Troubleshooting 7:00 The cause 15:30 Ephemeral ports on loopback…
  continue reading
 
Dive into the world of database indexing and discover how it can significantly boost your database performance. In this episode, we explore: The fundamentals of database indexing and its role in speeding up data retrieval Clustered vs. non-clustered indexes: Understanding their differences and use cases How indexing impacts database performance, in…
  continue reading
 
Dive into the world of Instruction Set Architecture (ISA) with our expert guest, Victor, as we unpack this crucial concept for senior backend engineers. In this episode, we explore: ISA basics: Uncover the fundamental components that bridge hardware and software CISC vs. RISC vs. MISC: Compare different ISA types and their real-world applications A…
  continue reading
 
Dive into the world of compiler design with our expert guide to syntax analysis, an essential component of programming language processing. In this episode, we explore: The fundamentals of syntax analysis and its crucial role in the compilation process Parse trees and Abstract Syntax Trees (ASTs): Decoding program structure Top-down vs bottom-up pa…
  continue reading
 
Dive into the world of Kubernetes as we unravel the differences between Pods and Containers, essential concepts for any cloud computing professional. In this episode, we explore: Pods vs. Containers: Definitions, scope, and key differences Crucial characteristics of Pods in Kubernetes and their importance How Kubernetes orchestrates multiple contai…
  continue reading
 
Dive into the world of Service Level Indicators (SLIs) and Service Level Objectives (SLOs) with our expert guest, Victor, as we unravel these crucial concepts in Software Reliability Engineering. In this episode, we explore: The definitions and importance of SLIs and SLOs in measuring service reliability Real-world examples of common SLIs and strat…
  continue reading
 
Dive into the world of resilient system design with expert insights on ensuring high availability and fault tolerance. In this episode, we explore: Fundamental strategies for robust systems, including redundancy, load balancing, and active-active vs. active-passive setups Geographical distribution and data consistency challenges in distributed syst…
  continue reading
 
Explore the nuances of two crucial design patterns in object-oriented programming with expert insights from experienced software engineer Victor. In this episode, we explore: The core concepts of Factory and Abstract Factory patterns Real-world examples using a pizza ordering system Implementation strategies and scalability challenges Key differenc…
  continue reading
 
Dive into the crucial decision-making process of selecting the right database for your project with expert insights from experienced backend engineer Victor. In this episode, we explore: Key differences between NoSQL and relational databases, unraveling their strengths and weaknesses Critical factors to consider when choosing a database, from data …
  continue reading
 
Dive into the world of database normalization with expert insights on 1NF, 2NF, and 3NF. In this episode, we explore: The fundamentals of database normalization and its importance in modern systems Breaking down the First, Second, and Third Normal Forms with clear explanations Real-world examples that illustrate how to apply normalization principle…
  continue reading
 
Dive into the world of messaging technologies as we compare ZeroMQ and RabbitMQ in this insightful episode of Technology Comparisons Interview Crashcasts. In this episode, we explore: The key differences between ZeroMQ's lightweight library and RabbitMQ's full-featured broker Ideal use cases for each technology, from real-time systems to enterprise…
  continue reading
 
Dive into the world of system calls and uncover their crucial role in bridging the gap between user applications and operating systems. In this episode, we explore: The fundamentals of system calls and their importance in modern operating systems A step-by-step breakdown of how system calls work, from user space to kernel space and back Performance…
  continue reading
 
Dive into the world of network connections as we demystify the TCP Three-Way Handshake process, a crucial concept for aspiring backend engineers. In this episode, we explore: The three steps of the handshake: SYN, SYN-ACK, and ACK The critical role of sequence numbers in maintaining data transmission order Potential issues and security concerns, in…
  continue reading
 
Dive into the world of virtual memory and uncover its inner workings and advantages for modern computing systems. In this episode, we explore: Understanding virtual memory: definition and core concepts Key benefits and why they matter for programmers The mechanics behind virtual memory: pages, tables, and buffers Advanced memory management techniqu…
  continue reading
 
Dive into the world of Kotlin as we explore the crucial differences between data classes and regular classes in this information-packed episode of "Kotlin Internals Interview Crashcasts"! In this episode, we explore: The purpose and efficiency of data classes as streamlined data containers Automatically generated utility functions that make data cl…
  continue reading
 
Dive into the inner workings of Kafka and discover how it achieves impressive performance in handling massive data streams. In this episode, we explore: Kafka's distributed architecture and commit logs Disk and network optimizations for enhanced throughput Scalability through intelligent partitioning Efficient data consumption with consumer groups …
  continue reading
 
Dive into the intricate world of Java Virtual Machine (JVM) internals with expert insights from experienced Java developer Victor. In this episode, we explore: The three core components of the JVM: Class Loader, Runtime Data Area, and Execution Engine A deep dive into the Runtime Data Area, including Method Area, Heap, Java Stacks, and more The Exe…
  continue reading
 
Dive into the world of Java garbage collection with our expert guest, Victor, as we unravel the mysteries behind memory management in Java. In this episode, we explore: Garbage collection algorithms and strategies, including Mark-and-Sweep, Copying, and Mark-Compact Minor vs Major GC: Understanding the differences and their impact on performance Ge…
  continue reading
 
Dive into the world of message queues and their crucial role in distributed systems with our expert guest, Victor. In this episode, we explore: The core purpose of message queues and their game-changing benefits in distributed systems Essential features and implementation challenges that every developer should know Advanced topics like scalability …
  continue reading
 
Dive into the world of database organization with our comprehensive guide to normalization and its various forms. In this episode, we explore: The fundamentals of database normalization and why it matters A step-by-step journey through normal forms: from 1NF to BCNF Real-world applications and when to break the rules Tune in for expert insights on …
  continue reading
 
Dive into the crucial distinction between computer architecture and organization, essential knowledge for senior backend engineers. In this episode, we explore: The fundamental differences between conceptual design and hardware implementation How architecture and organization impact system performance and efficiency Real-world challenges and trade-…
  continue reading
 
Dive into the world of compiler design with our expert-led exploration of lexical analysis, a crucial first step in understanding how programming languages are processed. In this episode, we explore: The fundamentals of lexical analysis and its role in compilation How source code is transformed into meaningful tokens Challenges in token recognition…
  continue reading
 
Dive into the core of Kubernetes as we unravel the intricate architecture of Master and Worker nodes in this enlightening episode of "Kubernetes Interview Crashcasts". In this episode, we explore: The fundamental components of Kubernetes architecture and their roles Master node's brain: API server, etcd, scheduler, and controller manager unveiled W…
  continue reading
 
Dive into the world of Site Reliability Engineering (SRE) and explore the critical concept of error budgets with host Sheila and experienced SRE professional Victor. In this episode, we explore: The fundamentals of error budgets and their calculation in relation to Service Level Objectives (SLOs) How SRE teams use error budgets to balance innovatio…
  continue reading
 
Dive into the world of modern software architecture as we explore the crucial debate between microservices and monolithic design in this must-listen episode for aspiring senior backend engineers. In this episode, we explore: The fundamental differences between microservices and monolithic architectures Key advantages of microservices, including sca…
  continue reading
 
Dive into the world of software design patterns with a focus on the strategy pattern and its practical applications in this insightful episode of Programming Paradigms Interview Crashcasts. In this episode, we explore: The strategy pattern demystified: Understanding its purpose and benefits in software design Real-world application: How the pattern…
  continue reading
 
Dive into the world of NoSQL databases with senior backend engineer Victor as we explore the primary types and their real-world applications. In this episode, we explore: The four main types of NoSQL databases and their unique characteristics Popular examples like Redis, MongoDB, Cassandra, and Neo4j Ideal use cases for each database type, from cac…
  continue reading
 
Dive into the world of relational database relationships with expert insights and practical examples. In this episode, we explore: Understanding One-to-One, One-to-Many, and Many-to-Many relationships with real-world examples Implementing relationships using primary and foreign keys, including junction tables Exploring edge cases like self-referent…
  continue reading
 
Dive into the world of distributed messaging systems as we compare Apache Pulsar and Kafka, exploring their key differences and use cases. In this episode, we explore: Message consumption models: Pull vs. Push, and their impact on performance Ordering guarantees and their critical role in financial applications Fault tolerance strategies: Leader-fo…
  continue reading
 
Loading …

מדריך עזר מהיר