The Atomic Library publiczne
[search 0]
Więcej
Download the App!
show episodes
 
Artwork
 
A podcast from zeroheight. Let’s be honest, design systems are full of choice wtf moments. Michelle and Luke, two of our resident design advocates, are attempting to combat this with a new regular series, where they answer a single question around design system troubles every two weeks.
  continue reading
 
Artwork

1
Design Systems: Beyond The Button

Michelle Chin and Nefertiti Dukes

Unsubscribe
Unsubscribe
Miesięcznie
 
Wondering what’s involved in making a successful design system? So is Nef, the newest member of zeroheight’s marketing team. In this podcast, Nef is joined by one of zeroheight’s trustiest Design Advocates, Michelle Chin, to get their questions answered about everything related to the big world of design systems. If you’re eager to make the bestest design system ever, you’ve found the perfect place!
  continue reading
 
Delve into the wide world of Eastern European film with the Klassiki Podcast. Featuring interviews, roundtable discussions, recorded essays, and more, we take you beyond the headlines to explore the past, present, and future of this fascinating region. Sign up to Klassiki today to gain access to our ever-evolving library of classic and contemporary titles, as well as filmmaker interviews, video essays and introductions, programme notes, and much more.
  continue reading
 
Artwork
 
A new podcast where Kevin Muldoon and guests wrangle with the big common problems that design systems face. Every episode, they’ll hogtie a challenge, give it a good once over, and share the best techniques they’ve found to conquer them, from dealing with inconsistency to naming to white-label systems.
  continue reading
 
Design system consultants Amy Hupe and Geri Reid are going back to design systems school. In this series, Amy and Geri put aside their vocal and opinionated assumptions to dive deep on design systems topics; from Figma libraries to design tokens to deciding if AI can really write decent documentation. Climb aboard the school bus for a field trip on the history, the conversations and the foundations that really makes a design system great.It’s time to crack open the textbooks and head back to ...
  continue reading
 
Artwork

1
Franchise Interviews

FranchiseInterviews

Unsubscribe
Unsubscribe
Miesięcznie+
 
Welcome to Franchise Interviews weekly podcast and radio show. If you ever dreamed of one day owning your own business, then you have come to the right place. Listen to detailed interviews/podcasts with some of the most informative sources on the topics of franchising and entrepreneurship. People are hungry for good vital content (Keyes, 2009). To date, we have recorded over 850 interviews on our weekly franchise radio show with some of the top franchisors, franchise experts, franchise attor ...
  continue reading
 
Artwork

1
Martin's Must-Reads

Betty Martin, Mark Martin

Unsubscribe
Unsubscribe
Co tydzień
 
There are one million new books published each year. With so many books and so little time, where do you begin to find your next must-read? There’s the New York Times Bestseller list, the Goodreads app, the Cape Library’s Staff picks shelf and now Martin’s Must-Reads.Every Wednesday at 6:42 and 8:42 a.m., and Sunday at 8:18 a.m., Betty Martin recommends a must read based on her own personal biases for historical fiction, quirky characters and overall well-turned phrases. Her list includes WW ...
  continue reading
 
Welcome to Crashcasts, the podcast for tech enthusiasts! Whether you're a seasoned engineer or just starting out, this podcast will teach you about Java Internals. Join hosts Sheila and Victor as they explore essential topics in technology. Each episode gradually increases in complexity, covering everything from basic concepts to advanced scenarios. This podcast offers valuable insights, tips, and common pitfalls to avoid. It's perfect for interview preparation or skill enhancement. With a f ...
  continue reading
 
Loading …
show series
 
Dive into the exciting world of Java concurrency as we explore the powerful enhancements made to CompletableFuture in Java 9 and beyond. In this episode, we explore: Timeout handling revolution: Discover how orTimeout and completeOnTimeout simplify asynchronous programming Exception management upgrade: Uncover the flexibility of exceptionallyCompos…
  continue reading
 
Discover how Java 9+ revolutionizes concurrency with VarHandle and enhanced Atomics, offering up to 30% performance boost for certain operations! In this episode, we explore: VarHandle: The powerful "smart pointer" for efficient, low-level variable access Enhanced Atomics: Fine-tuning memory ordering for optimal performance Real-world applications …
  continue reading
 
Dive into the world of reactive programming with RxJava and Project Reactor, exploring how these powerful libraries streamline asynchronous programming in Java. In this episode, we explore: Fundamentals of reactive libraries and their importance in modern Java development Core concepts like Observables, Flux, and operators that power these librarie…
  continue reading
 
Dive into the world of reactive programming with Java's Flow API, introduced in Java 9, and discover how it's revolutionizing asynchronous programming. In this episode, we explore: The basics of Flow API and its four key components: Publisher, Subscriber, Subscription, and Processor How backpressure management ensures efficient data processing in r…
  continue reading
 
