performance Podcast Summaries
performance on Yedapo: 15 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.

Life Lessons from the DJ Booth | ELEW | TED
TED
Jul 18, 2026
Pianist and performer explores how the art of DJing offers a framework for navigating life's unpredictability. By viewing the brain as a mixer and daily choices as tracks, he demonstrates how empathy, preparation, and rhythm can help manage anxiety and maintain control when reality sets your plans on fire.
Key insight: The brain is biologically structured like a mixer, with the corpus callosum acting as the essential bridge between the right and left hemispheres to keep our internal 'tracks' in sync.

Neurosurgeon: Change How Your Brain Works in 30 Days | Dr. Mark McLaughlin
Lewis Howes
Jul 13, 2026
Dr. Mark McGlaughlin argues that fear is a corrosive force that impedes performance by creating anticipation of future discomfort. He reveals that high achievers often suffer from the 'disease of self-esteem,' which creates a volatile emotional cycle. Instead, he advocates for radical acceptance and taking full responsibility for one's actions to achieve true mastery.
Key insight: Fear is not the enemy; ignorance of fear is. Fear is simply the anticipation of an uncomfortable feeling in the future, and the most effective way to dismantle it is to stop judging yourself by your outcomes.

No.1 Performance Psychologist: The Secret to High Performance and Excellence
The Knowledge Project Podcast
Jul 7, 2026
Human biology prioritizes survival and comfort over potential, creating a 'central governor' that limits performance. To break this ceiling, you must move beyond thinking and focus on behavioral habits. True excellence requires shifting from an ego-driven mindset to a mastery-based approach, where you find joy in the craft itself rather than external rewards.
Key insight: We don't think our way into a pattern of living; we live our way into a pattern of thought. Changing your behavior is the only reliable way to change your mind.

Comment compter des millions de vues ? HyperLogLog
Grafikart.fr
Jun 22, 2026
L'algorithme HyperLogLog permet d'estimer le nombre d'éléments distincts dans des volumes de données massifs avec une empreinte mémoire fixe et dérisoire. En exploitant la probabilité statistique de motifs rares dans des hashs, il remplace le stockage coûteux d'identifiants par une structure de buckets efficace, idéale pour le comptage haute performance à grande échelle.
Key insight: Avec seulement 12 Ko de mémoire, HyperLogLog peut estimer le nombre de vues uniques pour une vidéo, que celle-ci en ait reçu 300 ou 500 millions, avec une marge d'erreur d'environ 1 %.

Most Replayed Moment: The 4 Personalities Living In Your Brain! How To Switch Between Them
The Diary Of A CEO with Steven Bartlett
Jun 19, 2026
Dr. Jill Bolte Taylor reveals that the human brain operates as four distinct functional characters across two hemispheres. By identifying and intentionally stimulating these specific neural systems, individuals can shift from analytical stress to creative peace, effectively managing their emotional and cognitive states in real time.
Key insight: The brain's lateral visual field is anatomically hardwired to stimulate specific hemispheres; stimulating the left field of vision directly accesses the right hemisphere, inducing immediate calm and reducing anxiety.

Quando linguagens funcionais são mais LENTAS
Augusto Galego
Jun 16, 2026
O autor confronta a teoria de que o modelo imperativo é inerentemente superior ao funcional, testando algoritmos de verificação de palíndromos. Os resultados revelam que otimizações nativas de linguagens, como o slicing do Python, podem superar implementações manuais, enquanto a escolha da linguagem (Go vs. Python) impacta a performance de CPU mas nem sempre reflete no escalonamento real de backends.
Key insight: Em Python, o método de 'slice' para verificar palíndromos foi cinco vezes mais rápido que a implementação manual de 'Two Pointers' e dez vezes mais rápida que a recursiva, provando que delegar operações para o C Python é frequentemente mais eficiente do que tentar otimizar manualmente o código no nível do interpretador.

FrankenPHP une alternative à PHP FPM & Nginx
Grafikart.fr
Jun 4, 2026
FrankenPHP fusionne serveur web et interpréteur PHP en une seule instance, éliminant la complexité de gestion entre Nginx et PHP-FPM. Il introduit un mode worker haute performance qui maintient l'application en mémoire, réduisant drastiquement les temps de chargement pour les frameworks comme Laravel ou Symfony.
Key insight: Le mode worker permet de conserver l'application en mémoire entre les requêtes, offrant des gains de performance mesurables de 5 à 15 millisecondes, mais nécessite une architecture de code rigoureuse pour éviter les fuites de données persistantes entre les sessions.