Dive into the world of Reactive Programming and discover how it's revolutionizing data flow management in modern Java applications. In this episode, we explore: The fundamentals of Reactive Streams and their role in asynchronous processing Core principles of Reactive Programming: Responsive, Resilient, Elastic, and Message-Driven Real-world applica…
  continue reading
 
Dive into the intricate world of Java's HotSpot VM and uncover the secrets behind its powerful performance optimization techniques. In this episode, we explore: The architecture of HotSpot VM and its key components Efficient memory management through generational heap design How the Execution Engine and JIT Compiler work together to optimize code A…
  continue reading
 
Dive into the world of Just-In-Time (JIT) compilation and discover how Java achieves lightning-fast performance through real-time code optimization. In this episode, we explore: The magic of JIT compilation: Transforming bytecode into optimized machine code on the fly Tiered compilation: How Java balances quick startup and peak performance JIT opti…
  continue reading
 
Dive into the intricate world of JVM internals as we unravel the mysteries of class loading and linking in Java. In this episode, we explore: The lazy loading approach in Java and its benefits for memory management The hierarchy of class loaders and their specific roles in the JVM The three crucial phases of linking: verification, preparation, and …
  continue reading
 
Dive into the world of Java memory management as we unravel the mysteries of weak references and memory leaks in this enlightening episode of Java Internals Crashcasts. In this episode, we explore: The crucial difference between weak and strong references in Java How memory leaks occur and why they're a ticking time bomb for your application Real-w…
  continue reading
 
Dive into the world of Java Garbage Collection optimization with expert insights on tuning and monitoring for peak performance. In this episode, we explore: Understanding GC tuning basics and key parameters for optimal Java application performance Effective monitoring techniques to analyze and improve GC behavior Advanced tuning strategies, includi…
  continue reading
 
Dive into the world of Java's Garbage Collection algorithms and learn how they impact your application's performance. In this episode, we explore: The fundamentals of Garbage Collection and its crucial role in Java A comprehensive comparison of Serial, Parallel, CMS, and G1 algorithms Real-world scenarios and how to choose the right algorithm for y…
  continue reading
 
Dive into the intricate world of memory barriers and reordering in Java, exploring how these low-level concepts impact concurrent programming. In this episode, we explore: Instruction reordering: The surprising optimization technique used by CPUs and the JVM Memory barriers: The traffic lights of memory access in multi-threaded environments Java's …
  continue reading
 
Dive into the intricacies of Java's volatile keyword and its crucial role in concurrent programming. In this episode, we explore: The true purpose of volatile and how it ensures visibility across threads Real-world scenarios where volatile shines (and where it falls short) Best practices and common pitfalls when using volatile Performance implicati…
  continue reading
 
Dive into the intricate world of Java's Memory Model and unravel the mysteries of the happens-before relationship in concurrent programming. In this episode, we explore: The crucial concept of happens-before and its role in Java's memory model Key rules defining happens-before, including program order and volatile variables Common pitfalls and misu…
  continue reading
 
Dive into the intricate world of benchmarking concurrent Java code and learn how to accurately measure performance in multi-threaded environments. In this episode, we explore: The power of JMH (Java Microbenchmark Harness) for concurrent code benchmarking Essential metrics for evaluating concurrent performance: throughput, latency, and scalability …
  continue reading
 
Dive into the complex world of concurrent programming as we explore the delicate balance between contention and coherence in Java applications. In this episode, we explore: The traffic jam of threads: Understanding contention in concurrent programming Keeping everyone on the same page: Coherence in multi-threaded applications Performance pitfalls: …
  continue reading
 
Dive into the fascinating world of parallel computing and discover why more processors don't always lead to faster performance. In this episode, we explore: Understanding Amdahl's Law and its impact on concurrent programming Real-world applications and limitations of parallelization Best practices for optimizing code with Amdahl's Law in mind Tune …
  continue reading
 
Dive into the world of concurrent design patterns with a focus on mastering the thread-safe Singleton in Java. In this episode, we explore: The Singleton pattern and its thread-safety challenges in multi-threaded environments Various implementations of thread-safe Singletons, from synchronized methods to enum-based approaches Best practices and gui…
  continue reading
 
Unlock the power of concurrent programming with our deep dive into the Read-Write Lock pattern, an essential tool for managing shared resources in Java applications. In this episode, we explore: The fundamentals of Read-Write Locks and their game-changing approach to concurrent access Practical implementation in Java using the ReadWriteLock interfa…
  continue reading
 
Dive into the world of efficient data flow with the Producer-Consumer pattern, a crucial concept for mastering concurrent programming in Java. In this episode, we explore: The fundamentals of the Producer-Consumer pattern and its role in managing shared resources Implementing the pattern using Java's BlockingQueue for seamless synchronization Key b…
  continue reading
 
Dive into the world of Java concurrency as we explore the powerful RecursiveTask and RecursiveAction classes in the Fork/Join Framework. In this episode, we explore: Understanding RecursiveTask and RecursiveAction: Uncover the key differences and use cases for these crucial classes Implementing the compute method: Learn how to effectively split tas…
  continue reading
 
Dive into the world of advanced Java concurrency with an exploration of ForkJoinPool, a powerful tool for parallel processing. In this episode, we explore: The Fork/Join Framework and how ForkJoinPool optimizes recursive algorithms Work-stealing and recursive decomposition: the secret sauce behind ForkJoinPool's efficiency Real-world applications a…
  continue reading
 
Wrap up your journey through Java's Concurrent Collections with this comprehensive guide, bringing together essential insights from our entire season. In this episode, we explore: The fundamentals of concurrent collections and their game-changing benefits in multi-threaded environments Deep dives into key types like ConcurrentHashMap, CopyOnWriteAr…
  continue reading
 
Dive into the world of concurrent collections with an in-depth exploration of Java's ConcurrentLinkedDeque. In this episode, we explore: The power of thread-safe, non-blocking double-ended queues ConcurrentLinkedDeque vs. LinkedList and ConcurrentLinkedQueue Performance considerations and common pitfalls to avoid Best practices for leveraging Concu…
  continue reading
 
Dive into the world of concurrent collections with an in-depth exploration of Java's ConcurrentLinkedQueue. In this episode, we explore: The non-blocking nature of ConcurrentLinkedQueue and its use of Compare-and-Swap operations How this queue manages high concurrency without causing thread blockages Real-world use cases and performance characteris…
  continue reading
 
Dive into the world of thread-safe collections with our in-depth exploration of CopyOnWriteArraySet in Java's concurrent programming landscape. In this episode, we explore: The inner workings of CopyOnWriteArraySet and its copy-on-write semantics Ideal use cases and performance considerations in concurrent environments Common pitfalls and best prac…
  continue reading
 
Dive into the world of concurrent collections with an in-depth exploration of Java's CopyOnWriteArrayList. In this episode, we explore: The inner workings of CopyOnWriteArrayList and its thread-safe design Performance trade-offs: lightning-fast reads vs. costly writes Real-world applications in event-driven programming and caching Key differences f…
  continue reading
 
Dive into the world of concurrent collections with an in-depth exploration of ConcurrentSkipListSet, a powerful tool for thread-safe, sorted data management in Java. In this episode, we explore: The ingenious skip list data structure powering ConcurrentSkipListSet's efficiency How this collection achieves thread-safety without compromising performa…
  continue reading
 
Dive into the world of thread-safe sorting with Java's ConcurrentSkipListMap in this illuminating episode of Java Internals Crashcasts! In this episode, we explore: The ingenious skip list structure powering ConcurrentSkipListMap How it achieves thread-safety using a lock-free algorithm Real-world applications, from priority queues to financial ord…
  continue reading
 
Dive into the world of high-performance concurrent collections with ConcurrentHashMap, a thread-safe marvel in Java's toolkit. In this episode, we explore: The lock striping mechanism that makes ConcurrentHashMap up to 16 times faster than synchronized HashMap Weak consistency model and its implications for developers Best practices and common pitf…
  continue reading
 
Dive into the world of thread-safe Java collections with an in-depth exploration of the ConcurrentMap interface. In this episode, we explore: The fundamentals of ConcurrentMap and its role in concurrent programming Atomic operations and essential methods for efficient multi-threaded data manipulation Thread-safety mechanisms and real-world applicat…
  continue reading
 
Dive into the world of Java concurrency with an in-depth exploration of LinkedBlockingDeque, a powerful tool for managing thread-safe, double-ended queues. In this episode, we explore: Thread-safety mechanisms using ReentrantLock and Condition objects Performance characteristics and trade-offs compared to array-based implementations Real-world appl…
  continue reading
 
Dive into the world of concurrent collections with an in-depth exploration of Java's BlockingDeque interface. In this episode, we explore: The fundamentals of BlockingDeque and its role in concurrent programming Practical applications of blocking operations in multi-threaded environments Essential methods and best practices for efficient implementa…
  continue reading
 
Dive into the world of Java's concurrent collections with an in-depth look at PriorityBlockingQueue, a powerful tool for managing prioritized tasks in multi-threaded environments. In this episode, we explore: The unique features of PriorityBlockingQueue and how it differs from other BlockingQueue implementations The internal workings of PriorityBlo…
  continue reading
 