How to Make Customers Instantly Trust You & Your Product - Jeff Byers
Proven Podcast
May 20, 2026
Jeff Byers, former NFL lineman and CEO of Momentous, explains how to build a high-trust supplement brand by prioritizing rigorous supply chain transparency over industry hype. He reveals how applying elite athletic discipline and a long-term 'anti-supplement' philosophy can successfully challenge entrenched, commoditized markets.
Key insight: Momentous once abandoned $700,000 in quarterly profit and stayed out of stock for three months rather than compromise on ingredient purity, proving their commitment to the 'Momentous standard' over short-term sales.

Connection Pool Hell di PHP yang Berbahaya untuk Database
Programmer Zaman Now
May 20, 2026
Arsitektur PHP yang berbasis proses per-request menghambat implementasi connection pooling bawaan, menyebabkan overhead tinggi saat membuka-tutup koneksi database. Penggunaan persistent connection memang menghemat sumber daya, namun berisiko memicu kehabisan limit koneksi database saat trafik meningkat karena PHP tidak memiliki mekanisme idle timeout otomatis.
Key insight: PHP tidak memiliki mekanisme idle timeout pada persistent connection, sehingga koneksi yang sudah terbuka akan terus menetap di server sampai di-kill secara paksa oleh database, yang justru berisiko memunculkan error 'MySQL server has gone away' karena aplikasi tidak bisa melakukan reconnect secara proaktif.

Tutorial de Asset Cleanup Pro 2026 🚀 Cómo Mejorar la Velocidad de mi Página Web en WordPress 2026
Programación Fácil ,SEO y Marketing
Dec 29, 2025
Optimiza drásticamente los tiempos de carga de tu sitio web mediante el control granular de archivos CSS y JavaScript. Asset CleanUp Pro permite deshabilitar activos innecesarios página por página, garantizando una carga más rápida sin romper la funcionalidad.
Key insight: El modo prueba es vital; te permite desactivar archivos y plugins en producción sin que tus visitantes vean errores o desconfiguraciones en el diseño.

JavaScript performance is weird... Write scientifically faster code with benchmarking
Beyond Fireship
Oct 30, 2024
Premature optimization is a dangerous distraction. By utilizing benchmarking tools like Deno's built-in utility, developers can scientifically identify true performance bottlenecks rather than relying on intuition. The insight revealed is that simple, native patterns often outperform complex manual optimizations unless working with massive datasets.
Key insight: Switching from array.includes() to a Set data structure can improve lookup performance by up to a million times in large datasets due to O(1) indexing.

Configurando Docker Compose, Postgres, com Testes de Carga - Parte Final da Rinha de Backend
Fabio Akita
Dec 16, 2023
Otimizações prematuras em sistemas backend costumam ser inúteis e custosas. Fábio Akita demonstra que, sem métricas de monitoramento e testes de carga, decisões técnicas baseadas em intuição — como adicionar caches ou filas desnecessárias — apenas escondem falhas de infraestrutura e aumentam a complexidade sem ganhos reais de performance.
Key insight: Uma simples mudança de 'bridge network' para 'host network' no Docker resolveu erros de 'IO Exception' e aumentou a capacidade de processamento de 108 mil para 115 mil requisições, superando ganhos de otimizações complexas no código.

16 Linguagens em 16 Dias: Minha Saga da Rinha de Backend
Fabio Akita
Sep 20, 2023
O desafio de infraestrutura 'Rinha de Backend' revelou que gargalos de performance raramente residem na linguagem de programação escolhida. Após otimizar diversas implementações, provou-se que o controle de fluxo de I/O e a configuração correta da rede no Docker (host mode) permitem que linguagens interpretadas alcancem resultados equivalentes a Rust ou Go.
Key insight: O verdadeiro gargalo não era o banco de dados nem a CPU, mas o modo de rede padrão do Docker (bridge) e o excesso de conexões abertas no Nginx que causavam congestionamento de I/O.

Python? Java? Rust? Qual a Diferença? | Discutindo Linguagens
Fabio Akita
Jan 18, 2023
Fabio Akita argumenta que a popularidade de linguagens como Python, Ruby e JavaScript deriva de sua utilidade como camadas de abstração sobre bibliotecas de alto desempenho escritas em C, C++ e Fortran. Ele defende que a senioridade técnica exige compreender essa base binária e a gestão de memória, indo além da superficialidade das linguagens de script.
Key insight: Projetos populares de Data Science como Pandas, NumPy e TensorFlow dependem pesadamente de bibliotecas em C++ e Fortran para performance, provando que a interface em Python é apenas uma casca para motores de execução de baixo nível.

This Algorithm is 1,606,240% FASTER
ThePrimeagen
Jan 6, 2023
Optimizing a simple search problem requires moving beyond high-level data structures like HashSets toward low-level hardware-centric techniques. By leveraging bit manipulation, loop unrolling, and SIMD instructions, it is possible to achieve performance gains of up to 16,000 times compared to naive implementations.
Key insight: The final optimized solution processes 617 gigabytes per second, making the original O(N) solution appear virtually instantaneous by comparison.