Dive into the world of concurrent programming with an in-depth exploration of LinkedBlockingQueue, a powerful tool for managing shared resources in multi-threaded applications. In this episode, we explore: The unique features of LinkedBlockingQueue, including its optionally-bounded nature and linked node structure How blocking operations work and t…
  continue reading
 
Dive into the world of Java's concurrent collections with an in-depth exploration of ArrayBlockingQueue, a powerful thread-safe bounded queue implementation. In this episode, we explore: The key characteristics of ArrayBlockingQueue, including its bounded nature and FIFO behavior How to create and configure ArrayBlockingQueue, including options for…
  continue reading
 
Dive into the world of concurrent collections with Java's BlockingQueue interface, a powerful tool for managing thread-safe operations in multi-threaded environments. In this episode, we explore: BlockingQueue basics and its clever coffee shop analogy Key methods and their waiting behaviors for seamless producer-consumer scenarios Thread safety mec…
  continue reading
 
Dive into the world of Java synchronization utilities and master the art of concurrent programming in this comprehensive episode. In this episode, we explore: Locks and Conditions: Flexible tools for thread coordination Synchronizers: From Semaphores to Phasers, discover the right tool for every concurrent scenario Atomic Variables: Achieve thread-…
  continue reading
 
Dive into the world of thread isolation with Java's ThreadLocal class in this enlightening episode of Java Internals Crashcasts! In this episode, we explore: The magic of ThreadLocal: Achieving thread safety without traditional synchronization Under the hood: How ThreadLocal manages thread-specific storage Real-world applications: From web servers …
  continue reading
 
Dive into the world of Java concurrency with an in-depth exploration of the Exchanger class, a powerful tool for synchronizing thread interactions. In this episode, we explore: The fundamentals of Exchanger and its role in concurrent programming Real-world analogies and use cases for Exchanger in pipeline designs Potential pitfalls and limitations,…
  continue reading
 
Dive into the world of advanced Java concurrency with StampedLock, a powerful synchronization tool introduced in Java 8. In this episode, we explore: The basics of StampedLock and its three unique modes: write, read, and optimistic read How optimistic reading can significantly improve performance in read-heavy scenarios Potential pitfalls like live…
  continue reading
 
Dive into the world of thread-safe arrays with AtomicIntegerArray and AtomicLongArray, powerful tools for concurrent programming in Java. In this episode, we explore: Understanding atomic arrays and their advantages over regular arrays Implementing atomic operations for thread-safe array manipulation Real-world applications and performance consider…
  continue reading
 
Dive into the world of thread-safe data handling with AtomicReference in Java concurrency. In this episode, we explore: Understanding AtomicReference and its role in multi-threaded environments AtomicReference vs. synchronized methods: Performance and control Exploring key methods and their practical applications Real-world scenarios and best pract…
  continue reading
 
Dive into the world of lock-free, thread-safe programming with Java's atomic variables in this enlightening episode of Java Internals Crashcasts! In this episode, we explore: The power of AtomicInteger, AtomicLong, and AtomicBoolean in concurrent programming Compare-and-Set (CAS) operations: The secret sauce behind lock-free updates Real-world scen…
  continue reading
 
Dive into the world of Java concurrency with an exploration of the flexible Phaser class, a powerful synchronization tool introduced in Java 7. In this episode, we explore: Phaser's unique features and how it outshines other synchronization tools The dynamic nature of Phaser, allowing threads to join or leave at any stage Real-world applications an…
  continue reading
 
Dive into the world of concurrent programming with an in-depth exploration of CyclicBarrier, a powerful Java synchronization utility. In this episode, we explore: The concept and purpose of CyclicBarrier in multi-threaded scenarios How CyclicBarrier differs from CountDownLatch and its unique features Real-world applications, including gaming and di…
  continue reading
 
Dive into the world of Java concurrency with an in-depth exploration of CountDownLatch, a powerful synchronization utility. In this episode, we explore: Understanding CountDownLatch: Its purpose and basic functionality in coordinating multiple threads Real-world applications: How CountDownLatch shines in scenarios like coordinating startup in distr…
  continue reading
 
Dive into the world of concurrent programming with Sheila and Victor as they unravel the mysteries of semaphores in Java! In this episode, we explore: The origins and purpose of semaphores in managing shared resources Binary vs. counting semaphores: Understanding their unique applications How threads acquire and release permits in Java's Semaphore …
  continue reading
 
Dive into the world of Java concurrency as we unravel the mysteries of the Condition interface in this enlightening episode of Java Internals Crashcasts. In this episode, we explore: The power of Condition: A modern approach to thread synchronization Condition vs Object methods: Unveiling the key differences and advantages Real-world applications: …
  continue reading
 
Loading …

Skrócona instrukcja obsługi