POPULARITY
Emmanuel et Guillaume discutent de divers sujets liés à la programmation, notamment les systèmes de fichiers en Java, le Data Oriented Programming, les défis de JPA avec Kotlin, et les nouvelles fonctionnalités de Quarkus. Ils explorent également des sujets un peu fous comme la création de datacenters dans l'espace. Pas mal d'architecture aussi. Enregistré le 13 février 2026 Téléchargement de l'épisode LesCastCodeurs-Episode-337.mp3 ou en vidéo sur YouTube. News Langages Comment implémenter un file system en Java https://foojay.io/today/bootstrapping-a-java-file-system/ Créer un système de fichiers Java personnalisé avec NIO.2 pour des usages variés (VCS, archives, systèmes distants). Évolution Java: java.io.File (1.0) -> NIO (1.4) -> NIO.2 (1.7) pour personnalisation via FileSystem. Recommander conception préalable; API Java est orientée POSIX. Composants clés à considérer: Conception URI (scheme unique, chemin). Gestion de l'arborescence (BD, métadonnées, efficacité). Stockage binaire (emplacement, chiffrement, versions). Minimum pour démarrer (4 composants): Implémenter Path (représente fichier/répertoire). Étendre FileSystem (instance du système). Étendre FileSystemProvider (moteur, enregistré par scheme). Enregistrer FileSystemProvider via META-INF/services. Étapes suivantes: Couche BD (arborescence), opérations répertoire/fichier de base, stockage, tests. Processus long et exigeant, mais gratifiant. Un article de brian goetz sur le futur du data oriented programming en Java https://openjdk.org/projects/amber/design-notes/beyond-records Le projet Amber de Java introduit les "carrier classes", une évolution des records qui permet plus de flexibilité tout en gardant les avantages du pattern matching et de la reconstruction Les records imposent des contraintes strictes (immutabilité, représentation exacte de l'état) qui limitent leur usage pour des classes avec état muable ou dérivé Les carrier classes permettent de déclarer une state description complète et canonique sans imposer que la représentation interne corresponde exactement à l'API publique Le modificateur "component" sur les champs permet au compilateur de dériver automatiquement les accesseurs pour les composants alignés avec la state description Les compact constructors sont généralisés aux carrier classes, générant automatiquement l'initialisation des component fields Les carrier classes supportent la déconstruction via pattern matching comme les records, rendant possible leur usage dans les instanceof et switch Les carrier interfaces permettent de définir une state description sur une interface, obligeant les implémentations à fournir les accesseurs correspondants L'extension entre carrier classes est possible, avec dérivation automatique des appels super() quand les composants parent sont subsumés par l'enfant Les records deviennent un cas particulier de carrier classes avec des contraintes supplémentaires (final, extends Record, component fields privés et finaux obligatoires) L'évolution compatible des records est améliorée en permettant l'ajout de composants en fin de liste et la déconstruction partielle par préfixe Comment éviter les pièges courants avec JPA et Kotlin - https://blog.jetbrains.com/idea/2026/01/how-to-avoid-common-pitfalls-with-jpa-and-kotlin/ JPA est une spécification Java pour la persistance objet-relationnel, mais son utilisation avec Kotlin présente des incompatibilités dues aux différences de conception des deux langages Les classes Kotlin sont finales par défaut, ce qui empêche la création de proxies par JPA pour le lazy loading et les opérations transactionnelles Le plugin kotlin-jpa génère automatiquement des constructeurs sans argument et rend les classes open, résolvant les problèmes de compatibilité Les data classes Kotlin ne sont pas adaptées aux entités JPA car elles génèrent equals/hashCode basés sur tous les champs, causant des problèmes avec les relations lazy L'utilisation de lateinit var pour les relations peut provoquer des exceptions si on accède aux propriétés avant leur initialisation par JPA Les types non-nullables Kotlin peuvent entrer en conflit avec le comportement de JPA qui initialise les entités avec des valeurs null temporaires Le backing field direct dans les getters/setters personnalisés peut contourner la logique de JPA et casser le lazy loading IntelliJ IDEA 2024.3 introduit des inspections pour détecter automatiquement ces problèmes et propose des quick-fixes L'IDE détecte les entités finales, les data classes inappropriées, les problèmes de constructeurs et l'usage incorrect de lateinit Ces nouvelles fonctionnalités aident les développeurs à éviter les bugs subtils liés à l'utilisation de JPA avec Kotlin Librairies Guide sur MapStruct @IterableMapping - https://www.baeldung.com/java-mapstruct-iterablemapping MapStruct est une bibliothèque Java pour générer automatiquement des mappers entre beans, l'annotation @IterableMapping permet de configurer finement le mapping de collections L'attribut dateFormat permet de formater automatiquement des dates lors du mapping de listes sans écrire de boucle manuelle L'attribut qualifiedByName permet de spécifier quelle méthode custom appliquer sur chaque élément de la collection à mapper Exemple d'usage : filtrer des données sensibles comme des mots de passe en mappant uniquement certains champs via une méthode dédiée L'attribut nullValueMappingStrategy permet de contrôler le comportement quand la collection source est null (retourner null ou une collection vide) L'annotation fonctionne pour tous types de collections Java (List, Set, etc.) et génère le code de boucle nécessaire Possibilité d'appliquer des formats numériques avec numberFormat pour convertir des nombres en chaînes avec un format spécifique MapStruct génère l'implémentation complète du mapper au moment de la compilation, éliminant le code boilerplate L'annotation peut être combinée avec @Named pour créer des méthodes de mapping réutilisables et nommées Le mapping des collections supporte les conversions de types complexes au-delà des simples conversions de types primitifs Accès aux fichiers Samba depuis Java avec JCIFS - https://www.baeldung.com/java-samba-jcifs JCIFS est une bibliothèque Java permettant d'accéder aux partages Samba/SMB sans monter de lecteur réseau, supportant le protocole SMB3 on pense aux galériens qui doivent se connecter aux systèmes dit legacy La configuration nécessite un contexte CIFS (CIFSContext) et des objets SmbFile pour représenter les ressources distantes L'authentification se fait via NtlmPasswordAuthenticator avec domaine, nom d'utilisateur et mot de passe La bibliothèque permet de lister les fichiers et dossiers avec listFiles() et vérifier leurs propriétés (taille, date de modification) Création de fichiers avec createNewFile() et de dossiers avec mkdir() ou mkdirs() pour créer toute une arborescence Suppression via delete() qui peut parcourir et supprimer récursivement des arborescences entières Copie de fichiers entre partages Samba avec copyTo(), mais impossibilité de copier depuis le système de fichiers local Pour copier depuis le système local, utilisation des streams SmbFileInputStream et SmbFileOutputStream Les opérations peuvent cibler différents serveurs Samba et différents partages (anonymes ou protégés par mot de passe) La bibliothèque s'intègre dans des blocs try-with-resources pour une gestion automatique des ressources Quarkus 3.31 - Support complet Java 25, nouveau packaging Maven et Panache Next - https://quarkus.io/blog/quarkus-3-31-released/ Support complet de Java 25 avec images runtime et native Nouveau packaging Maven de type quarkus avec lifecycle optimisé pour des builds plus rapides voici un article complet pour plus de detail https://quarkus.io/blog/building-large-applications/ Introduction de Panache Next, nouvelle génération avec meilleure expérience développeur et API unifiée ORM/Reactive Mise à jour vers Hibernate ORM 7.2, Reactive 3.2, Search 8.2 Support de Hibernate Spatial pour les données géospatiales Passage à Testcontainers 2 et JUnit 6 Annotations de sécurité supportées sur les repositories Jakarta Data Chiffrement des tokens OIDC pour les implémentations custom TokenStateManager Support OAuth 2.0 Pushed Authorization Requests dans l'extension OIDC Maven 3.9 maintenant requis minimum pour les projets Quarkus A2A Java SDK 1.0.0.Alpha1 - Alignement avec la spécification 1.0 du protocole Agent2Agent - https://quarkus.io/blog/a2a-java-sdk-1-0-0-alpha1/ Le SDK Java A2A implémente le protocole Agent2Agent qui permet la communication standardisée entre agents IA pour découvrir des capacités, déléguer des tâches et collaborer Passage à la version 1.0 de la spécification marque la transition d'expérimental à production-ready avec des changements cassants assumés Modernisation complète du module spec avec des Java records partout remplaçant le mix précédent de classes et records pour plus de cohérence Adoption de Protocol Buffers comme source de vérité avec des mappers MapStruct pour la conversion et Gson pour JSON-RPC Les builders utilisent maintenant des méthodes factory statiques au lieu de constructeurs publics suivant les best practices Java modernes Introduction de trois BOMs Maven pour simplifier la gestion des dépendances du SDK core, des extensions et des implémentations de référence Quarkus AgentCard évolue avec une liste supportedInterfaces remplaçant url et preferredTransport pour plus de flexibilité dans la déclaration des protocoles Support de la pagination ajouté pour ListTasks et les endpoints de configuration des notifications push avec des wrappers Result appropriés Interface A2AHttpClient pluggable permettant des implémentations HTTP personnalisées avec une implémentation Vert.x fournie Travail continu vers la conformité complète avec le TCK 1.0 en cours de développement parallèlement à la finalisation de la spécification Pourquoi Quarkus finit par "cliquer" : les 10 questions que se posent les développeurs Java - https://www.the-main-thread.com/p/quarkus-java-developers-top-questions-2025 un article qui revele et repond aux questions des gens qui ont utilisé Quarkus depuis 4-6 mois, les non noob questions Quarkus est un framework Java moderne optimisé pour le cloud qui propose des temps de démarrage ultra-rapides et une empreinte mémoire réduite Pourquoi Quarkus démarre si vite ? Le framework effectue le travail lourd au moment du build (scanning, indexation, génération de bytecode) plutôt qu'au runtime Quand utiliser le mode réactif plutôt qu'impératif ? Le réactif est pertinent pour les workloads avec haute concurrence et dominance I/O, l'impératif reste plus simple dans les autres cas Quelle est la différence entre Dev Services et Testcontainers ? Dev Services utilise Testcontainers en gérant automatiquement le cycle de vie, les ports et la configuration sans cérémonie Comment la DI de Quarkus diffère de Spring ? CDI est un standard basé sur la sécurité des types et la découverte au build-time, différent de l'approche framework de Spring Comment gérer la configuration entre environnements ? Quarkus permet de scaler depuis le développement local jusqu'à Kubernetes avec des profils, fichiers multiples et configuration externe Comment tester correctement les applications Quarkus ? @QuarkusTest démarre l'application une fois pour toute la suite de tests, changeant le modèle mental par rapport à Spring Boot Que fait vraiment Panache en coulisses ? Panache est du JPA avec des opinions fortes et des défauts propres, enveloppant Hibernate avec un style Active Record Doit-on utiliser les images natives et quand ? Les images natives brillent pour le serverless et l'edge grâce au démarrage rapide et la faible empreinte mémoire, mais tous les apps n'en bénéficient pas Comment Quarkus s'intègre avec Kubernetes ? Le framework génère automatiquement les ressources Kubernetes, gère les health checks et métriques comme s'il était nativement conçu pour cet écosystème Comment intégrer l'IA dans une application Quarkus ? LangChain4j permet d'ajouter embeddings, retrieval, guardrails et observabilité directement en Java sans passer par Python Infrastructure Les alternatives à MinIO https://rmoff.net/2026/01/14/alternatives-to-minio-for-single-node-local-s3/ MinIO a abandonné le support single-node fin 2025 pour des raisons commerciales, cassant de nombreuses démos et pipelines CI/CD qui l'utilisaient pour émuler S3 localement L'auteur cherche un remplacement simple avec image Docker, compatibilité S3, licence open source, déploiement mono-nœud facile et communauté active S3Proxy est très léger et facile à configurer, semble être l'option la plus simple mais repose sur un seul contributeur RustFS est facile à utiliser et inclut une GUI, mais c'est un projet très récent en version alpha avec une faille de sécurité majeure récente SeaweedFS existe depuis 2012 avec support S3 depuis 2018, relativement facile à configurer et dispose d'une interface web basique Zenko CloudServer remplace facilement MinIO mais la documentation et le branding (cloudserver/zenko/scality) peuvent prêter à confusion Garage nécessite une configuration complexe avec fichier TOML et conteneur d'initialisation séparé, pas un simple remplacement drop-in Apache Ozone requiert au minimum quatre nœuds pour fonctionner, beaucoup trop lourd pour un usage local simple L'auteur recommande SeaweedFS et S3Proxy comme remplaçants viables, RustFS en maybe, et élimine Garage et Ozone pour leur complexité Garage a une histoire tres associative, il vient du collectif https://deuxfleurs.fr/ qui offre un cloud distribué sans datacenter C'est certainement pas une bonne idée, les datacenters dans l'espace https://taranis.ie/datacenters-in-space-are-a-terrible-horrible-no-good-idea/ Avis d'expert (ex-NASA/Google, Dr en électronique spatiale) : Centres de données spatiaux, une "terrible" idée. Incompatibilité fondamentale : L'électronique (surtout IA/GPU) est inadaptée à l'environnement spatial. Énergie : Accès limité. Le solaire (type ISS) est insuffisant pour l'échelle de l'IA. Le nucléaire (RTG) est trop faible. Refroidissement : L'espace n'est pas "froid" ; absence de convection. Nécessite des radiateurs gigantesques (ex: 531m² pour 200kW). Radiations : Provoque erreurs (SEU, SEL) et dommages. Les GPU sont très vulnérables. Blindage lourd et inefficace. Les puces "durcies" sont très lentes. Communications : Bande passante très limitée (1Gbps radio vs 100Gbps terrestre). Le laser est tributaire des conditions atmosphériques. Conclusion : Projet extrêmement difficile, coûteux et aux performances médiocres. Data et Intelligence Artificielle Guillaume a développé un serveur MCP pour arXiv (le site de publication de papiers de recherche) en Java avec le framework Quarkus https://glaforge.dev/posts/2026/01/18/implementing-an-arxiv-mcp-server-with-quarkus-in-java/ Implémentation d'un serveur MCP (Model Context Protocol) arXiv en Java avec Quarkus. Objectif : Accéder aux publications arXiv et illustrer les fonctionnalités moins connues du protocole MCP. Mise en œuvre : Utilisation du framework Quarkus (Java) et son support MCP étendu. Assistance par Antigravity (IDE agentique) pour le développement et l'intégration de l'API arXiv. Interaction avec l'API arXiv : requêtes HTTP, format XML Atom pour les résultats, parser XML Jackson. Fonctionnalités MCP exposées : Outils (@Tool) : Recherche de publications (search_papers). Ressources (@Resource, @ResourceTemplate) : Taxonomie des catégories arXiv, métadonnées des articles (via un template d'URI). Prompts (@Prompt) : Exemples pour résumer des articles ou construire des requêtes de recherche. Configuration : Le serveur peut fonctionner en STDIO (local) ou via HTTP Streamable (local ou distant), avec une configuration simple dans des clients comme Gemini CLI. Conclusion : Quarkus simplifie la création de serveurs MCP riches en fonctionnalités, rendant les données et services "prêts pour l'IA" avec l'aide d'outils d'IA comme Antigravity. Anthropic ne mettra pas de pub dans Claude https://www.anthropic.com/news/claude-is-a-space-to-think c'est en reaction au plan non public d'OpenAi de mettre de la pub pour pousser les gens au mode payant OpenAI a besoin de cash et est probablement le plus utilisé pour gratuit au monde Anthropic annonce que Claude restera sans publicité pour préserver son rôle d'assistant conversationnel dédié au travail et à la réflexion approfondie. Les conversations avec Claude sont souvent sensibles, personnelles ou impliquent des tâches complexes d'ingénierie logicielle où les publicités seraient inappropriées. L'analyse des conversations montre qu'une part significative aborde des sujets délicats similaires à ceux évoqués avec un conseiller de confiance. Un modèle publicitaire créerait des incitations contradictoires avec le principe fondamental d'être "genuinely helpful" inscrit dans la Constitution de Claude. Les publicités introduiraient un conflit d'intérêt potentiel où les recommandations pourraient être influencées par des motivations commerciales plutôt que par l'intérêt de l'utilisateur. Le modèle économique d'Anthropic repose sur les contrats entreprise et les abonnements payants, permettant de réinvestir dans l'amélioration de Claude. Anthropic maintient l'accès gratuit avec des modèles de pointe et propose des tarifs réduits pour les ONG et l'éducation dans plus de 60 pays. Le commerce "agentique" sera supporté mais uniquement à l'initiative de l'utilisateur, jamais des annonceurs, pour préserver la confiance. Les intégrations tierces comme Figma, Asana ou Canva continueront d'être développées en gardant l'utilisateur aux commandes. Anthropic compare Claude à un cahier ou un tableau blanc : des espaces de pensée purs, sans publicité. Infinispan 16.1 est sorti https://infinispan.org/blog/2026/02/04/infinispan-16-1 déjà le nom de la release mérite une mention Le memory bounded par cache et par ensemble de cache s est pas facile à faire en Java Une nouvelle api OpenAPI AOT caché dans les images container Un serveur MCP local juste avec un fichier Java ? C'est possible avec LangChain4j et JBang https://glaforge.dev/posts/2026/02/11/zero-boilerplate-java-stdio-mcp-servers-with-langchain4j-and-jbang/ Création rapide de serveurs MCP Java sans boilerplate. MCP (Model Context Protocol): standard pour connecter les LLM à des outils et données. Le tutoriel répond au manque d'options simples pour les développeurs Java, face à une prédominance de Python/TypeScript dans l'écosystème MCP. La solution utilise: LangChain4j: qui intègre un nouveau module serveur MCP pour le protocole STDIO. JBang: permet d'exécuter des fichiers Java comme des scripts, éliminant les fichiers de build (pom.xml, Gradle). Implémentation: se fait via un seul fichier .java. JBang gère automatiquement les dépendances (//DEPS). L'annotation @Tool de LangChain4j expose les méthodes Java aux LLM. StdioMcpServerTransport gère la communication JSON-RPC via l'entrée/sortie standard (STDIO). Point crucial: Les logs doivent impérativement être redirigés vers System.err pour éviter de corrompre System.out, qui est réservé à la communication MCP (messages JSON-RPC). Facilite l'intégration locale avec des outils comme Gemini CLI, Claude Code, etc. Reciprocal Rank Fusion : un algorithme utile et souvent utilisé pour faire de la recherche hybride, pour mélanger du RAG et des recherches par mots-clé https://glaforge.dev/posts/2026/02/10/advanced-rag-understanding-reciprocal-rank-fusion-in-hybrid-search/ RAG : Qualité LLM dépend de la récupération. Recherche Hybride : Combiner vectoriel et mots-clés (BM25) est optimal. Défi : Fusionner des scores d'échelles différentes. Solution : Reciprocal Rank Fusion (RRF). RRF : Algorithme robuste qui fusionne des listes de résultats en se basant uniquement sur le rang des documents, ignorant les scores. Avantages RRF : Pas de normalisation de scores, scalable, excellente première étape de réorganisation. Architecture RAG fréquente : RRF (large sélection) + Cross-Encoder / modèle de reranking (précision fine). RAG-Fusion : Utilise un LLM pour générer plusieurs variantes de requête, puis RRF agrège tous les résultats pour renforcer le consensus et réduire les hallucinations. Implémentation : LangChain4j utilise RRF par défaut pour agréger les résultats de plusieurs retrievers. Les dernières fonctionnalités de Gemini et Nano Banana supportées dans LangChain4j https://glaforge.dev/posts/2026/02/06/latest-gemini-and-nano-banana-enhancements-in-langchain4j/ Nouveaux modèles d'images Nano Banana (Gemini 2.5/3.0) pour génération et édition (jusqu'à 4K). "Grounding" via Google Search (pour images et texte) et Google Maps (localisation, Gemini 2.5). Outil de contexte URL (Gemini 3.0) pour lecture directe de pages web. Agents multimodaux (AiServices) capables de générer des images. Configuration de la réflexion (profondeur Chain-of-Thought) pour Gemini 3.0. Métadonnées enrichies : usage des tokens et détails des sources de "grounding". Comment configurer Gemini CLI comment agent de code dans IntelliJ grâce au protocole ACP https://glaforge.dev/posts/2026/02/01/how-to-integrate-gemini-cli-with-intellij-idea-using-acp/ But : Intégrer Gemini CLI à IntelliJ IDEA via l'Agent Client Protocol (ACP). Prérequis : IntelliJ IDEA 2025.3+, Node.js (v20+), Gemini CLI. Étapes : Installer Gemini CLI (npm install -g @google/gemini-cli). Localiser l'exécutable gemini. Configurer ~/.jetbrains/acp.json (chemin exécutable, --experimental-acp, use_idea_mcp: true). Redémarrer IDEA, sélectionner "Gemini CLI" dans l'Assistant IA. Usage : Gemini interagit avec le code et exécute des commandes (contexte projet). Important : S'assurer du flag --experimental-acp dans la configuration. Outillage PipeNet, une alternative (open source aussi) à LocalTunnel, mais un plus évoluée https://pipenet.dev/ pipenet: Alternative open-source et moderne à localtunnel (client + serveur). Usages: Développement local (partage, webhooks), intégration SDK, auto-hébergement sécurisé. Fonctionnalités: Client (expose ports locaux, sous-domaines), Serveur (déploiement, domaines personnalisés, optimisé cloud mono-port). Avantages vs localtunnel: Déploiement cloud sur un seul port, support multi-domaines, TypeScript/ESM, maintenance active. Protocoles: HTTP/S, WebSocket, SSE, HTTP Streaming. Intégration: CLI ou SDK JavaScript. JSON-IO — une librairie comme Jackson ou GSON, supportant JSON5, TOON, et qui pourrait être utile pour l'utilisation du "structured output" des LLMs quand ils ne produisent pas du JSON parfait https://github.com/jdereg/json-io json-io : Librairie Java pour la sérialisation et désérialisation JSON/TOON. Gère les graphes d'objets complexes, les références cycliques et les types polymorphes. Support complet JSON5 (lecture et écriture), y compris des fonctionnalités non prises en charge par Jackson/Gson. Format TOON : Notation orientée token, optimisée pour les LLM, réduisant l'utilisation de tokens de 40 à 50% par rapport au JSON. Légère : Aucune dépendance externe (sauf java-util), taille de JAR réduite (~330K). Compatible JDK 1.8 à 24, ainsi qu'avec les environnements JPMS et OSGi. Deux modes de conversion : vers des objets Java typés (toJava()) ou vers des Map (toMaps()). Options de configuration étendues via ReadOptionsBuilder et WriteOptionsBuilder. Optimisée pour les déploiements cloud natifs et les architectures de microservices. Utiliser mailpit et testcontainer pour tester vos envois d'emails https://foojay.io/today/testing-emails-with-testcontainers-and-mailpit/ l'article montre via SpringBoot et sans. Et voici l'extension Quarkus https://quarkus.io/extensions/io.quarkiverse.mailpit/quarkus-mailpit/?tab=docs Tester l'envoi d'emails en développement est complexe car on ne peut pas utiliser de vrais serveurs SMTP Mailpit est un serveur SMTP de test qui capture les emails et propose une interface web pour les consulter Testcontainers permet de démarrer Mailpit dans un conteneur Docker pour les tests d'intégration L'article montre comment configurer une application SpringBoot pour envoyer des emails via JavaMail Un module Testcontainers dédié à Mailpit facilite son intégration dans les tests Le conteneur Mailpit expose un port SMTP (1025) et une API HTTP (8025) pour vérifier les emails reçus Les tests peuvent interroger l'API HTTP de Mailpit pour valider le contenu des emails envoyés Cette approche évite d'utiliser des mocks et teste réellement l'envoi d'emails Mailpit peut aussi servir en développement local pour visualiser les emails sans les envoyer réellement La solution fonctionne avec n'importe quel framework Java supportant JavaMail Architecture Comment scaler un système de 0 à 10 millions d'utilisateurs https://blog.algomaster.io/p/scaling-a-system-from-0-to-10-million-users Philosophie : Scalabilité incrémentale, résoudre les goulots d'étranglement sans sur-ingénierie. 0-100 utilisateurs : Serveur unique (app, DB, jobs). 100-1K : Séparer app et DB (services gérés, pooling). 1K-10K : Équilibreur de charge, multi-serveurs d'app (stateless via sessions partagées). 10K-100K : Caching, réplicas de lecture DB, CDN (réduire charge DB). 100K-500K : Auto-scaling, applications stateless (authentification JWT). 500K-10M : Sharding DB, microservices, files de messages (traitement asynchrone). 10M+ : Déploiement multi-régions, CQRS, persistance polyglotte, infra personnalisée. Principes clés : Simplicité, mesure, stateless essentiel, cache/asynchrone, sharding prudent, compromis (CAP), coût de la complexité. Patterns d'Architecture 2026 - Du Hype à la Réalité du Terrain (Part 1/2) - https://blog.ippon.fr/2026/01/30/patterns-darchitecture-2026-part-1/ L'article présente quatre patterns d'architecture logicielle pour répondre aux enjeux de scalabilité, résilience et agilité business dans les systèmes modernes Il présentent leurs raisons et leurs pièges Un bon rappel L'Event-Driven Architecture permet une communication asynchrone entre systèmes via des événements publiés et consommés, évitant le couplage direct Les bénéfices de l'EDA incluent la scalabilité indépendante des composants, la résilience face aux pannes et l'ajout facile de nouveaux cas d'usage Le pattern API-First associé à un API Gateway centralise la sécurité, le routage et l'observabilité des APIs avec un catalogue unifié Le Backend for Frontend crée des APIs spécifiques par canal (mobile, web, partenaires) pour optimiser l'expérience utilisateur CQRS sépare les modèles de lecture et d'écriture avec des bases optimisées distinctes, tandis que l'Event Sourcing stocke tous les événements plutôt que l'état actuel Le Saga Pattern gère les transactions distribuées via orchestration centralisée ou chorégraphie événementielle pour coordonner plusieurs microservices Les pièges courants incluent l'explosion d'événements granulaires, la complexité du debugging distribué, et la mauvaise gestion de la cohérence finale Les technologies phares sont Kafka pour l'event streaming, Kong pour l'API Gateway, EventStoreDB pour l'Event Sourcing et Temporal pour les Sagas Ces patterns nécessitent une maturité technique et ne sont pas adaptés aux applications CRUD simples ou aux équipes junior Patterns d'architecture 2026 : du hype à la réalité terrain part. 2 - https://blog.ippon.fr/2026/02/04/patterns-darchitecture-2026-part-2/ Deuxième partie d'un guide pratique sur les patterns d'architecture logicielle et système éprouvés pour moderniser et structurer les applications en 2026 Strangler Fig permet de migrer progressivement un système legacy en l'enveloppant petit à petit plutôt que de tout réécrire d'un coup (70% d'échec pour les big bang) Anti-Corruption Layer protège votre nouveau domaine métier des modèles externes et legacy en créant une couche de traduction entre les systèmes Service Mesh gère automatiquement la communication inter-services dans les architectures microservices (sécurité mTLS, observabilité, résilience) Architecture Hexagonale sépare le coeur métier des détails techniques via des ports et adaptateurs pour améliorer la testabilité et l'évolutivité Chaque pattern est illustré par un cas client concret avec résultats mesurables et liste des pièges à éviter lors de l'implémentation Les technologies 2026 mentionnées incluent Istio, Linkerd pour service mesh, LaunchDarkly pour feature flags, NGINX et Kong pour API gateway Tableau comparatif final aide à choisir le bon pattern selon la complexité, le scope et le use case spécifique du projet L'article insiste sur une approche pragmatique : ne pas utiliser un pattern juste parce qu'il est moderne mais parce qu'il résout un problème réel Pour les systèmes simples type CRUD ou avec peu de services, ces patterns peuvent introduire une complexité inutile qu'il faut savoir éviter Méthodologies Le rêve récurrent de remplacer voire supprimer les développeurs https://www.caimito.net/en/blog/2025/12/07/the-recurring-dream-of-replacing-developers.html Depuis 1969, chaque décennie voit une tentative de réduire le besoin de développeurs (de COBOL, UML, visual builders… à IA). Motivation : frustration des dirigeants face aux délais et coûts de développement. La complexité logicielle est intrinsèque et intellectuelle, non pas une question d'outils. Chaque vague technologique apporte de la valeur mais ne supprime pas l'expertise humaine. L'IA assiste les développeurs, améliore l'efficacité, mais ne remplace ni le jugement ni la gestion de la complexité. La demande de logiciels excède l'offre car la contrainte majeure est la réflexion nécessaire pour gérer cette complexité. Pour les dirigeants : les outils rendent-ils nos développeurs plus efficaces sur les problèmes complexes et réduisent-ils les tâches répétitives ? Le "rêve" de remplacer les développeurs, irréalisable, est un moteur d'innovation créant des outils précieux. Comment creuser des sujets à l'ère de l'IA générative. Quid du partage et la curation de ces recherches ? https://glaforge.dev/posts/2026/02/04/researching-topics-in-the-age-of-ai-rock-solid-webhooks-case-study/ Recherche initiale de l'auteur sur les webhooks en 2019, processus long et manuel. L'IA (Deep Research, Gemini, NotebookLM) facilite désormais la recherche approfondie, l'exploration de sujets et le partage des résultats. L'IA a identifié et validé des pratiques clés pour des déploiements de webhooks résilients, en grande partie les mêmes que celles trouvées précédemment par l'auteur. Génération d'artefacts par l'IA : rapport détaillé, résumé concis, illustration sketchnote, et même une présentation (slide deck). Guillaume s'interroge sur le partage public de ces rapports de recherche générés par l'IA, tout en souhaitant éviter le "AI Slop". Loi, société et organisation Le logiciel menacé par le vibe coding https://www.techbuzz.ai/articles/we-built-a-monday-com-clone-in-under-an-hour-with-ai Deux journalistes de CNBC sans expérience de code ont créé un clone fonctionnel de Monday.com en moins de 60 minutes pour 5 à 15 dollars. L'expérience valide les craintes des investisseurs qui ont provoqué une baisse de 30% des actions des entreprises SaaS. L'IA a non seulement reproduit les fonctionnalités de base mais a aussi recherché Monday.com de manière autonome pour identifier et recréer ses fonctionnalités clés. Cette technique appelée "vibe-coding" permet aux non-développeurs de construire des applications via des instructions en anglais courant. Les entreprises les plus vulnérables sont celles offrant des outils "qui se posent sur le travail" comme Atlassian, Adobe, HubSpot, Zendesk et Smartsheet. Les entreprises de cybersécurité comme CrowdStrike et Palo Alto sont considérées plus protégées grâce aux effets de réseau et aux barrières réglementaires. Les systèmes d'enregistrement comme Salesforce restent plus difficiles à répliquer en raison de leur profondeur d'intégration et de données d'entreprise. Le coût de 5 à 15 dollars par construction permet aux entreprises de prototyper plusieurs solutions personnalisées pour moins cher qu'une seule licence Monday.com. L'expérience soulève des questions sur la pérennité du marché de 5 milliards de dollars des outils de gestion de projet face à l'IA générative. Conférences En complément de l'agenda des conférences de Aurélie Vache, il y a également le site https://javaconferences.org/ (fait par Brian Vermeer) avec toutes les conférences Java à venir ! La liste des conférences provenant de Developers Conferences Agenda/List par Aurélie Vache et contributeurs : 12-13 février 2026 : Touraine Tech #26 - Tours (France) 12-13 février 2026 : World Artificial Intelligence Cannes Festival - Cannes (France) 19 février 2026 : ObservabilityCON on the Road - Paris (France) 6 mars 2026 : WordCamp Nice 2026 - Nice (France) 18 mars 2026 : Jupyter Workshops: AI in Jupyter: Building Extensible AI Capabilities for Interactive Computing - Saint-Maur-des-Fossés (France) 18-19 mars 2026 : Agile Niort 2026 - Niort (France) 20 mars 2026 : Atlantique Day 2026 - Nantes (France) 26 mars 2026 : Data Days Lille - Lille (France) 26-27 mars 2026 : SymfonyLive Paris 2026 - Paris (France) 26-27 mars 2026 : REACT PARIS - Paris (France) 27-29 mars 2026 : Shift - Nantes (France) 31 mars 2026 : ParisTestConf - Paris (France) 31 mars 2026-1 avril 2026 : FlowCon France 2026 - Paris (France) 1 avril 2026 : AWS Summit Paris - Paris (France) 2 avril 2026 : Pragma Cannes 2026 - Cannes (France) 2-3 avril 2026 : Xen Spring Meetup 2026 - Grenoble (France) 7 avril 2026 : PyTorch Conference Europe - Paris (France) 9-10 avril 2026 : Android Makers by droidcon 2026 - Paris (France) 9-11 avril 2026 : Drupalcamp Grenoble 2026 - Grenoble (France) 16-17 avril 2026 : MiXiT 2026 - Lyon (France) 17-18 avril 2026 : Faiseuses du Web 5 - Dinan (France) 22-24 avril 2026 : Devoxx France 2026 - Paris (France) 23-25 avril 2026 : Devoxx Greece - Athens (Greece) 6-7 mai 2026 : Devoxx UK 2026 - London (UK) 12 mai 2026 : Lead Innovation Day - Leadership Edition - Paris (France) 19 mai 2026 : La Product Conf Paris 2026 - Paris (France) 21-22 mai 2026 : Flupa UX Days 2026 - Paris (France) 22 mai 2026 : AFUP Day 2026 Lille - Lille (France) 22 mai 2026 : AFUP Day 2026 Paris - Paris (France) 22 mai 2026 : AFUP Day 2026 Bordeaux - Bordeaux (France) 22 mai 2026 : AFUP Day 2026 Lyon - Lyon (France) 28 mai 2026 : DevCon 27 : I.A. & Vibe Coding - Paris (France) 28 mai 2026 : Cloud Toulouse 2026 - Toulouse (France) 29 mai 2026 : NG Baguette Conf 2026 - Paris (France) 29 mai 2026 : Agile Tour Strasbourg 2026 - Strasbourg (France) 2-3 juin 2026 : Agile Tour Rennes 2026 - Rennes (France) 2-3 juin 2026 : OW2Con - Paris-Châtillon (France) 3 juin 2026 : IA–NA - La Rochelle (France) 5 juin 2026 : TechReady - Nantes (France) 5 juin 2026 : Fork it! - Rouen - Rouen (France) 6 juin 2026 : Polycloud - Montpellier (France) 9 juin 2026 : JFTL - Montrouge (France) 9 juin 2026 : C: - Caen (France) 11-12 juin 2026 : DevQuest Niort - Niort (France) 11-12 juin 2026 : DevLille 2026 - Lille (France) 12 juin 2026 : Tech F'Est 2026 - Nancy (France) 16 juin 2026 : Mobilis In Mobile 2026 - Nantes (France) 17-19 juin 2026 : Devoxx Poland - Krakow (Poland) 17-20 juin 2026 : VivaTech - Paris (France) 18 juin 2026 : Tech'Work - Lyon (France) 22-26 juin 2026 : Galaxy Community Conference - Clermont-Ferrand (France) 24-25 juin 2026 : Agi'Lille 2026 - Lille (France) 24-26 juin 2026 : BreizhCamp 2026 - Rennes (France) 2 juillet 2026 : Azur Tech Summer 2026 - Valbonne (France) 2-3 juillet 2026 : Sunny Tech - Montpellier (France) 3 juillet 2026 : Agile Lyon 2026 - Lyon (France) 6-8 juillet 2026 : Riviera Dev - Sophia Antipolis (France) 2 août 2026 : 4th Tech Summit on Artificial Intelligence & Robotics - Paris (France) 20-22 août 2026 : 4th Tech Summit on AI & Robotics - Paris (France) & Online 4 septembre 2026 : JUG Summer Camp 2026 - La Rochelle (France) 17-18 septembre 2026 : API Platform Conference 2026 - Lille (France) 24 septembre 2026 : PlatformCon Live Day Paris 2026 - Paris (France) 1 octobre 2026 : WAX 2026 - Marseille (France) 1-2 octobre 2026 : Volcamp - Clermont-Ferrand (France) 5-9 octobre 2026 : Devoxx Belgium - Antwerp (Belgium) Nous contacter Pour réagir à cet épisode, venez discuter sur le groupe Google https://groups.google.com/group/lescastcodeurs Contactez-nous via X/twitter https://twitter.com/lescastcodeurs ou Bluesky https://bsky.app/profile/lescastcodeurs.com Faire un crowdcast ou une crowdquestion Soutenez Les Cast Codeurs sur Patreon https://www.patreon.com/LesCastCodeurs Tous les épisodes et toutes les infos sur https://lescastcodeurs.com/
June is an upcoming Irish singer/songwriter from Laois. Her songs span between alternative folk, pop and dance music with Irish traditional singing influences. The Laois native has performed 10 original songs at the Panache music festival in Hoylake, Liverpool and also performed at a “Beatles Day” in Albert Dock, Liverpool, covering a number of songs by The Beatles. She is inspired by an eclectic range of artists including Clannad, Sia and David Guetta. Driven by raw emotion and understated intensity, her new track “Nothing" blends moody production with an intimate, stripped-back approach that puts feeling front and center. Built around atmospheric textures, subtle dynamics, and a reflective melodic core, the song captures a sense of quiet tension and vulnerability that lingers long after it ends. Its minimalist arrangement allows every sonic detail to breathe, creating a cinematic, late-night feel that feels both deeply personal and universally relatable - truly capturing the feeling of emptiness.
Baleine sous Gravillon - Nomen (l'origine des noms du Vivant)
Voici une deuxième épisode sur l'Autruche, géante de presque 3 mètres, dont la fière allure, les immenses jambes, et les plumes en panache ont marqué la culture humaine depuis des millénaires, du continent africain à l'Allemagne en passant par les États-Unis..._______
Cotton Club de Francis Ford Coppola sorti en 1984 est un film à grand spectacle qui fait revivre les années folles, lʹessor du jazz, la Prohibition, la ségrégation, les débuts du cinéma parlant et les guerres de gangs. Coppola plonge dans lʹhistoire de New York et propose un film dʹaction musical musclé. Le Cotton club, fondé par un gangster en 1923, est un club de jazz en vogue à la fin des années 20. Tous les artistes sont noirs, tous les clients sont blancs. Dans ce cabaret, la pègre, les politiciens, les vedettes du moment boivent un alcool interdit et clandestin et sʹencanaillent avec des filles pas farouches. Dans les années 20, le Cotton club de New York permet au jazz né à Chicago et à New Orleans de se populariser. Les personnages à lʹécran sont inspirés de ce microcosme multiculturel dʹHarlem. Italiens, Juifs, Russes, Irlandais, Afro-Américains, ils sont bandits, acteurs, danseurs, chanteurs. Ceux qui connaissent pourront sʹamuser à retrouver des doubles étonnants de Duke Ellington et de Cab Calloway. On y croise Charlie Chaplin et des barons de la pègre. Coppola ajoute dʹautres personnages inventés pour faire avancer son histoire. Derrière cette superproduction, on trouve Robert Evans. Il y aura de gros dépassements de budget, des tensions. Le tournage est chaotique, souvent improvisé, Richard Gere boude pendant plus dʹune semaine, Coppola menace de tout abandonner, dʹautres financiers sont contactés, on finit par retirer la production à Robert Evans. Toutes ces embrouilles participeront à la légende du film, plutôt bien accueilli à sa sortie, légende que nous allons vous raconter. REFERENCES Francis Ford Coppola & William Kennedy Discuss The Cotton Club, 2019 New York State Writers Institute https://www.youtube.com/watch?v=KnlURHhRo24 DOUIN, Jean-Luc, Cotton club, Panache, Glamour et frénésies, in Télérama No 1825 du 2 janvier 1985
De retour à cinq dans l'épisode, les cast codeurs démarrent cette année avec un gros épisode pleins de news et d'articles de fond. IA bien sûr, son impact sur les pratiques, Mockito qui tourne un page, du CSS (et oui), sur le (non) mapping d'APIs REST en MCP et d'une palanquée d'outils pour vous. Enregistré le 9 janvier 2026 Téléchargement de l'épisode LesCastCodeurs-Episode-335.mp3 ou en vidéo sur YouTube. News Langages 2026 sera-t'elle l'année de Java dans le terminal ? (j'ai ouïe dire que ça se pourrait bien…) https://xam.dk/blog/lets-make-2026-the-year-of-java-in-the-terminal/ 2026: Année de Java dans le terminal, pour rattraper son retard sur Python, Rust, Go et Node.js. Java est sous-estimé pour les applications CLI et les TUIs (interfaces utilisateur terminales) malgré ses capacités. Les anciennes excuses (démarrage lent, outillage lourd, verbosité, distribution complexe) sont obsolètes grâce aux avancées récentes : GraalVM Native Image pour un démarrage en millisecondes. JBang pour l'exécution simplifiée de scripts Java (fichiers uniques, dépendances) et de JARs. JReleaser pour l'automatisation de la distribution multi-plateforme (Homebrew, SDKMAN, Docker, images natives). Project Loom pour la concurrence facile avec les threads virtuels. PicoCLI pour la gestion des arguments. Le potentiel va au-delà des scripts : création de TUIs complètes et esthétiques (ex: dashboards, gestionnaires de fichiers, assistants IA). Excuses caduques : démarrage rapide (GraalVM), légèreté (JBang), distribution simple (JReleaser), concurrence (Loom). Potentiel : créer des applications TUI riches et esthétiques. Sortie de Ruby 4.0.0 https://www.ruby-lang.org/en/news/2025/12/25/ruby-4-0-0-released/ Ruby Box (expérimental) : Une nouvelle fonctionnalité permettant d'isoler les définitions (classes, modules, monkey patches) dans des boîtes séparées pour éviter les conflits globaux. ZJIT : Un nouveau compilateur JIT de nouvelle génération développé en Rust, visant à surpasser YJIT à terme (actuellement en phase expérimentale). Améliorations de Ractor : Introduction de Ractor::Port pour une meilleure communication entre Ractors et optimisation des structures internes pour réduire les contentions de verrou global. Changements syntaxiques : Les opérateurs logiques (||, &&, and, or) en début de ligne permettent désormais de continuer la ligne précédente, facilitant le style "fluent". Classes Core : Set et Pathname deviennent des classes intégrées (Core) au lieu d'être dans la bibliothèque standard. Diagnostics améliorés : Les erreurs d'arguments (ArgumentError) affichent désormais des extraits de code pour l'appelant ET la définition de la méthode. Performances : Optimisation de Class#new, accès plus rapide aux variables d'instance et améliorations significatives du ramasse-miettes (GC). Nettoyage : Suppression de comportements obsolètes (comme la création de processus via IO.open avec |) et mise à jour vers Unicode 17.0. Librairies Introduction pour créer une appli multi-tenant avec Quarkus et http://nip.io|nip.io https://www.the-main-thread.com/p/quarkus-multi-tenant-api-nipio-tutorial Construction d'une API REST multi-tenant en Quarkus avec isolation par sous-domaine Utilisation de http://nip.io|nip.io pour la résolution DNS automatique sans configuration locale Extraction du tenant depuis l'en-tête HTTP Host via un filtre JAX-RS Contexte tenant géré avec CDI en scope Request pour l'isolation des données Service applicatif gérant des données spécifiques par tenant avec Map concurrent Interface web HTML/JS pour visualiser et ajouter des données par tenant Configuration CORS nécessaire pour le développement local Pattern acme.127-0-0-1.nip.io résolu automatiquement vers localhost Code complet disponible sur GitHub avec exemples curl et tests navigateur Base idéale pour prototypage SaaS, tests multi-tenants Hibernate 7.2 avec quelques améliorations intéressantes https://docs.hibernate.org/orm/7.2/whats-new/%7Bhtml-meta-canonical-link%7D read only replica (experimental), crée deux session factories et swap au niveau jdbc si le driver le supporte et custom sinon. On ouvre une session en read only child statelesssession (partage le contexte transactionnel) hibernate vector module ajouter binary, float16 and sparse vectors Le SchemaManager peut resynchroniser les séquences par rapport aux données des tables Regexp dans HQL avec like Nouvelle version de Hibernate with Panache pour Quarkus https://quarkus.io/blog/hibernate-panache-next/ Nouvelle extension expérimentale qui unifie Hibernate ORM with Panache et Hibernate Reactive with Panache Les entités peuvent désormais fonctionner en mode bloquant ou réactif sans changer de type de base Support des sessions sans état (StatelessSession) en plus des entités gérées traditionnelles Intégration de Jakarta Data pour des requêtes type-safe vérifiées à la compilation Les opérations sont définies dans des repositories imbriqués plutôt que des méthodes statiques Possibilité de définir plusieurs repositories pour différents modes d'opération sur une même entité Accès aux différents modes (bloquant/réactif, géré/sans état) via des méthodes de supertype Support des annotations @Find et @HQL pour générer des requêtes type-safe Accès au repository via injection ou via le métamodèle généré Extension disponible dans la branche main, feedback demandé sur Zulip ou GitHub Spring Shell 4.0.0 GA publié - https://spring.io/blog/2025/12/30/spring-shell-4-0-0-ga-released Sortie de la version finale de Spring Shell 4.0.0 disponible sur Maven Central Compatible avec les dernières versions de Spring Framework et Spring Boot Modèle de commandes revu pour simplifier la création d'applications CLI interactives Intégration de jSpecify pour améliorer la sécurité contre les NullPointerException Architecture plus modulaire permettant meilleure personnalisation et extension Documentation et exemples entièrement mis à jour pour faciliter la prise en main Guide de migration vers la v4 disponible sur le wiki du projet Corrections de bugs pour améliorer la stabilité et la fiabilité Permet de créer des applications Java autonomes exécutables avec java -jar ou GraalVM native Approche opinionnée du développement CLI tout en restant flexible pour les besoins spécifiques Une nouvelle version de la librairie qui implémenter des gatherers supplémentaires à ceux du JDK https://github.com/tginsberg/gatherers4j/releases/tag/v0.13.0 gatherers4j v0.13.0. Nouveaux gatherers : uniquelyOccurringBy(), moving/runningMedian(), moving/runningMax/Min(). Changement : les gatherers "moving" incluent désormais par défaut les valeurs partielles (utiliser excludePartialValues() pour désactiver). LangChain4j 1.10.0 https://github.com/langchain4j/langchain4j/releases/tag/1.10.0 Introduction d'un catalogue de modèles pour Anthropic, Gemini, OpenAI et Mistral. Ajout de capacités d'observabilité et de monitoring pour les agents. Support des sorties structurées, des outils avancés et de l'analyse de PDF via URL pour Anthropic. Support des services de transcription pour OpenAI. Possibilité de passer des paramètres de configuration de chat en argument des méthodes. Nouveau garde-fou de modération pour les messages entrants. Support du contenu de raisonnement pour les modèles. Introduction de la recherche hybride. Améliorations du client MCP. Départ du lead de mockito après 10 ans https://github.com/mockito/mockito/issues/3777 Tim van der Lippe, mainteneur majeur de Mockito, annonce son départ pour mars 2026, marquant une décennie de contribution au projet. L'une des raisons principales est l'épuisement lié aux changements récents dans la JVM (JVM 22+) concernant les agents, imposant des contraintes techniques lourdes sans alternative simple proposée par les mainteneurs du JDK. Il pointe du doigt le manque de soutien et la pression exercée sur les bénévoles de l'open source lors de ces transitions technologiques majeures. La complexité croissante pour supporter Kotlin, qui utilise la JVM de manière spécifique, rend la base de code de Mockito plus difficile à maintenir et moins agréable à faire évoluer selon lui. Il exprime une perte de plaisir et préfère désormais consacrer son temps libre à d'autres projets comme Servo, un moteur web écrit en Rust. Une période de transition est prévue jusqu'en mars pour assurer la passation de la maintenance à de nouveaux contributeurs. Infrastructure Le premier intérêt de Kubernetes n'est pas le scaling - https://mcorbin.fr/posts/2025-12-29-kubernetes-scale/ Avant Kubernetes, gérer des applications en production nécessitait de multiples outils complexes (Ansible, Puppet, Chef) avec beaucoup de configuration manuelle Le load balancing se faisait avec HAProxy et Keepalived en actif/passif, nécessitant des mises à jour manuelles de configuration à chaque changement d'instance Le service discovery et les rollouts étaient orchestrés manuellement, instance par instance, sans automatisation de la réconciliation Chaque stack (Java, Python, Ruby) avait sa propre méthode de déploiement, sans standardisation (rpm, deb, tar.gz, jar) La gestion des ressources était manuelle avec souvent une application par machine, créant du gaspillage et complexifiant la maintenance Kubernetes standardise tout en quelques ressources YAML (Deployment, Service, Ingress, ConfigMap, Secret) avec un format déclaratif simple Toutes les fonctionnalités critiques sont intégrées : service discovery, load balancing, scaling, stockage, firewalling, logging, tolérance aux pannes La complexité des centaines de scripts shell et playbooks Ansible maintenus avant était supérieure à celle de Kubernetes Kubernetes devient pertinent dès qu'on commence à reconstruire manuellement ces fonctionnalités, ce qui arrive très rapidement La technologie est flexible et peut gérer aussi bien des applications modernes que des monolithes legacy avec des contraintes spécifiques Mole https://github.com/tw93/Mole Un outil en ligne de commande (CLI) tout-en-un pour nettoyer et optimiser macOS. Combine les fonctionnalités de logiciels populaires comme CleanMyMac, AppCleaner, DaisyDisk et iStat Menus. Analyse et supprime en profondeur les caches, les fichiers logs et les résidus de navigateurs. Désinstallateur intelligent qui retire proprement les applications et leurs fichiers cachés (Launch Agents, préférences). Analyseur d'espace disque interactif pour visualiser l'occupation des fichiers et gérer les documents volumineux. Tableau de bord temps réel (mo status) pour surveiller le CPU, le GPU, la mémoire et le réseau. Fonction de purge spécifique pour les développeurs permettant de supprimer les artefacts de build (node_modules, target, etc.). Intégration possible avec Raycast ou Alfred pour un lancement rapide des commandes. Installation simple via Homebrew ou un script curl. Des images Docker sécurisées pour chaque développeur https://www.docker.com/blog/docker-hardened-images-for-every-developer/ Docker rend ses "Hardened Images" (DHI) gratuites et open source (licence Apache 2.0) pour tous les développeurs. Ces images sont conçues pour être minimales, prêtes pour la production et sécurisées dès le départ afin de lutter contre l'explosion des attaques sur la chaîne logistique logicielle. Elles s'appuient sur des bases familières comme Alpine et Debian, garantissant une compatibilité élevée et une migration facile. Chaque image inclut un SBOM (Software Bill of Materials) complet et vérifiable, ainsi qu'une provenance SLSA de niveau 3 pour une transparence totale. L'utilisation de ces images permet de réduire considérablement le nombre de vulnérabilités (CVE) et la taille des images (jusqu'à 95 % plus petites). Docker étend cette approche sécurisée aux graphiques Helm et aux serveurs MCP (Mongo, Grafana, GitHub, etc.). Des offres commerciales (DHI Enterprise) restent disponibles pour des besoins spécifiques : correctifs critiques sous 7 jours, support FIPS/FedRAMP ou support à cycle de vie étendu (ELS). Un assistant IA expérimental de Docker peut analyser les conteneurs existants pour recommander l'adoption des versions sécurisées correspondantes. L'initiative est soutenue par des partenaires majeurs tels que Google, MongoDB, Snyk et la CNCF. Web La maçonnerie ("masonry") arrive dans la spécification des CSS et commence à être implémentée par les navigateurs https://webkit.org/blog/17660/introducing-css-grid-lanes/ Permet de mettre en colonne des éléments HTML les uns à la suite des autres. D'abord sur la première ligne, et quand la première ligne est remplie, le prochain élément se trouvera dans la colonne où il pourra être le plus haut possible, et ainsi de suite. après la plomberie du middleware, la maçonnerie du front :laughing: Data et Intelligence Artificielle On ne devrait pas faire un mapping 1:1 entre API REST et MCP https://nordicapis.com/why-mcp-shouldnt-wrap-an-api-one-to-one/ Problématique : Envelopper une API telle quelle dans le protocole MCP (Model Context Protocol) est un anti-pattern. Objectif du MCP : Conçu pour les agents d'IA, il doit servir d'interface d'intention, non de miroir d'API. Les agents comprennent les tâches, pas la logique complexe des API (authentification, pagination, orchestration). Conséquences du mappage un-à-un : Confusion des agents, erreurs, hallucinations. Difficulté à gérer les orchestrations complexes (plusieurs appels pour une seule action). Exposition des faiblesses de l'API (schéma lourd, endpoints obsolètes). Maintenance accrue lors des changements d'API. Meilleure approche : Construire des outils MCP comme des SDK pour agents, encapsulant la logique nécessaire pour accomplir une tâche spécifique. Pratiques recommandées : Concevoir autour des intentions/actions utilisateur (ex. : "créer un projet", "résumer un document"). Regrouper les appels en workflows ou actions uniques. Utiliser un langage naturel pour les définitions et les noms. Limiter la surface d'exposition de l'API pour la sécurité et la clarté. Appliquer des schémas d'entrée/sortie stricts pour guider l'agent et réduire l'ambiguïté. Des agents en production avec AWS - https://blog.ippon.fr/2025/12/22/des-agents-en-production-avec-aws/ AWS re:Invent 2025 a massivement mis en avant l'IA générative et les agents IA Un agent IA combine un LLM, une boucle d'appel et des outils invocables Strands Agents SDK facilite le prototypage avec boucles ReAct intégrées et gestion de la mémoire Managed MLflow permet de tracer les expérimentations et définir des métriques de performance Nova Forge optimise les modèles par réentraînement sur données spécifiques pour réduire coûts et latence Bedrock Agent Core industrialise le déploiement avec runtime serverless et auto-scaling Agent Core propose neuf piliers dont observabilité, authentification, code interpreter et browser managé Le protocole MCP d'Anthropic standardise la fourniture d'outils aux agents SageMaker AI et Bedrock centralisent l'accès aux modèles closed source et open source via API unique AWS mise sur l'évolution des chatbots vers des systèmes agentiques optimisés avec modèles plus frugaux Debezium 3.4 amène plusieurs améliorations intéressantes https://debezium.io/blog/2025/12/16/debezium-3-4-final-released/ Correction du problème de calcul du low watermark Oracle qui causait des pertes de performance Correction de l'émission des événements heartbeat dans le connecteur Oracle avec les requêtes CTE Amélioration des logs pour comprendre les transactions actives dans le connecteur Oracle Memory guards pour protéger contre les schémas de base de données de grande taille Support de la transformation des coordonnées géométriques pour une meilleure gestion des données spatiales Extension Quarkus DevServices permettant de démarrer automatiquement une base de données et Debezium en dev Intégration OpenLineage pour tracer la lignée des données et suivre leur flux à travers les pipelines Compatibilité testée avec Kafka Connect 4.1 et Kafka brokers 4.1 Infinispan 16.0.4 et .5 https://infinispan.org/blog/2025/12/17/infinispan-16-0-4 Spring Boot 4 et Spring 7 supportés Evolution dans les metriques Deux bugs de serialisation Construire un agent de recherche en Java avec l'API Interactions https://glaforge.dev/posts/2026/01/03/building-a-research-assistant-with-the-interactions-api-in-java/ Assistant de recherche IA Java (API Interactions Gemini), test du SDK implémenté par Guillaume. Workflow en 4 phases : Planification : Gemini Flash + Google Search. Recherche : Modèle "Deep Research" (tâche de fond). Synthèse : Gemini Pro (rapport exécutif). Infographie : Nano Banana Pro (à partir de la synthèse). API Interactions : gestion d'état serveur, tâches en arrière-plan, réponses multimodales (images). Appréciation : gestion d'état de l'API (vs LLM sans état). Validation : efficacité du SDK Java pour cas complexes. Stephan Janssen (le papa de Devoxx) a créé un serveur MCP (Model Context Protocol) basé sur LSP (Language Server Protocol) pour que les assistants de code analysent le code en le comprenant vraiment plutôt qu'en faisant des grep https://github.com/stephanj/LSP4J-MCP Le problème identifié : Les assistants IA utilisent souvent la recherche textuelle (type grep) pour naviguer dans le code, ce qui manque de contexte sémantique, génère du bruit (faux positifs) et consomme énormément de tokens inutilement. La solution LSP4J-MCP : Une approche "standalone" (autonome) qui encapsule le serveur de langage Eclipse (JDTLS) via le protocole MCP (Model Context Protocol). Avantage principal : Offre une compréhension sémantique profonde du code Java (types, hiérarchies, références) sans nécessiter l'ouverture d'un IDE lourd comme IntelliJ. Comparaison des méthodes : AST : Trop léger (pas de compréhension inter-fichiers). IntelliJ MCP : Puissant mais exige que l'IDE soit ouvert (gourmand en ressources). LSP4J-MCP : Le meilleur des deux mondes pour les workflows en terminal, à distance (SSH) ou CI/CD. Fonctionnalités clés : Expose 5 outils pour l'IA (find_symbols, find_references, find_definition, document_symbols, find_interfaces_with_method). Résultats : Une réduction de 100x des tokens utilisés pour la navigation et une précision accrue (distinction des surcharges, des scopes, etc.). Disponibilité : Le projet est open source et disponible sur GitHub pour intégration immédiate (ex: avec Claude Code, Gemini CLI, etc). A noter l'ajout dans claude code 2.0.74 d'un tool pour supporter LSP ( https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md#2074 ) Awesome (GitHub) Copilot https://github.com/github/awesome-copilot Une collection communautaire d'instructions, de prompts et de configurations pour optimiser l'utilisation de GitHub Copilot. Propose des "Agents" spécialisés qui s'intègrent aux serveurs MCP pour améliorer les flux de travail spécifiques. Inclut des prompts ciblés pour la génération de code, la documentation et la résolution de problèmes complexes. Fournit des instructions détaillées sur les standards de codage et les meilleures pratiques applicables à divers frameworks. Propose des "Skills" (compétences) sous forme de dossiers contenant des ressources pour des tâches techniques spécialisées. (les skills sont dispo dans copilot depuis un mois : https://github.blog/changelog/2025-12-18-github-copilot-now-supports-agent-skills/ ) Permet une installation facile via un serveur MCP dédié, compatible avec VS Code et Visual Studio. Encourage la contribution communautaire pour enrichir les bibliothèques de prompts et d'agents. Aide à augmenter la productivité en offrant des solutions pré-configurées pour de nombreux langages et domaines. Garanti par une licence MIT et maintenu activement par des contributeurs du monde entier. IA et productivité : bilan de l'année 2025 (Laura Tacho - DX)) https://newsletter.getdx.com/p/ai-and-productivity-year-in-review?aid=recNfypKAanQrKszT En 2025, l'ingénierie assistée par l'IA est devenue la norme : environ 90 % des développeurs utilisent des outils d'IA mensuellement, et plus de 40 % quotidiennement. Les chercheurs (Microsoft, Google, GitHub) soulignent que le nombre de lignes de code (LOC) reste un mauvais indicateur d'impact, car l'IA génère beaucoup de code sans forcément garantir une valeur métier supérieure. Si l'IA améliore l'efficacité individuelle, elle pourrait nuire à la collaboration à long terme, car les développeurs passent plus de temps à "parler" à l'IA qu'à leurs collègues. L'identité du développeur évolue : il passe de "producteur de code" à un rôle de "metteur en scène" qui délègue, valide et exerce son jugement stratégique. L'IA pourrait accélérer la montée en compétences des développeurs juniors en les forçant à gérer des projets et à déléguer plus tôt, agissant comme un "accélérateur" plutôt que de les rendre obsolètes. L'accent est mis sur la créativité plutôt que sur la simple automatisation, afin de réimaginer la manière de travailler et d'obtenir des résultats plus impactants. Le succès en 2026 dépendra de la capacité des entreprises à cibler les goulots d'étranglement réels (dette technique, documentation, conformité) plutôt que de tester simplement chaque nouveau modèle d'IA. La newsletter avertit que les titres de presse simplifient souvent à l'excès les recherches sur l'IA, masquant parfois les nuances cruciales des études réelles. Un développeur décrit dans un article sur Twitter son utilisation avancée de Claude Code pour le développement, avec des sous-agents, des slash-commands, comment optimiser le contexte, etc. https://x.com/AureaLibe/status/2008958120878330329?s=20 Outillage IntelliJ IDEA, thread dumps et project Loom (virtual threads) - https://blog.jetbrains.com/idea/2025/12/thread-dumps-and-project-loom-virtual-threads/ Les virtual threads Java améliorent l'utilisation du matériel pour les opérations I/O parallèles avec peu de changements de code Un serveur peut maintenant gérer des millions de threads au lieu de quelques centaines Les outils existants peinent à afficher et analyser des millions de threads simultanément Le débogage asynchrone est complexe car le scheduler et le worker s'exécutent dans des threads différents Les thread dumps restent essentiels pour diagnostiquer deadlocks, UI bloquées et fuites de threads Netflix a découvert un deadlock lié aux virtual threads en analysant un heap dump, bug corrigé dans Java 25. Mais c'était de la haute voltige IntelliJ IDEA supporte nativement les virtual threads dès leur sortie avec affichage des locks acquis IntelliJ IDEA peut ouvrir des thread dumps générés par d'autres outils comme jcmd Le support s'étend aussi aux coroutines Kotlin en plus des virtual threads Quelques infos sur IntelliJ IDEA 2025.3 https://blog.jetbrains.com/idea/2025/12/intellij-idea-2025-3/ Distribution unifiée regroupant davantage de fonctionnalités gratuites Amélioration de la complétion des commandes dans l'IDE Nouvelles fonctionnalités pour le débogueur Spring Thème Islands devient le thème par défaut Support complet de Spring Boot 4 et Spring Framework 7 Compatibilité avec Java 25 Prise en charge de Spring Data JDBC et Vitest 4 Support natif de Junie et Claude Agent pour l'IA Quota d'IA transparent et option Bring Your Own Key à venir Corrections de stabilité, performance et expérience utilisateur Plein de petits outils en ligne pour le développeur https://blgardner.github.io/prism.tools/ génération de mot de passe, de gradient CSS, de QR code encodage décodage de Base64, JWT formattage de JSON, etc. resumectl - Votre CV en tant que code https://juhnny5.github.io/resumectl/ Un outil en ligne de commande (CLI) écrit en Go pour générer un CV à partir d'un fichier YAML. Permet l'exportation vers plusieurs formats : PDF, HTML, ou un affichage direct dans le terminal. Propose 5 thèmes intégrés (Modern, Classic, Minimal, Elegant, Tech) personnalisables avec des couleurs spécifiques. Fonctionnalité d'initialisation (resumectl init) permettant d'importer automatiquement des données depuis LinkedIn et GitHub (projets les plus étoilés). Supporte l'ajout de photos avec des options de filtre noir et blanc ou de forme (rond/carré). Inclut un mode "serveur" (resumectl serve) pour prévisualiser les modifications en temps réel via un navigateur local. Fonctionne comme un binaire unique sans dépendances externes complexes pour les modèles. mactop - Un moniteur "top" pour Apple Silicon https://github.com/metaspartan/mactop Un outil de surveillance en ligne de commande (TUI) conçu spécifiquement pour les puces Apple Silicon (M1, M2, M3, M4, M5). Permet de suivre en temps réel l'utilisation du CPU (E-cores et P-cores), du GPU et de l'ANE (Neural Engine). Affiche la consommation électrique (wattage) du système, du CPU, du GPU et de la DRAM. Fournit des données sur les températures du SoC, les fréquences du GPU et l'état thermique global. Surveille l'utilisation de la mémoire vive, de la swap, ainsi que l'activité réseau et disque (E/S). Propose 10 mises en page (layouts) différentes et plusieurs thèmes de couleurs personnalisables. Ne nécessite pas l'utilisation de sudo car il s'appuie sur les API natives d'Apple (SMC, IOReport, IOKit). Inclut une liste de processus détaillée (similaire à htop) avec la possibilité de tuer des processus directement depuis l'interface. Offre un mode "headless" pour exporter les métriques au format JSON et un serveur optionnel pour Prometheus. Développé en Go avec des composants en CGO et Objective-C. Adieu direnv, Bonjour misehttps://codeka.io/2025/12/19/adieu-direnv-bonjour-mise/ L'auteur remplace ses outils habituels (direnv, asdf, task, just) par un seul outil polyvalent écrit en Rust : mise. mise propose trois fonctions principales : gestionnaire de paquets (langages et outils), gestionnaire de variables d'environnement et exécuteur de tâches. Contrairement à direnv, il permet de gérer des alias et utilise un fichier de configuration structuré (mise.toml) plutôt que du scripting shell. La configuration est hiérarchique, permettant de surcharger les paramètres selon les répertoires, avec un système de "trust" pour la sécurité. Une "killer-feature" soulignée est la gestion des secrets : mise s'intègre avec age pour chiffrer des secrets (via clés SSH) directement dans le fichier de configuration. L'outil supporte une vaste liste de langages et d'outils via un registre interne et des plugins (compatibilité avec l'écosystème asdf). Il simplifie le workflow de développement en regroupant l'installation des outils et l'automatisation des tâches au sein d'un même fichier. L'auteur conclut sur la puissance, la flexibilité et les excellentes performances de l'outil après quelques heures de test. Claude Code v2.1.0 https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md#210 Rechargement à chaud des "skills" : Les modifications apportées aux compétences dans ~/.claude/skills sont désormais appliquées instantanément sans redémarrer la session. Sous-agents et forks : Support de l'exécution de compétences et de commandes slash dans un contexte de sous-agent forké via context: fork. Réglages linguistiques : Ajout d'un paramètre language pour configurer la langue de réponse par défaut (ex: language: "french"). Améliorations du terminal : Shift+Enter fonctionne désormais nativement dans plusieurs terminaux (iTerm2, WezTerm, Ghostty, Kitty) sans configuration manuelle. Sécurité et correction de bugs : Correction d'une faille où des données sensibles (clés API, tokens OAuth) pouvaient apparaître dans les logs de débogage. Nouvelles commandes slash : Ajout de /teleport et /remote-env pour les abonnés claude.ai afin de gérer des sessions distantes. Mode Plan : Le raccourci /plan permet d'activer le mode plan directement depuis le prompt, et la demande de permission à l'entrée de ce mode a été supprimée. Vim et navigation : Ajout de nombreux mouvements Vim (text objects, répétitions de mouvements f/F/t/T, indentations, etc.). Performance : Optimisation du temps de démarrage et du rendu terminal pour les caractères Unicode/Emoji. Gestion du gitignore : Support du réglage respectGitignore dans settings.json pour contrôler le comportement du sélecteur de fichiers @-mention. Méthodologies 200 déploiements en production par jour, même le vendredi : retours d'expérience https://mcorbin.fr/posts/2025-03-21-deploy-200/ Le déploiement fréquent, y compris le vendredi, est un indicateur de maturité technique et augmente la productivité globale. L'excellence technique est un atout stratégique indispensable pour livrer rapidement des produits de qualité. Une architecture pragmatique orientée services (SOA) facilite les déploiements indépendants et réduit la charge cognitive. L'isolation des services est cruciale : un développeur doit pouvoir tester son service localement sans dépendre de toute l'infrastructure. L'automatisation via Kubernetes et l'approche GitOps avec ArgoCD permettent des déploiements continus et sécurisés. Les feature flags et un système de permissions solide permettent de découpler le déploiement technique de l'activation fonctionnelle pour les utilisateurs. L'autonomie des développeurs est renforcée par des outils en self-service (CLI maison) pour gérer l'infrastructure et diagnostiquer les incidents sans goulot d'étranglement. Une culture d'observabilité intégrée dès la conception permet de détecter et de réagir rapidement aux anomalies en production. Accepter l'échec comme inévitable permet de concevoir des systèmes plus résilients capables de se rétablir automatiquement. "Vibe Coding" vs "Prompt Engineering" : l'IA et le futur du développement logiciel https://www.romenrg.com/blog/2025/12/25/vibe-coding-vs-prompt-engineering-ai-and-the-future-of-software-development/ L'IA est passée du statut d'expérimentation à celui d'infrastructure essentielle pour le développement de logiciels en 2025. L'IA ne remplace pas les ingénieurs, mais agit comme un amplificateur de leurs compétences, de leur jugement et de la qualité de leur réflexion. Distinction entre le "Vibe Coding" (rapide, intuitif, idéal pour les prototypes) et le "Prompt Engineering" (délibéré, contraint, nécessaire pour les systèmes maintenables). L'importance cruciale du contexte ("Context Engineering") : l'IA devient réellement puissante lorsqu'elle est connectée aux systèmes réels (GitHub, Jira, etc.) via des protocoles comme le MCP. Utilisation d'agents spécialisés (écriture de RFC, revue de code, architecture) plutôt que de modèles génériques pour obtenir de meilleurs résultats. Émergence de l'ingénieur "Technical Product Manager" capable d'abattre seul le travail d'une petite équipe grâce à l'IA, à condition de maîtriser les fondamentaux techniques. Le risque majeur : l'IA permet d'aller très vite dans la mauvaise direction si le jugement humain et l'expérience font défaut. Le niveau d'exigence global augmente : les bases techniques solides deviennent plus importantes que jamais pour éviter l'accumulation de dette technique rapide. Une revue de code en solo (Kent Beck) ! https://tidyfirst.substack.com/p/party-of-one-for-code-review?r=64ov3&utm_campaign=post&utm_medium=web&triedRedirect=true La revue de code traditionnelle, héritée des inspections formelles d'IBM, s'essouffle car elle est devenue trop lente et asynchrone par rapport au rythme du développement moderne. Avec l'arrivée de l'IA ("le génie"), la vitesse de production du code dépasse la capacité de relecture humaine, créant un goulot d'étranglement majeur. La revue de code doit évoluer vers deux nouveaux objectifs prioritaires : un "sanity check" pour vérifier que l'IA a bien fait ce qu'on lui demandait, et le contrôle de la dérive structurelle de la base de code. Maintenir une structure saine est crucial non seulement pour les futurs développeurs humains, mais aussi pour que l'IA puisse continuer à comprendre et modifier le code efficacement sans perdre le contexte. Kent Beck expérimente des outils automatisés (comme CodeRabbit) pour obtenir des résumés et des schémas d'architecture afin de garder une conscience globale des changements rapides. Même si les outils automatisés sont utiles, le "Pair Programming" reste irremplaçable pour la richesse des échanges et la pression sociale bénéfique qu'il impose à la réflexion. La revue de code solo n'est pas une fin en soi, mais une adaptation nécessaire lorsque l'on travaille seul avec des outils de génération de code augmentés. Loi, société et organisation Lego lance les Lego Smart Play, avec des Brique, des Smart Tags et des Smart Figurines pour faire de nouvelles constructions interactives avec des Legos https://www.lego.com/fr-fr/smart-play LEGO SMART Play : technologie réactive au jeu des enfants. Trois éléments clés : SMART Brique : Brique LEGO 2x4 "cerveau". Accéléromètre, lumières réactives, détecteur de couleurs, synthétiseur sonore. Réagit aux mouvements (tenir, tourner, taper). SMART Tags : Petites pièces intelligentes. Indiquent à la SMART Brique son rôle (ex: hélicoptère, voiture) et les sons à produire. Activent sons, mini-jeux, missions secrètes. SMART Minifigurines : Activées près d'une SMART Brique. Révèlent des personnalités uniques (sons, humeurs, réactions) via la SMART Brique. Encouragent l'imagination. Fonctionnement : SMART Brique détecte SMART Tags et SMART Minifigurines. Réagit aux mouvements avec lumières et sons dynamiques. Compatibilité : S'assemble avec les briques LEGO classiques. Objectif : Créer des expériences de jeu interactives, uniques et illimitées. Conférences La liste des conférences provenant de Developers Conferences Agenda/List par Aurélie Vache et contributeurs : 14-17 janvier 2026 : SnowCamp 2026 - Grenoble (France) 22 janvier 2026 : DevCon #26 : sécurité / post-quantique / hacking - Paris (France) 28 janvier 2026 : Software Heritage Symposium - Paris (France) 29-31 janvier 2026 : Epitech Summit 2026 - Paris - Paris (France) 2-5 février 2026 : Epitech Summit 2026 - Moulins - Moulins (France) 3 février 2026 : Cloud Native Days France 2026 - Paris (France) 3-4 février 2026 : Epitech Summit 2026 - Lille - Lille (France) 3-4 février 2026 : Epitech Summit 2026 - Mulhouse - Mulhouse (France) 3-4 février 2026 : Epitech Summit 2026 - Nancy - Nancy (France) 3-4 février 2026 : Epitech Summit 2026 - Nantes - Nantes (France) 3-4 février 2026 : Epitech Summit 2026 - Marseille - Marseille (France) 3-4 février 2026 : Epitech Summit 2026 - Rennes - Rennes (France) 3-4 février 2026 : Epitech Summit 2026 - Montpellier - Montpellier (France) 3-4 février 2026 : Epitech Summit 2026 - Strasbourg - Strasbourg (France) 3-4 février 2026 : Epitech Summit 2026 - Toulouse - Toulouse (France) 4-5 février 2026 : Epitech Summit 2026 - Bordeaux - Bordeaux (France) 4-5 février 2026 : Epitech Summit 2026 - Lyon - Lyon (France) 4-6 février 2026 : Epitech Summit 2026 - Nice - Nice (France) 5 février 2026 : Web Days Convention - Aix-en-Provence (France) 12 février 2026 : Strasbourg Craft #1 - Strasbourg (France) 12-13 février 2026 : Touraine Tech #26 - Tours (France) 19 février 2026 : ObservabilityCON on the Road - Paris (France) 6 mars 2026 : WordCamp Nice 2026 - Nice (France) 18-19 mars 2026 : Agile Niort 2026 - Niort (France) 20 mars 2026 : Atlantique Day 2026 - Nantes (France) 26 mars 2026 : Data Days Lille - Lille (France) 26-27 mars 2026 : SymfonyLive Paris 2026 - Paris (France) 26-27 mars 2026 : REACT PARIS - Paris (France) 27-29 mars 2026 : Shift - Nantes (France) 31 mars 2026 : ParisTestConf - Paris (France) 1 avril 2026 : AWS Summit Paris - Paris (France) 2 avril 2026 : Pragma Cannes 2026 - Cannes (France) 9-10 avril 2026 : AndroidMakers by droidcon - Paris (France) 16-17 avril 2026 : MiXiT 2026 - Lyon (France) 22-24 avril 2026 : Devoxx France 2026 - Paris (France) 23-25 avril 2026 : Devoxx Greece - Athens (Greece) 24-25 avril 2026 : Faiseuses du Web 5 - Dinan (France) 6-7 mai 2026 : Devoxx UK 2026 - London (UK) 22 mai 2026 : AFUP Day 2026 Lille - Lille (France) 22 mai 2026 : AFUP Day 2026 Paris - Paris (France) 22 mai 2026 : AFUP Day 2026 Bordeaux - Bordeaux (France) 22 mai 2026 : AFUP Day 2026 Lyon - Lyon (France) 29 mai 2026 : NG Baguette Conf 2026 - Paris (France) 5 juin 2026 : TechReady - Nantes (France) 5 juin 2026 : Fork it! - Rouen - Rouen (France) 6 juin 2026 : Polycloud - Montpellier (France) 11-12 juin 2026 : DevQuest Niort - Niort (France) 11-12 juin 2026 : DevLille 2026 - Lille (France) 12 juin 2026 : Tech F'Est 2026 - Nancy (France) 17-19 juin 2026 : Devoxx Poland - Krakow (Poland) 17-20 juin 2026 : VivaTech - Paris (France) 2 juillet 2026 : Azur Tech Summer 2026 - Valbonne (France) 2-3 juillet 2026 : Sunny Tech - Montpellier (France) 3 juillet 2026 : Agile Lyon 2026 - Lyon (France) 2 août 2026 : 4th Tech Summit on Artificial Intelligence & Robotics - Paris (France) 4 septembre 2026 : JUG Summer Camp 2026 - La Rochelle (France) 17-18 septembre 2026 : API Platform Conference 2026 - Lille (France) 24 septembre 2026 : PlatformCon Live Day Paris 2026 - Paris (France) 1 octobre 2026 : WAX 2026 - Marseille (France) 1-2 octobre 2026 : Volcamp - Clermont-Ferrand (France) 5-9 octobre 2026 : Devoxx Belgium - Antwerp (Belgium) Nous contacter Pour réagir à cet épisode, venez discuter sur le groupe Google https://groups.google.com/group/lescastcodeurs Contactez-nous via X/twitter https://twitter.com/lescastcodeurs ou Bluesky https://bsky.app/profile/lescastcodeurs.com Faire un crowdcast ou une crowdquestion Soutenez Les Cast Codeurs sur Patreon https://www.patreon.com/LesCastCodeurs Tous les épisodes et toutes les infos sur https://lescastcodeurs.com/
Turn meditation from something you do into something you live. Sign up for Michael's 5-week course, "Meditation 2.0: The Evolution of Consciousness," starting January 20th: https://agapemasterclass.com/meditation-2-0/. Today, Michael welcomes Panache Desai—internationally acclaimed mentor, speaker, and bestselling author featured on Oprah's Super Soul Sunday. Raised with meditation as his baseline, Panache blends ancient wisdom with an everyday, relatable approach to help people accept their humanity, embody oneness, and live from love. He's the creator of the long-running daily gathering Call to Calm, guiding thousands to self-acceptance, breath-anchored awareness, and a compassionate life of service. Conversation Highlights include: -Being raised in a meditation-centered home which established stillness and devotion as a lifelong foundation -A direct experience of Oneness reveals the same love and light at the core of all life -Saying yes to an inner calling invites active participation in one's unfolding rather than waiting on circumstances -True spirituality prioritizes self-acceptance over self-fixing; embracing humanity opens the door to the Divine -Three daily practices—accept, observe without judgment, and rest in the breath—turn ordinary moments into a living meditation -Self-compassion stabilizes growth and naturally widens compassion toward others -Growth is becoming who you already are by relaxing defenses and allowing love and support to be received -Challenging seasons become initiations; surrender and humility reveal unexpected strength and deeper peace -Panache's simple daily gathering—brief teaching plus a 21-minute sit—offers community, steadiness, and calm Next, Michael leads a guided meditation on anchoring joy, gratitude, and steady presence as a way of being.
Next Level Soul with Alex Ferrari: A Spirituality & Personal Growth Podcast
Panache Desai offers a powerful reminder at a time when the world feels overwhelmed by chaos, division, and uncertainty: humanity is not broken — it is remembering. In this deeply moving conversation, Panache explains why global turmoil is not a sign of failure, but a necessary phase in humanity's collective healing and awakening.This is not spiritual bypassing or positive thinking. It's a grounded, compassionate exploration of consciousness, free will, fear, and the illusion of separation. If you've been feeling exhausted, confused, or disillusioned by the state of the world, this conversation may help you see it — and yourself — in an entirely new way.Become a supporter of this podcast: https://www.spreaker.com/podcast/next-level-soul-podcast-with-alex-ferrari--4858435/support.Take your spiritual journey to the next level with Next Level Soul TV — our dedicated streaming home for conscious storytelling and soulful transformation.Experience exclusive programs, original series, movies, tv shows, workshops, audiobooks, meditations, and a growing library of inspiring content created to elevate, heal, and awaken. Begin your membership or explore our free titles here: https://www.nextlevelsoul.tv
Ever feel like nothing you do is enough, or your true self is not showing up in your day-to-day life? My guest, Panache Desai, says there is a kinder, more intentional way to live. By unpacking the beliefs that hold you back, you can spot the false stories that fuel hustle and shame, then find your way back to who you are.He's here to guide us on how to release pressure, build self-trust, and live with more ease. Panache Desai is an internationally acclaimed Mentor, Speaker, and Bestselling Author dedicated to unlocking human potential and fostering personal empowerment. brings over three decades of experience as a transformational thought leader, inspiring individuals worldwide to achieve greater connection, authenticity, and peace. Featured on Oprah Winfrey's Emmy award-winning Super Soul Sunday and the host of the widely followed ‘Call to Calm' meditations, Panache seamlessly blends ancient wisdom with a modern, relatable approach. In this interview, Panache and I will talk about feeling hard emotions without getting swept away, and what it means to live from wholeness while still growing. You'll hear simple practices you can use today. Expect clarity, calm, and practical steps you can use the moment the episode ends, for you.
durée : 00:04:13 - Une semaine dans leurs vies - À quoi ressemble la vie au pied d'un des volcans les plus actifs au monde ? Adrien Serrière est allé sur l'île de Stromboli, au large de la Sicile, à la rencontre de ses 400 habitants qui cohabitent avec un volcan en éruption toutes les dix minutes environ. Vous aimez ce podcast ? Pour écouter tous les autres épisodes sans limite, rendez-vous sur Radio France.
In this transformative episode, host Dr. Debi Silber sits down with spiritual guide Panache Desai to challenge everything we've been taught about success, fulfillment, and self-worth. If you've achieved success by traditional standards but still feel unfulfilled, this conversation will completely shift your perspective. Key Topics Covered: Redefining Success Why material success often leads to depression, addiction, and unfulfillment The true meaning of success: being at peace with yourself How we've been sold a false bill of goods about where fulfillment comes from The Inside-Out Approach Why looking outside ourselves for love, security, and happiness never works The illusion of external authority and how it betrays us from birth Why you are already the source of everything you're seeking The Betrayal Experience How betrayal serves as a catalyst for redirecting attention back to ourselves Why we've only ever betrayed ourselves by making others the source of our fulfillment Understanding that betrayal is the ultimate initiation into self-discovery Acceptance as the Key Why "working on yourself" keeps you distanced from your truth The revolutionary practice of accepting your emotions, thoughts, and humanity How acceptance is the entry point into genuine self-love The Conditioning Crisis How women are especially programmed to sacrifice themselves for others Why the framework of living for everyone else is the ultimate betrayal Breaking free from the martyrdom archetype Parenting and Authenticity Teaching children that their uniqueness is their superpower Why conformity in education dulls our natural gifts The parenting-as-gardening approach: nurturing without controlling outcomes Moving Beyond Victim Consciousness Accepting powerlessness over the past as the path to infinite power in the present Why everything that happened was actually perfect for your evolution The importance of commitment, consistency, and repetition in transformation The Golden Buddha Within Removing the layers of others' projections and interpretations Recognizing you're not broken, flawed, or in need of fixing Living from the truth of who you really are Powerful Quotes: "Success means to be at peace. If you're at peace with yourself, then you're successful." "We've only ever betrayed ourselves, and that betrayal began in the moment that we made someone else the source of the love, the source of the security, the source of the safety." "You're adorable, you're loved. There's nothing wrong with you. You're not broken. You don't have to be fixed or changed or improved." "The only way to be done with the trauma of the past is to accept it, to embrace the fact that it happened—it's not good, it's not bad, it's not right, it's not wrong, it just happened." Resources: Visit panachedesai.com to join Panache's free daily meditation "Call to Calm" - now 1570+ days running since the pandemic began. The PBT Institute — programs, coaches, community: https://thepbtinstitute.com/ Corporate/HR offerings & talks: https://thepbtinstitute.com/corporate Work with Dr. Debi and her amazing PBT Coaches: https://thepbtinstitute.com/transform/
durée : 00:04:09 - Une semaine dans leurs vies - À quoi ressemble la vie au pied d'un des volcans les plus actifs au monde ? Adrien Serrière est allé sur l'île de Stromboli, au large de la Sicile, à la rencontre de ses 400 habitants qui cohabitent avec un volcan en éruption toutes les dix minutes environ. Vous aimez ce podcast ? Pour écouter tous les autres épisodes sans limite, rendez-vous sur Radio France.
Tous les dimanches à 6h42 dans Europe 1 Matin Week-end, Philippe Legrand reçoit une personnalité pour un entretien autour d'une date et d'une histoire.Hébergé par Audiomeans. Visitez audiomeans.fr/politique-de-confidentialite pour plus d'informations.
In this episode: Alan slipped down the nix rabbit-hole. Martin created Glyph Party, for adding panache to your terminal applications. Mark has lost all his free time to the latest Rimworld DLC, Odyssey. You can send your feedback via show@linuxmatters.sh or the Contact Form. If you’d like to hang out with other listeners and share your feedback with the community, you can join us on: The Linux Matters Chatters on Telegram. The Linux Matters Subreddit. If you enjoy the show, please consider supporting us.
In this episode: Alan slipped down the nix rabbit-hole. Martin created Glyph Party, for adding panache to your terminal applications. Mark has lost all his free time to the latest Rimworld DLC, Odyssey. You can send your feedback via show@linuxmatters.sh or the Contact Form. If you’d like to hang out with other listeners and share your feedback with the community, you can join: The Linux Matters Chatters on Telegram. The #linux-matters channel on the Late Night Linux Discord server. If you enjoy the show, please consider supporting us using Patreon or PayPal. For $5 a month on Patreon, you can enjoy an ad-free feed of Linux Matters, or for $10, get access to all the Late Night Linux family of podcasts ad-free.
In this episode: Alan slipped down the nix rabbit-hole. Martin created Glyph Party, for adding panache to your terminal applications. Mark has lost all his free time to the latest Rimworld DLC, Odyssey. You can send your feedback via show@linuxmatters.sh or the Contact Form. If you’d like to hang out with other listeners and share your feedback with the community, you can join: The Linux Matters Chatters on Telegram. The #linux-matters channel on the Late Night Linux Discord server. If you enjoy the show, please consider supporting us using Patreon or PayPal. For $5 a month on Patreon, you can enjoy an ad-free feed of Linux Matters, or for $10, get access to all the Late Night Linux family of podcasts ad-free.
In this episode: Alan slipped down the nix rabbit-hole. Martin created Glyph Party, for adding panache to your terminal applications. Mark has lost all his free time to the latest Rimworld DLC, Odyssey. You can send your feedback via show@linuxmatters.sh or the Contact Form. If you'd like to hang out with other listeners and... Read More
durée : 00:03:53 - Une semaine dans leurs vies - À quoi ressemble la vie au pied d'un des volcans les plus actifs au monde ? Adrien Serrière est allé sur l'île de Stromboli, au large de la Sicile, à la rencontre de ses 400 habitants qui cohabitent avec un volcan en éruption toutes les dix minutes environ. Vous aimez ce podcast ? Pour écouter tous les autres épisodes sans limite, rendez-vous sur Radio France.
Top 3 des conseils de Julien (Panache) pour muscler son oralité by Paumé.e.s
The boys are back with the end of season review, as September closes and the regular season awards are handed out.With finals day just around the corner, we find out who will or won't be making the 24 players competing for the title of Order of Merit champion for 2025. There is also a small matter of how this season's draft ended up. Did Pete manage to add another star to The Panache ball marker? Did Dan threw a wedge avoid the bottom slot? Did Dan who throws wedges finally beat his nemesis? Have The Oombots improved having been released from their human overlord and will we finally find out Where's Wabey ?Join us, once more unto the breach.Send us a textButter Cut Social ClubGolf apparel and merch. Because 5 yards matters IG:@buttercutsocialclubDisclaimer: This post contains affiliate links. If you make a purchase, I may receive a commission at no extra cost to you.Ways to follow Six, Over Par - Tweet us @sixoverpar - IG @six_over_parThanks for listening, see you on the first tee !
durée : 01:28:39 - Philippe Bianconi, la poésie et le panache - par : Aurélie Moreau - Philippe Bianconi, pianiste aussi convaincant dans la musique française que dans le répertoire germanique, possède "un jeu puissant, qui fait chanter le piano jusque dans la force et la virtuosité" (Le Figaro). Aujourd'hui : Ravel, Brahms, Schubert… Vous aimez ce podcast ? Pour écouter tous les autres épisodes sans limite, rendez-vous sur Radio France.
building your personal brand? get some complimentary strategy here
The ICF World Cup final in Augsburg, Germany, proved an exciting climax to the 2025 series in canoe slalom and kayak cross. Host John Gregory (gregiej) chats with Augsburg winners Kimberley Woods (GBR), Anatole Delassus (FRA), and Sam Leaver (GBR), plus K1M World Cup Champion, Titouan Castryck (FRA). Our next series of daily episodes from the ICF World Championships will bring results and what to expect the next day in Penrith, Australia.
The Bald and the Beautiful with Trixie Mattel and Katya Zamo
Latch your steamer trunk and press your travel slacks, as Trixie and Katya summon you for a grand tour through the jeweled harbors of RuPaul's Drag Race Season 7, Episodes 9 and 10. Like discerning aesthetes adrift upon the sapphire sea, they linger in reverie over the operatic revels of the Divine Comedy challenge, then recline in first-class velvet banquettes to consider, with equal parts mirth and melancholy, the metamorphic splendor of the makeover episode. Their discourse gleams with the intricacy of freshly-blown Murano glass, refracting triumphs radiant as a Tuscan dawn and humiliations heavy as an Amalfi dusk. Let your eyes and ears wander as their recollections drift like perfumed zephyrs along the cliffs of the Cinque Terre. Sit back, relax, and let their reminiscences unfold as an intoxicating odyssey stitched from myth, memory, and the gilded embroidery of glamour. If you're thinking about GLP-1s for weight loss, but don't know if they're right for you—Ro makes it simple to find out and get started. Go to https://Ro.co/BALD to see if you qualify. If you're planning a trip this year, consider hosting your home on Airbnb while you're away. Your home might be worth more than you think! Find out how much at https://Airbnb.com/host This episode is sponsored by BetterHelp. Give online therapy a try at https://Betterhelp.com/BALD and get on your way to being your best self! Get your gut going and sdupport a balanced gut microbiome with Ritual's Synbiotic+. Get 25% off your first month at https://Ritual.com/BALD Visit https://gemini.google/students to learn more about Google Gemini and sign up. Terms apply. Follow Trixie: @TrixieMattel Follow Katya: @Katya_Zamo To watch the podcast on YouTube: http://bit.ly/TrixieKatyaYT To check out our official YouTube Clips Channel: https://bit.ly/TrixieAndKatyaClipsYT Don't forget to follow the podcast for free wherever you're listening or by using this link: https://bit.ly/thebaldandthebeautifulpodcast If you want to support the show, and get all the episodes ad-free go to: https://thebaldandthebeautiful.supercast.com If you like the show, telling a friend about it would be amazing! You can text, email, Tweet, or send this link to a friend: https://bit.ly/thebaldandthebeautifulpodcast To check out future Live Podcast Shows, go to: https://trixieandkatyalive.com To order your copy of our book, "Working Girls", go to: https://workinggirlsbook.com To check out the Trixie Motel in Palm Springs, CA: https://www.trixiemotel.com Listen Anywhere! http://bit.ly/thebaldandthebeautifulpodcast Follow Trixie: Official Website: https://www.trixiemattel.com/ TikTok: https://www.tiktok.com/@trixie Facebook: https://www.facebook.com/trixiemattel Instagram: https://www.instagram.com/trixiemattel Twitter (X): https://twitter.com/trixiemattel Follow Katya: Official Website: https://www.welovekatya.com/ TikTok: https://www.tiktok.com/@katya_zamo Facebook: https://www.facebook.com/welovekatya/ Instagram: https://www.instagram.com/katya_zamo Twitter (X): https://twitter.com/katya_zamo #TrixieMattel #KatyaZamo #BaldBeautiful Learn more about your ad choices. Visit podcastchoices.com/adchoices
Britt and Chris dive into Part III: "The Poster," discussing glittery volcanoes, Haymitch feeling like a failure, labor unions, and child combatants. They also explore the POVs of Panache and mentors Mags, Wiress, and Beetee. Please tell a geeky friend about us and leave a review on your podcast app! If you really enjoy our content, become one of our amazing patrons to get more of it for just $1 per month here: https://www.patreon.com/geekbetweenthelines Every dollar helps keep the podcast going! You can also buy us a ko-fi for one-time support here: https://ko-fi.com/geekbetweenthelines Please follow us on social media, too: Instagram : https://www.instagram.com/geekbetweenthelines Pinterest : https://www.pinterest.com/geekbetweenthelines Facebook : https://www.facebook.com/geekbetweenthelines Twitter : https://twitter.com/geekbetween Website: https://geekbetweenthelines.wixsite.com/podcast Logo artist: https://www.lacelit.com
Das Bündner Ländlerkapellentreffen in Landquart GR ist ein Traditionsanlass. Mit urchigen Klängen begeistern einheimische Formationen wie die Kapelle Oberalp oder die Chapella Clavadatsch. Auch Gastformationen wie die Ländler Panache wissen zu überzeugen. «Potzmusig» zeigt die schönsten Momente. Im Sommerprogramm lässt «Potzmusig» das beliebte Bündner Ländlerkapellentreffen 2025 Revue passieren. Volkstümliche Formationen aller Art sind angereist für diesen speziellen Anlass, der bereits zum 59. Mal stattfindet. Neben viel Musik aus dem Bündnerland gibt es auch Formationen im Berner- und Innerschwyzerstil und natürlich auch Jodelgesang. Im ausverkauften Forum im Ried Landquart GR wird zugehört, getanzt und gefeiert bis in die frühen Morgenstunden. Mit dabei sind beliebte und bewährte Bündner Formationen, wie zum Beispiel die Kapelle Oberalp, Chapella Clavadatsch, Örgeliplausch vom Spycherweg, Ländlerkapelle Arflina und Viamala u.a.m. Aber auch aus anderen Landesteilen sind Volksmusik-Kapellen angereist: Ländler Panache aus dem Kanton Bern, das Urner Ländlerquartett Gasser-Hess-Zumstein. Für den krönenden Schlussakt stehen alle anwesenden Formationen nochmals zusammen auf der Bühne: Gelebte Volkskultur im Bündnerland. «Potzmusig» hat die schönsten Momente für Sie eingefangen.
durée : 01:28:13 - Jean-Paul Gasparian, le panache d'un pianiste accompli - par : Aurélie Moreau - Après Debussy, Rachmaninov et Chopin, le pianiste Jean-Paul Gasparian a consacré son récent disque à des compositeurs arméniens: "mon rêve serait que ce projet donne envie aux mélomanes d'explorer plus avant les trésors de ce répertoire". (Diapason) Vous aimez ce podcast ? Pour écouter tous les autres épisodes sans limite, rendez-vous sur Radio France.
GET YOUR MULTIVERSE NEWS MERCH HERE:https://multiverse-news-shop.fourthwall.com/In a peek behind the curtain, James Gunn shared with Rolling Stone this week that the Milly Alcock-lead film Supergirl: Woman of Tomorrow will now just be called Supergirl. This is similar to July's Superman, which started out with the title Superman: Legacy. Gunn shared that he and his team do what he calls “premortems,” where they attempt to suss out issues with projects prior to release rather than reacting on the back end. The shortening of titles has come out of those discussions. In the same article, Gunn got candid about the state of Batman in the DCU and the complexities of navigating the character with Matt Reeves' adaptation in consideration or making it his own. Lastly, Gunn announced today that actor Tom Rhys Harries will play Basil Karlo/Clayface in the film set to be released in September 2026.Live action remakes continue to rule at the box office, with this weekend's How to Train Your Dragon capturing the top spot opening to a global $197 million. A24's romantic comedy Materialists starring Dakota Johnson, Chris Evans, and Pedro Pascal, opened to a modest $11 million domestically, but goes down in studio history as A24's third highest debut at the box office. Next weekend Sony gives us 28 Years Later and Pixar releases Elio.Nosferatu director Robert Eggers is tackling the classic Charles Dickens story, A Christmas Carol. Eggers is on record as never wanting to make a film set in a modern age, and the ghost story that is A Christmas Carol seems right up his alley. Though unconfirmed, Willem Dafoe is likely set to play the main character of Ebenezer Scrooge as Dafoe has been in three of Eggers films.Tommy Wirkola will return to direct Violent Night 2, the sequel to the Christmas-themed action movie released in 2022, sources tell The Hollywood Reporter. David Harbour, who starred in the first film, will also return. The sequel is currently dated for December 4, 2026.Bill Pullman and Rick Moranis are set to reprise their respective roles as Lone Starr and Dark Helmet in the new Spaceballs movie from Amazon MGM Studios, with Keke Palmer and Lewis Pullman also joining the cast. The original film's director and star, Mel Brooks - who will turn 99 this month - will also feature in the cast once again, reprising his role as Yogurt. The film is currently set to release in 2027.On the animation side of DC Studios, Warner Bros. announced a new series called Mister Miracle, based on the comic series written by renowned writer Tom King who will also be the showrunner. Mister Miracle is an escape artist character who is a celebrity in the comic book world he lives in.Paramount+ has renewed Star Trek: Strange New Worlds the series for a fifth and final six-episode season. Production on the upcoming season will begin later this year.Pixar Animation Studios offered an exclusive first look at its upcoming features — including Hoppers and Toy Story 5 — and announced a brand-new original production, Gatto, during a studio presentation on Friday at the Annecy international animation film festival as part of a broader showcase that also included extensive footage from Pixar's 2025 release Elio.Gatto will be directed by Luca filmmaker Enrico Casarosa, follows Nero, a water-hating black cat living in the picturesque city of Venice, Italy, who befriends Maya, a lonely street musician.Glenn Close and Billy Porter have joined the cast of Hunger Games: Sunrise on the Reaping. Close will play Drusilla Sickle, the cruel escort to the District 12 Tributes, while Porter snagged the role of Magno Stift, her estranged husband and the Tributes' uninspired designer. Today, Jhaleil Swaby was also added to the cast as Panache, a career tribute from District 1.
Qu'est-ce qui fait qu'un leader inspire vraiment ? Comment incarner ce qu'on demande aux autres dans un monde qui semble parfois avoir perdu ses repères ?Dans cet épisode, je reçois Tessa Melkonian pour en parler. Directrice de la Leadership Academy for New Futures et professeure en Management et Comportement Organisationnel à emlyon business school, Tessa étudie comment la justice et l'exemplarité influencent la coopération des salariés en période de changement, et la performance collective dans des situations extrêmes. Elle est notamment l'auteure de Pourquoi un leader doit être exemplaire, dont je vous recommande la lecture. Il se trouve que Tessa était aussi ma professeure quand j'étais à l'EM Lyon, et une de celles qui m'ont marquée le plus durablement.Une conversation profonde sur ce paradoxe de notre époque : nous avons plus que jamais besoin de leaders exemplaires, mais l'exemplarité demande une énergie que beaucoup n'ont plus. Vous découvrirez pourquoi l'exemplarité n'est pas une posture mais un regard que les autres portent sur nous, comment cultiver ce que Tessa appelle "l'écologie personnelle" pour préserver son attention dans un monde d'interruptions constantes, et pourquoi il faut parfois du panache - cette élégance du courage - pour continuer d'avancer sans savoir si on va y arriver.Dans cet épisode, on parle d'exemplarité, de charge mentale, de récupération, d'alignement — un échange qui traverse le professionnel, le personnel, l'intime, et le collectif.Bonne écoute ! Sandra**Le lien de l'article mentionné dans l'épisode :Les leçons du sport de haut niveau, Thierry Picq, Tessa Melkonian, Sarah Ourahmoune, Fabien Gilot************************************************Merci de faire une place aux Équilibristes dans votre vie. Si vous voulez soutenir le podcast, prenez quelques instants pour dire pourquoi vous l'appréciez sur votre plateforme d'écoute préférée, en laissant 5 ⭐et un commentaire. Merci pour votre soutien !Numéros d'Equilibristes est la lettre que j'envoie 2 fois par mois - c'est là que je partage ressources, observations et analyses, dont le point de départ est souvent le quotidien ou mon travail avec mes clients. C'est là aussi que j'annonce en avant-première tous les événements et opportunités de travailler ensemble. Vous pouvez vous abonner ici.Découvrez mon livre, En Équilibre, qui déconstruit le mythe de l'équilibre vie pro vie perso et explore 4 grands besoins derrière celui de préserver son équilibre de vie.Pour découvrir comment travailler ensemble, rendez-vous sur www.conscious-cultures.comPour écouter tous les épisodes, rendez-vous sur www.lesequilibristes.comConnectons-nous sur les réseaux : https://www.linkedin.com/in/sandra-fillaudeau-23947ba/ et https://www.instagram.com/les_equilibristes_podcast/Hébergé par Ausha. Visitez ausha.co/politique-de-confidentialite pour plus d'informations.
(00:00-22:55) Happy Birthday, Biggie. NFL will be voting today to ban the "tush push." Jackson's never tackled or been tackled. Flag Football in the Olympics. RIP Norm from Cheers. Jackson with an axe to grind with Ted Danson. You'd let Stanley Tucci cuck ya. "It's not that I would want; I would understand." What's happened to Dawson?(23:03-30:33) John Tudor punched a fan. Got away from the Cardinals in Game 7. Chairman Steve with a lot of bragging about golf. Let's Go Berger-ing.(30:42-1:00:42) Former Cardinal and friend of the show, Lance Lynn joins the show. Rehashing went Lance said he was going to light the picnic table on fire with jet fuel. Friendly banter. Enjoying retirement. Elementary school carpool. Going to four straight NLCS to start his career. The single greatest moment of his career. The call from the pen in the 2011 World Series. Reflecting on the 2011 team. Working with Big League Impact to help people affected by storms.See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.
In which Robert goes solo, while Amy enjoys a Girls Night Out! A discussion of Joy, Fun, Heartiness, Panaché, Joie De Vie ... Objectivism and the Lust For Life. Being, doing, getting, having more of everything. Also, Mount St. Helens, Halley's Comet, "No Dirty Dishes Day" (and Robert's GLO Rules), and Happy Birthday to Tina Fey, Mark Mothersbaugh, Rick Wakeman, Frank Capra, and Bertrand Russell & his Teapot!
Andrew Mc Kenzie nous parle de Ainsi va la vie, le prochain spectacle de Panache Adelaide French Theatre au Star Theatres du 29 au 31 mai.
The snack business is competitive to say the very least. It may even be cut-throat. Creating a snack that people want is hard enough, but getting it into the market and on store shelves takes even more grit. We chased down Brendan Cawley, founder and CEO of Righteous Felon, a meat snack company with deep roots in Chester County. We interrogate Brendan about jerky, biltong, and meat sticks, exploring their R&D, manufacturing, and distribution processes. We talk about online sales, and of course, how the company was an outgrowth of a side hustle for a bunch of middle schoolers in Downingtown.OUR PARTNERSouthern Chester County Chamber of CommerceLINKSRighteous FelonWebsite: righteousfelon.comInstagram: @righteousfelonFacebook: facebook.com/RighteousFelonTiktok: @righteousfelonLinkedIn: linkedin.com/company/righteous-felonLocal Beer DistributorsExton BeverageBeermillLou BeverageWaywood BeverageVictory BrewingLocal Restaurants and StoresLeone's PizzaCrop's Fresh MarketplaceKimberton Whole FoodsFarm and Meat ProcessorsStoney Point SnacksRoseda Black Angus Farm44 FarmsCertified PeidmonteseAdditional LinksNatural LandsDowningtown Main StreetTranscriptA full transcript will be posted on our website as soon as it is available.
What are several glaring anachronisms in Walt Disney World's Mr. Toad's Wild Ride?On this episode of Distory, we motor on through the first half of Track B in the extinct Walt Disney World version of Mr. Toad, looking for the details and history that have been lost over time. After discussing some silly portraits (and a disappointing motto) in Toad Hall, we crash into the library and find some anachronistic quills, a few connections to Disneyland, and a surprising origin of a word connected to a piece of armor. We then fly out into the barnyard to explore some recycled Bruce Bushman concepts, learn about curly pig tails, and admire some eyelashes. Kirk gives us a lesson on Disney's favorite chickens, Kate gives a rundown of some repeated audio animatronics, and we end this episode toasting Disney's incredible illusioneer Yale Gracey, who brought us chicken mobiles, pouring tea, mylar flames. and so much more. Join us LIVE on YouTube most Thursdays at 10:30am Pacific/1:30pm Eastern for more Distory!Kate's Youtube: @disneyciceroneYou can also find us on Instagram, Facebook, and at disneycicerone.com & walruscarp.comView full video versions of each episode at Disney Cicerone's YouTube channel HERE OR on the Spotify version of our podcast.Distory T-shirts and StickersKate's SubstackKate's books on AmazonWalrusCarp T-shirts & MerchMOWD app
durée : 00:34:51 - Les Nuits de France Culture - par : Albane Penaranda - C'est une Mistinguett bon pied, bon œil, gouaille et sens de la répartie intacts, que l'on retrouve en 1953 dans l'émission "50 ans de music-hall". Interrogée par Serge, "l'historien du cirque", elle raconte, avec force anecdotes, sa vie et sa carrière dans le contexte du music-hall français. - réalisation : Virginie Mourthé - invités : Mistinguett Chanteuse et actrice française
Derrière le nom "French With Panache", il y a Nathan et Violaine, journalistes de formation et maintenant spécialistes du français étrangère. Ils transmettent leur passion pour l'enseignement
durée : 01:28:13 - Jean-Paul Gasparian, le panache d'un pianiste accompli - par : Aurélie Moreau - Après Debussy, Rachmaninov et Chopin, le pianiste Jean-Paul Gasparian a consacré son récent disque à des compositeurs arméniens: "mon rêve serait que ce projet donne envie aux mélomanes d'explorer plus avant les trésors de ce répertoire". (Diapason)
Listen to the full episode here: https://www.patreon.com/c/coldpod Prince Batrick is the founder of the hardcore record label 11PM Records. Patrick sat down with us to discuss Rev, The Black Eagle, the opposite of dry January, 'full timers', people who only go out on Halloween and New Years, Richmond's alcohol laws, getting into hardcore, Gwar, Municipal Waste, Best Friends Day Festival, getting moshed into a lake, Screaming Females, moving to New York, interning at Panache, 285 Kent, Mac Demarco, Pharmakon, the New York Punk Scene, train yard shows, Toronto being more like London than American cities, diversity, artists relying on brands and the government, Richmond cops, DIY raves, Toronto summers, pretentious DJs, fun music vs cool music, only releasing records on vinyl, The Cock (NYC), serial killers, Peter Gatien and more! Prince Batrick Josh McIntyre Nick Marian ---- COLD POD
A European flying tour from North America, a symphony of alcohol (with two specific colors), a flight sim in an airport (well, nearly), the Paris Olympics from the inside (Paul is jealous), the alternative timeline of CDG T1 and Concorde (we want to switch to it!), an appreciation for Ryanair (nope, we're not in another timeline). getting sea sick whilst taxiing (included in your expensive ticket), the tiny ground dots of Charles de Gaulle and Zurich (bring them back!), the dark underground link between Orly and Luton (ok, not really, but you'll get it), the fabulous Musée de l'air et de l'espace at Le Bourget (does it get any better than this?) — Vinod is back (and not only for the insane Spotify numbers he brings along).Happy New Year everyone & Happy Flying!
How Panache is saying Thank You! Michelle Vijgen sits in with us today!!
Avec nous pour en parler Andrew McKenzie, membre de Panache Adelaide French Theatre.
Stage 16 of the Tour de France, with a pepper spray incident and a win by Alaphilippe
The Ringer's Chris Ryan, Sean Fennessey, and Andy Greenwald apply a few squirts of L'air de Panache before rewatching Wes Anderson's 2014 hit comedy adventure ‘The Grand Budapest Hotel,' starring Ralph Fiennes, Tony Revolori, F. Murray Abraham, and Adrien Brody. Watch this episode on video on our YouTube channel, Ringer Movies! Producer: Craig Horlbeck Learn more about your ad choices. Visit podcastchoices.com/adchoices
The first issue of Mick Mercer's fanzine Panache came out in January 1977, with Iggy Pop on the cover, perfectly poised for the punk/new wave/DIY revolution that was exploding across the UK. Mick kept the zine in print for a further 50+ issues, all the way to 1995, which makes it one of the longest-running, and arguably the most consistently prolific of all the original UK punk-inspired zines. In the decades since, Mick has carried on demonstrating his passion for indie music, comics, and cats, via blogging, radio shows, a Substack column, and his Cat Olympics. Oh, and he's also written a few books over the years, for which he is rightly considered one of the gurus of Goth. For more info on this episode, including images from various issues of Panache over the years, and direct links to Mick's radio shows and other creative outlets, please visit https://tonyfletcher.substack.com/p/the-fanzine-podcast-ep-28-mick-mercersAnd please subscribe while you are there; it's where Tony continues to exercise his own fanzine muscles by writing about underground and pop culture on a twice-weekly basis. If you enjoyed this episode and your podcast platform allows it, please hit the like button, consider leaving a review and, if you haven't yet, hit "subscribe" to ensure you don't miss the next monthly episode. Mick Mercer can be found at https://mickmercer.substack.com/The Best of Jamming!: Selections and Stories from the Fanzine That Grew Up 1977-86 is published by Omnibus Press.'The Jamming! Fanzine Podcast Theme' is by Noel Fletcher.The Jamming! Fanzine Podcast logo was designed by Greg Morton. Hosted on Acast. See acast.com/privacy for more information.
Squirting some L'Air de Panache into your pod-holes Episode 69 is here We are starting a new Mix - one called Found Family. Marcie has picked first and gone with the Wes Anderson masterpiece The Grand Budapest Hotel Please lie with us in the metaphorical bath as we discuss many things including - Wes and his ways; some excellent swearing; and Paddington 2. We have a discord channel! Join us over on the Island of Misfit Podcasts with Seddy Bimco; and Spaghetti and Freddy. Click the link HERE to join Chapters Welcome guests of The Mixtape Hotel (00:00:00) Grand Budapest Chat (00:15:10) Song Choices (01:16:20) Any emails? and Next Episode (01:23:47) Thank you to everyone who listens to the show, we love you all. Your support means the world to us. If you want to contact the show you can email us at themoviemixtapepod@gmail.com Find us on Instagram at the_moviemixtape Hosts: Dirk, Marcie, and Mikey P Edited by: Dirk and Marcie Episode art: Mikey P of Project Unknown Comics Logo by: Irontooth Design The Movie Mixtape Spotify Playlist can be found HERE The Movie Mixtape is a TAPEDECK podcast, along with our friends at 70mm, Bat & Spider, Escape Hatch, Will Run For..., Lost Light, Twin Vipers , The Letterboxd Show , The Yeti Is Still Broken ,and the returning Cinenauts
« Ma vie est une énorme injustice : je suis trop heureux. », déclara, un jour, Jean Marais, que l'on a souvent réduit à l'état d'acteur français le plus séduisant. Son parcours, au cinéma et au théâtre, des années 1930 jusqu'à la fin du siècle, révèle un homme et un artiste dont les multiples talents, il était aussi peintre et sculpteur, ne se bornent pas à laisser agir son charme. Sa vie intime et professionnelle est liée à celle de Jean Cocteau. De leur amour, de leur admiration mutuelle, de leur complicité naîtront des œuvres marquantes du vingtième siècle : « Les parents terribles », « L'aigle à deux têtes », « Orphée » ou encore l'adaptation magnifique de « La belle et la bête ». Un parcours fait de beauté, de poésie et aussi de beaucoup de panache. Revenons aujourd'hui à celui qui disait n'avoir jamais tenté de diriger son destin ni de lutter contre. Mais, au contraire, de s'être laissé mené par lui.” Revenons à Jean Marais dans une séquence réalisée par LA et HV avec les archives de la Sonuma Sujets traités : Jean Marais, Jean Cocteau, cinéma, acteur, théâtre, charme Laurent Dehossay Merci pour votre écoute Un Jour dans l'Histoire, c'est également en direct tous les jours de la semaine de 13h15 à 14h30 sur www.rtbf.be/lapremiere Retrouvez tous les épisodes d'Un Jour dans l'Histoire sur notre plateforme Auvio.be : https://auvio.rtbf.be/emission/5936 Et si vous avez apprécié ce podcast, n'hésitez pas à nous donner des étoiles ou des commentaires, cela nous aide à le faire connaître plus largement.
Votre parole a du pouvoir, et l'invitée de cette semaine est là pour vous aider à l'exploiter.Sur InPower, je reçois des personnalités publiques, mais ça me tient à coeur aussi de recevoir des experts qui peuvent nous partager des clés que l'on peut appliquer au quotidien.Sanna est experte de l'art oratoire; Professeure de Rhétorique pour Polytechnique et Fondatrice de l'agence Raconte, c'est sur InPower qu'elle vient nous partager cette semaine les outils à maîtriser pour devenir un as de la prise de parole.Quels sont les codes à maîtriser ?Quelles sont les techniques à appliquer ?Comment être entendu, et pas seulement écouté ?C'est tout ce que l'on vous partage, dans ce nouvel épisode d'InPower.Chapitres : 00:00 Teaser 01:17 Présentation et parcours08:58 Apprendre à prendre la parole 11:03 Se défaire du stress et de la peur du jugement 16:30 La peur de rougir23:05 Les enseignements tirés26:32 Ethos, logos, pathos38:25 Le coaching 43:46 Le storytelling 49:23 L'authenticité55:12 Le paraverbal et le non-verbal 01:00:09 Les tics de langage 01:02:25 Le complexe de ne pas être intéressant01:07:25 Accroches en dating01:09:15 Élever l'humain 01:10:30 Les questions de la fin Notes : Podcast In Power x Anthony Bourbon : https://www.youtube.com/watch?v=tRkOtpeaWLw&t=1092sPodcast In Power x Tony Parker : https://www.youtube.com/watch?v=yzUNp3eD8-8&t=11sPodcast In Power x Kelly Massol : https://www.youtube.com/watch?v=Wn_JZ2ZvBWQ&t=1184sMélissa TheuriauJoseph Campbell, The Hero's Journey (livre) AristoteMad Men (série TV) Blog de Panache : https://www.avecpanache.co/blog Pour découvrir les coulisses du podcast :https://www.instagram.com/inpowerpodcast/ Pour retrouver Sanna sur les réseaux : https://www.instagram.com/racontetastory/ Et pour suivre l'aventure MyBetterSelf au quotidien :https://www.instagram.com/mybetterself/ Hébergé par Acast. Visitez acast.com/privacy pour plus d'informations.
On this week's episode, I have actress Paula Marshall (Euphoria, Walker, Gary Unmarried, and many many more) and we dive into the origins of his career. We also talk about how she dealt with being a new mom and working on a sitcom at the same time. There is so much more so make sure you tune in.Show NotesPaula Marshall on Instagram: https://www.instagram.com/thepaulamarshall/?hl=enPaula Marshall IMDB: https://www.imdb.com/name/nm0005191/Paula Marshall on Wikipedia: https://en.wikipedia.org/wiki/Paula_MarshallA Paper Orchestra on Website - https://michaeljamin.com/bookA Paper Orchestra on Audible - https://www.audible.com/ep/creator?source_code=PDTGBPD060314004R&irclickid=wsY0cWRTYxyPWQ32v63t0WpwUkHzByXJyROHz00&irgwc=1A Paper Orchestra on Amazon - https://www.amazon.com/Audible-A-Paper-Orchestra/dp/B0CS5129X1/ref=sr_1_4?crid=19R6SSAJRS6TU&keywords=a+paper+orchestra&qid=1707342963&sprefix=a+paper+orchestra%2Caps%2C149&sr=8-4A Paper Orchestra on Goodreads - https://www.goodreads.com/book/show/203928260-a-paper-orchestraFree Writing Webinar - https://michaeljamin.com/op/webinar-registration/Michael's Online Screenwriting Course - https://michaeljamin.com/courseFree Screenwriting Lesson - https://michaeljamin.com/freeJoin My Newsletter - https://michaeljamin.com/newsletterAutogenerated TranscriptPaula Marshall:But a lot of parents, they go to jobs and then they come home or they don't work at all, and then it's just mom 100% and they're probably exhausted and happy. Some of my friends, I feel like they're like, I'm so glad. Finally I get to whatever. And either they're retiring and they get to go travel and like, no, I'm an actor. I'm looking for a gig, whatever. I don't think actors ever truly retire. I think we don't. I don't.Michael Jamin:You are listening to What the Hell is Michael Jamin talking about conversations and writing, art and creativity. Today's episode is brought to you by my debut collection of True Stories, a paper orchestra available in print, ebook and audiobook to purchase. And to support me on this podcast, please visit michael jamin.com/book and now on with the show.Welcome everyone. My next guest is actress Paula Marshall. She has been, I worked with her years ago on a show called Out of Practice, I think it was like 2005. But Paul, before I let you get a word in edgewise, I got to tell everyone, your credits are crazy long, so your intro may take a long time. So I'm going to just give you some of the highlights to remind you of your incredible body of work here. Really these are just the highlights. She works a ton. So well, let's see. I guess we could start with One Life To Live. That might've been your first one. Grapevine Life goes on. Wonder Years Seinfeld. I heard of that one. Perry Mason diagnosis. Murder Wild Oats. I'm skipping here. Nash Bridges. You did a couple Chicago Suns Spin. City Cupid Snoops Sports Night, the Weber Show. It doesn't end.Just shoot Me, which I worked on. I didn't even know you were on that. Maybe I wasn't there. Hitting Hills and Out of Practice, which we did together. Veronica Mars, nip Tuck, shark ca Fornication. You did a bunch of Gary Unmarried House friends with Benefits, the exes CSI, the Mentalist, two and a Half Men Murder in the First Major Crimes. What else have we got here? Goer Gibbons, I dunno what that is. You have to tell me what that is. And then Modern Family Euphoria. You did a bunch of them. Walker. Paula, I'm exhausted and I'm going to steal your joke here. You can because I'm going to say you're Paula Marshall, but you may know me as Carla Gina. That's what used to tell me CarlaPaula Marshall:And I know Carla,Michael Jamin:But knowPaula Marshall:She's like the younger version of me. Slightly shorter,Michael Jamin:Bigger, bigger. Boop. But you have done so much. I'm going to jump, I'm going to jump into the hardest part. I'm wondering if this is the hardest part for you is being a guest star on a show because you have to jump in with the cast, you have to know the rules and everything. Is that harder?Paula Marshall:Yes, a hundred percent. It's harder when I guest star on any shows, if I haven't seen the show, I watch three or four on YouTube just so I know who's who and the vibe and the energy. When I guest star on Modern Family I their last season and some could say I canceled the show by being there. I've been called a show killerMichael Jamin:Before. I remember You don't let Right.Paula Marshall:I still have not let that go. I like to say I've just worked on so many different shows at its peak and then it died anyway. It's hard because they're all in a flow and depending on the other actors, how cool they are to kind of throw the ball at you.Michael Jamin:But do you have to identify who's the alpha dog on set? Is that what your plan is? It'sPaula Marshall:Pretty clear right away. Really? Yeah. I mean besides whoever's first on the call sheet, I remember one of the producers of Snoop's, David Kelly's first big bomb. That was me.Michael Jamin:It was a sure thing what happened?Paula Marshall:You know what? I'm not sure. Well, when it was supposed to be a comedy quickly turned into a drama, it was not great. But as one of the producers of Snoop said, you don't fuck with the first person on the call sheet. You don't fuck with him. And so you identify that person and depending, it's funny because I've worked with so many great people and so many assholes too. Like David Deney. Damn, is he cool? He's so nice. When I worked on fornication with him, he set a tone for just the set, the crew, the actors, this freedom just to try things. And I remember during my, it was like the first day naked throwing up,Michael Jamin:Wait, were you nervous? Why were you throwing up?Paula Marshall:Hello? Of course. But IMichael Jamin:Remember you're never nervous, Paul, let me tell you who you were. I'm totally nervous. No, you're the most self-assured person probably I've ever worked with. You're very confident.Paula Marshall:Thank you. I'm actingMichael Jamin:Acting.Paula Marshall:But California occasion, it was my first day onset naked, fake fucking. And I remember standing there, it was yesterday, and either tweaking you and touching you up. And I say to everyone, what's amazing, what I'll do for $2,900 when a strike is pending? It was the writer's strike way back in the day. And I remember getting this part on fornication and I'm like to all the girls in the audition room, when we used to have auditions in rooms with other people, I looked around, I'm like, we're not going to really have to be naked. We're not those type of actresses. And they're like, no, no, no. And I'm like standing there. Yeah, yeah. I was naked.Michael Jamin:Was that your first time in a show being naked? I meanPaula Marshall:ToplessMichael Jamin:ShowPaula Marshall:On a show?Michael Jamin:Yes. Because you were in a model, I'm sure as a model, you're doing wardrobe changes all the time.Paula Marshall:I used to model. I was naked a few things back in the day.Michael Jamin:So were you really nervous about it? I mean, I imagine you would be, butPaula Marshall:Standing there naked is one thing. You just kind of have to dive in the pool, in the cold, cold pool and let it go because you got to put on the confident jacket, I guess I obviously wore a lot around you, but I mean it's more uncomfortable, the fake sex scenes, it's more technical and awkward. It's just but nervous. I dunno. Yeah, you're excited. But I'm also excited when I walk on stage on a sitcom before, if I'm not already in the set, when they start rolling, I'm backstage. How's my hair? Shit, how am I doing? Okay? I get hyped up until you do it once and people laugh and you're like, oh,Michael Jamin:Okay. Are you worried about going up on your lines at all? Is that at all you're thinking about?Paula Marshall:Yes, especially now. Oh shit, my memory. It's just that prevagen, I'm going to look it up later, but yeah, you do. But if you in a sitcom situation, we run it, we rehearse it all week. StillMichael Jamin:The lines are changing all week. That's all IPaula Marshall:Know. But they're changing all week. But then you run it and you drill it on TV shows like euphoria or whatever. Yeah, you run it. But then again, they don't really change the lines at all. But yeah, you were a little bit, but then you got a great script supervisor that you're like, I'm up. And then they say it and then you go back and you do it. But yeah, always, I'm always really nervous until maybe the second takeMichael Jamin:Of any, the hardest thing it seems to me is just like, okay, you're naked and you have to forget that there's all these people there. You havePaula Marshall:ToMichael Jamin:Completely, it's almost like you're crazy to have to be able to forget that,Paula Marshall:Michael, when you paid $2,900.That's right. I was shocked. That's all you get for being naked. Yeah, you do. You are nervous. But I don't know. I was 40 then, so I looked pretty good naked, although I only had four days notice. Back then we didn't have ozempic, so I was like, okay, I can't, no salt, no bread. And I remember in that shot that the camera guy, they decided in the moment, Hey, can you walk over to David? And then bent over, he's on the bed and then kiss him. I'm like, well, that depends. What's your lens there? You got there? And I'm like, how wide is your lens? And he looked at me and I'm like, I'm a photographer. I like taking pictures. So I know. And I'm like, so I'm going to bend over with my white ass and I had four days notice on this and my ass is just going to be in the pretty much. And you're like, okay, I could do it. But you hope for body makeup. I don't know. Don't you think I had any, I should have demanded bodyMichael Jamin:Makeup. And this was probably even before there were, what do they call them now? IntimacyPaula Marshall:Coordinators?Michael Jamin:Yes. Right.Paula Marshall:I mean, here's the thing. I guess it helps when you're not a loud mouth person like me. And even then it's hard to go, Hey dude, keep your tongue in your mouth. You don't want it in your mouth. Sometimes you're like, damn. He's a great kisser. Jason Bateman, I enjoyed the tongue in my mouth. SoMichael Jamin:It kind of dependsPaula Marshall:On who's sticking in the tongue. But the intimacy coordinator, I think it's just so people know what's going to kind of happen and get it. But California case, no, we didn't have that. This movie I was naked on with Peter Weller called The New Age. No, I remember in the middle of the scene, I'm on the bed and he's looking down at me and during one take he decides to suck on my nipple. Shocking. I turned bright red, which is what I do when I get nervous. And I'm like, dude, what are you doing? He goes, I dunno, I just thought it'd be fun. I'm like, okay. And I don't think they used it, but if there was an intimacy coordinator back then, I probably would've known.Michael Jamin:Yeah. So it'sPaula Marshall:Good I guess. But it's corny and you feel silly.Michael Jamin:Oh my God, I'm glad you mentioned the photography thing. That was one of my memories from working together and out of practice. This was before people had camera phones and cell phones and you carried a camera everywhere. And I remember thinking, you're the star of a sitcom. You're the star. I mean, you're an artist doing her craft, and yet it's still not enough that you wanted to work on something. You wanted to do something else as well.Paula Marshall:Maybe it's my parents growing up, they always had these really cool black and white pictures of them. And I used to look at them and go, wow, that was your life then. And it was hard to even imagine when they were so young. And so it's like photos are life to me. And I guess I don't want to forget the moments of my life that are important. And so I always would bring a camera with me on set, on location more than sitcom stages aren't as conducive to really cool shots. But yeah, I like capturing life.Michael Jamin:And you're still doing it on 35Paula Marshall:Millimeter? I still do it, although I did give in and I have a digital now because it's easier. It's easier. Develop film.Michael Jamin:Many. You took my headshot from me and for many years I way too long. I used that as my headshot.Paula Marshall:Yeah, it was good. I rememberMichael Jamin:It was great. And I wore Danny's shirt, you go, yeah, put this on. You look terrible. Whatever I was wearing, stillPaula Marshall:Do that. People still come over my friends and I'm like, you need a headshot. Put Danny's shirt on. He has some nice shirts.Michael Jamin:It's so funny.Paula Marshall:Yeah, I do. I still like taking pictures.Michael Jamin:I got to share another memory I had from out of practice, which I cherish this one. So it was right before it was show night for some reason. I don't know why. I had to run up pages to the cast. And maybe you were in the green room or you were somewhere upstairs. I don't know what the hell dressing. I don't know what was going on. I knock on the door and all of you we're standing in a circle holding hands. And Henry goes, Michael, you're just in inside. Come on in. And then I go in time for what? And then he tapped. This blew my, I love this memory. And you guys were just like, I don't know what you would call it, but you were invoking a good show to be supportive of each other and to be brave and true. And I was like, I can't believe I felt so honored that I was included in, I was like, are you serious,Paula Marshall:Henry? I actually forgot that memory and thank you for reminding me of it. Henry's just, he's something special.Michael Jamin:He is.Paula Marshall:I know there's rumors. Oh, who's the nicest guy in Hollywood? Henry Winkler. It's because it is, is I could text him right now and he would literally text me. Within eight minutes he will text me back. Oh, Paula, it's been so, he's just a dear. And so he is, again, back to the, when you go on set and who creates that energy? Although Chris Gorham, I think was the first on the call sheet, not Henry Winkler, but Henry was our dad. I mean, he was such a pro and yeah, he just created this lovely energy there.Michael Jamin:Yeah. Oh wow. So that's not common then for other shows that you've worked on. People don't do that. That's not a theater thing. It seems like a theater thingPaula Marshall:You would think. I think, I don't know, maybe it was a happy days thing.Michael Jamin:Why don't you start it on your next show? Why don't you start doingPaula Marshall:It? I think I might. I'm going to make it now.Michael Jamin:I thought it was so interesting. I was like, wow. But it's getting back to that first point, even the first, the first person on the call sheet technically is the head cheese. But they might not be the most difficult by far at all. I mean, you don't know who's the boss. That's true, right?Paula Marshall:I mean sometimes the and character is an asshole. I mean, I think mostly people when they don't really want to be there, they kind of rebel. I've always wanted to be on a sitcom. IMichael Jamin:Remember. Did that change? Oh, go ahead, please.Paula Marshall:I just remember, I believe my first sitcom was Seinfeld. I may have done a guest spot on some other one that maybe never aired or I can't remember. Or maybe I just think it's cooler to say my first sitcom was Seinfeld. I'm not sure. But that show, I don't know. There's a magic. But they didn't do any of that either. But they kind of really invited me in and I dunno, I'm just thinking,Michael Jamin:Do you prefer to do sitcoms, multi-camera sitcoms? Yes. Yes. Because the audience.Paula Marshall:Because the audience, because it's a high, I've never gotten anywhere else in my life. Not that I need to be high, but damn. When you go out and you make people laugh with a look or a line or a physical movement, I mean it's magic. And working with the actor, knowing more like theater, which by the way, I've never doneMichael Jamin:Well, why don't you do theater then?Paula Marshall:I don't know. I don't know. I'll call my agent another thing I'll write down.Michael Jamin:Yeah, do that.Paula Marshall:But probably only if it's a comedy. But it's that magic that you don't have to go and do another take and then they turn around and then you got a close up again. I mean, it's boring. Like our television, there's no magic in itMichael Jamin:Ever.Paula Marshall:Except on euphoria. I have to say there's magic there.Michael Jamin:Why do you say that?Paula Marshall:Because the writing directing the story level of, I mean, when Marsha is my character, when Marsha actually had a couple things to say. I remember I called or I spoke with Sam Levinson and I was like, dude, it's me, right? You wrote an eight page monologue almost for Marsha to say. And he goes, yeah, I can't wait to see it. And I'm like, oh my God. I was so nervous. I studied for three weeks. There was no rewrites. And then it's me and Jacob all Lorde on set. And we get there and there's no rush, there's no limitation. There's just like, what do you want to do? And he's like, I kind of feel like you're doing this and then you're doing the cookies and a lot of movement. But we did it until it felt good, and then we knew it, and there was a magic there. No one's laughing at me. But there's something special about that show. I mean, I've heard rumors like, oh, and on set. And I'm like, ah, not for me. Not for me at all. Not for you. No, it's amazing.Michael Jamin:What do you do though? When you're on set and you have an idea how you want to play or speech, how you want to deliver speech, and your scene partner is just on doing something completely fucking different. How do you handle that?Paula Marshall:If you know, don't have a say, meaning you're a guest, darn. You do what they tell you to. How high do you want me to jump? That's what you do. But if you're working together and you're equal parties, you probably have run it before. But I would say if they're not doing something that I want, then I use it and I am frustrated in the scene, or I just use whatever they're giving me because that's all I got. And I try to put that into my character.Michael Jamin:How much training have you had though? That's very actor speak.Paula Marshall:It really did sound a little actory, and IMichael Jamin:Apologize for that. No, it's good. I like it.Paula Marshall:I mean, I don't know. I lived in New York City and I took acting class with this guy named Tony Aon and Jennifer Aniston was in my class and Oh wow.Just a bunch of young people, but not all that much. Not all that much. I think the comedy thing, I didn't even know I was funny with Seinfeld, the guest stars aren't usually funny in sitcoms. The lead, the main characters, the stars of the show are funny guest stars just kind of throw the ball and you know what I mean? But something happened after I was on Seinfeld and then I read for, I guess it was Wild Oats, which was with Paul Rudd and Jan Marie hpp. And Tim Conlin. It was a sitcom on Fox. It was the same year that another show called Friends was coming out. And I remember them. Someone was interviewing us saying, oh, there's another show that NBC is doing with a group of friends. It's kind of like yours. And we're all friends. What's that cut to?And ours was canceled after one season, but I think the first time I was like, oh shit, I can do this. I know how to deliver a joke. But I never learned that again. It just happened one year in pilot season just kind of happened. And my agents were like, oh, Paul is funny. Okay. And then one time I remember I read for a pilot, after you do so many comedies, then people go, well, she's a comedic actress, she can't do drama. And then you're like, the fuck. Of course I could do drama. I remember one time during this callback, no original, just the first audition. And I had heard the casting director doesn't think or only thinks you're funny, doesn't think you're as good. Dramatic. Wow.Michael Jamin:Obviously if you could do comedy, you could do drama.Paula Marshall:No, you would think it's the other way around. It never works. It is really hard to doMichael Jamin:Comedy.Paula Marshall:But literally, I was like, well, I'm so angry that she thinks I can't. Finally, they couldn't find this girl, the character for the pilot. And then they finally, okay, Paula, we'll see her. So I get in there, and it was Davis Guggenheim was the director. I love Davis. After I read, I think it was three scenes. And during the last scene, I broke down and I was in tears over something and I look up with, you couldn't have placed the tear better. And I look up and I ended the scene and Davis goes, my god, Paula Marshall, you are one fine actress. And I do this. I look at the casting drifter and I go, you see, I'm not just funny. And I grabbed my bag and I walked out and I go, well, I just fucked myself for any future director again. There was something that came over me and I was like, I need you to know that I am not just one thing or the other. And then Davis probably three weeks later, texts me, I've been fighting every day for you. And I'm like, what are you talking about when you get these weird texts from people? I'm like, did I get the part? I got the part and they didn't want to see me.Michael Jamin:It's so interesting. I mean, obviously you're a working actor, you work a lot. You're successful, and yet you still feel like you're placed in this box and you have to prove yourself and get out of it.Paula Marshall:But there's something I really love about, there's part of me that I want to read, and I want everyone to look at that tape and go, fuck, I wish we could hire her. I wish there weren't the limitations and we didn't have to pick Carla at you now or whatever. I wish we could pick Paula. I want them to go, fuck man. She was really good. I want to stick in their brain. I always would cancel auditions if I wasn't ready for it. If I really knew I wasn't going to kill it, I wouldn't go, or I won't put myself on tape. I don't have enough time to prepare for it because that's the last thing they see of you.Michael Jamin:IPaula Marshall:Want it to be the best thing they see of me. So I only want to leave them with that because they're not going to remember that other stuff.Michael Jamin:That's a good point though. Are you doing a lot of self tape now? Is there anything in person?Paula Marshall:I have not had any auditions in person yet. Wow. Her actress ever Carradine. I think she's had her third one, and she always posts about it. She's so cute. And I think she booked one. No, I have a room now in my house. It's the tape room. And I've got a nice beauty light and I've got the tripod again. It's kind of easy for me because I have photography stuff.Michael Jamin:But who are you acting again or does Danny help you out?Paula Marshall:Well, Danny will sometimes read with me. My daughter would read with me. And sometimes when I'm all by myself, I read with myself. I will have a tape of the other voice, which is, or sometimes I leave space and then I put the audio in later. I mean, it's crazy the stuff that happens during Covid. We've got very creative over here.Michael Jamin:But in some ways though, because this sometimes a casting director is like, yeah, yeah, there couldn't be more wooden. And so in some ways it's got to be easier for you, right?Paula Marshall:Yes and no. Yes, because I get to pick the take I want,Michael Jamin:Right?Paula Marshall:Two, because two, I didn't even say one a b, I don't get nervous, so there's no nerves to hold me back or Oh man, I should have done it. Or I mess up. I just do another take. But then there's also, there's something about going in and being vulnerable in front of all those people and showing them what you can do. And especially in a comedy, I, it was like a zoom callback for a comedy. And I live in the hills and maybe it was the wifi or that slight timing was off just enough or the reader wasn't funny and I'm trying to connect with this dot. It was hard. There was no magic in it and you couldn't feel the other person. And so I think in a way, it's good in a way. It's really not good. So I'm willing to do whatever to get anything because I pay for college.Michael Jamin:But also, there's also the fact the to drive across town, I mean, that's got to get old, right? Driving everywhere.Paula Marshall:But when you're an actor, everything stops. You get a script, everything stops. You're not making dinner, you're not going out, you're not watching that movie or the show. You drop everything and then you focus on it. And hopefully, thankfully, because of the strike and the new negotiations that they got for us, I think we don't have to do a self tape over the weekend. We need to have enough time to actually prepare for it, which is amazing. Most of the time. Gary unmarried, I think I got the audition at eight o'clock in the morning. It was to meet producers at 11 o'clock the next day. And you're like, ah, okay, here I go. It's really hard to put all that energy and to them something great. And I never understand why you're casting people or producers. Don't give us more time because we want to give you something great. We don't want to go in there and read. I don't. I want to perform for you. And it's hard to do when I don't have enough time to do it. I also have a life, so I have other things, but you kind of do. You really drop it. You drop everything for an audition.Michael Jamin:It's interesting though. I want to get touched on something you said. You said it's hard to be vulnerable on camera, but then you said comedy, and do you feel like it's harder to be vulnerable? Because when I think of vulnerable, I think drama, not comedy.Paula Marshall:Yes. But there's nothing funnier. I remember my husband in many situations will say, I'll be upset or crying and I'll say something really funny, but humor comes out of the reality, like your honest to goodness, open soul, like your heart. The funniest stuff I think comes out of me when I'm in a vulnerable position, if I'm angry, if I'm sad when I'm just feeling whatever. So I don't know. I think in many sitcoms I've cried. And how do youMichael Jamin:Get past that though? How do you get past that vulnerability thing? I mean, are you a hundred percent past it or is there any reservations?Paula Marshall:Ask that again. Sorry.Michael Jamin:Very clear saying, well, when you're vulnerable on camera or trying to be, can you go, I don't know. Is there a limit to your vulnerability, do you think on camera or are you willing to go there all the time? As much, as far as you want?Paula Marshall:I guess so most of the time it depends on how much tears you have. And I usually, if the writing is good, and that's the big if this thing that I ended up booking with Davis Guggenheim, it was with John Corbett, and I had to cry and it was maybe like a steady cam up the stairs and going, and I break down and I crumbled to my knees, and I swear to God, I did it. Maybe 17 takes. And then we come around and turn around on him and I end up crying again. And John, after we, they yelled cut, he goes, Paula, what are you doing? Why are you crying again? I go, I don't know. The words are making me cry. I'm just tapped in doing it. They wipe it away. But you got to be careful because I'm vain and you got to look like you're not crying, and I'm really crying.So I get red and my eyes get bloodshot. You look different and the snot and you got to fix the whatever, makeup. But no, but when it's great, when the writing is great, of course, usually you don't have to do it. 17 takes, it was just had a lot to do with the steady cam and whatever. But usually you do it in three takes and you nail it and it's good, and they're like, wow, that was great. Let's move on. So you don't really have to in a movie, if you nail it, you nail it and they move on.Michael Jamin:What do you do though when you're in it and you feel like you're slipping out of it?Paula Marshall:Okay, so that when I drink this, soI have at least one of those before every tape night, I've always drink a Coke. If I can't, the writing isn't talking to me. If I can't relate to it, I do that substitute thing. If I have to cry, and this is really not making me cry, the subject and the words I substitute for something else that makes me cry. I'm a freakishly emotional person. I cry a lot. I'm very sensitive. You wouldn't really think that because kind of like Danny calls me bottom line, Marshall, and I'm very tough and whatever and no nonsense. And I say it like it is, and I will always tell you if you look fat in that dress, I like to be honest, but I don't know.Michael Jamin:But is there a moment where you feel like you're okay? You're on, you're giving a speech, you're in a scene, and then you're like, oh, I'm acting now.Paula Marshall:Yeah, yeah, yeah. I mean, every once in a while, I mean, I'll finish the scene. I don't want to stop myself. They might like it and for whatever reason, but I'll always say, can I have another one? Can I please have another one? Or Oh my gosh, I really like the second take. Just can you make a note of that, that the second take was much better. They know it's obvious when you see someone telling the truth, it's obvious which one is better, but you can't just tell the truth once and then move on because you don't know. Maybe there was a sound issue on that take. No. So it's tricky. Every once in a while you think you have it. The crappy thing is when they come around to you or they start on you and then you finally figure something out. I remember Bette Midler, we were doing the scene and they were on us first.It was a movie, I guess Danny and I did the scene together and it was bet opposite on a table. And they go to her, they turn the camera on her, and then she goes, oh, I just figured it out. We're like, no, the opposite. We did her first. Forgive me. We did her first and then they came on us. And then she goes, oh, I just figured out the scene. Can I do it again? And Carl Reiner's like, no, we got to move. No, we're out of here. So sometimes it takes a while to figure it all out, and she just thought she didn't nail it. It's Bette Midler. She nails every take all the timeMichael Jamin:You are listening to, what the Hell is Michael Jamin talking about? Today's episode is brought to you by my new book, A Paper Orchestra, A collection of True Stories. John Mayer says, it's fantastic. It's multi timal. It runs all levels of the pyramid at the same time. His knockout punches are stinging, sincerity, and Kirks Review says, those who appreciate the power of simple stories to tell us about human nature or who are bewitched by a storyteller who has mastered his craft, will find a delightful collection of vignettes, a lovely anthology that strikes a perfect balance between humor and poignancy. So my podcast is not advertiser supported. I'm not running ads here. So if you'd like to support me or the podcast, check out my book, go get an ebook or a paperback, or if you really want to treat yourself, check out the audio book. Go to michael jamin.com/book. And now back to our show.Do you have these conversations with them? Do you have conversations with actors with more experience and I don't know, are you still trying to learn from them?Paula Marshall:I just pay attention to what they're doing. I don't think I pick their brains like that, but I just watch them and I watch and I seeMichael Jamin:What are you looking for?Paula Marshall:Well, sometimes technically how they do it. I remember my first movie, Hellraiser three, I learned a lot about continuity,Which is something they don't really teach in acting class. If I'm going to play my drink up and sip it, I have to do that every single time. If I'm going to eat in the scene, I got to do it every single time, and I have to figure that out. And you have to really, if you're really going to eat, you got to really eat. Not teeny little bites, make your choice. But I learned things from different people. I remember Robert Duvall, I played his daughter in a movie and he would act and he kept going until his body knew it was over. And I remember the director had yelled cut at one point and he got really mad. He goes, I wasn't done, but he had finished talking. And he goes, I'm still acting here. It's like, I'm still walking here. But it was like, I'm still acting.I'm still doing, there's still so much more there. I observe and I see how they deal with issues and problems in their focus. ISHKA Harte guest star on that show of hers, and we auditioned a lot in the beginning. We came up at the same time and just everything was so serious to her. She really so passionate about her show and she threw away nothing. It was really kind of impressive after a hundred seasons now that she cared so much because some people after four Seasons, they're like ready to go. They're like, I got a movie down, I'm ready to go. But there's certain people like Maka who from day one till again, I think it's 25 seasons or 24 or something crazy. I remember when I worked with her and I hadn't seen her in 15 years or something, I just am like, God, how rich is she? And so instead I was like, tacky. I'm not going to say that. So again, I walk up to her and it was emotional that we hadn't seen each other in so long. I hugged her and I said, how big is your house? She goes, I can't complain.Michael Jamin:I'm like,Paula Marshall:But she's very passionate and so many actors are, and then there's some who are not and who are ready to goMichael Jamin:And who are they? Not names, but why are they there? Are they just rock stars who became actors? You don't know. It just falls into a job like that.Paula Marshall:There was one person and he just seemed really angry all the time. I don't think he was just a happy person. If you don't like doing this, I'm not sure why you're doing it. I don't know. There's just something inside you. I mean, this is the greatest thing ever to be paid to do what you love. And again, when my daughter said she wanted to be an actress, an actor, sorry, I was so happy. I was like, that's where I found joy in my life. I grew up in Rockville, Maryland, and I didn't know anybody, and I just watched the Mary Tyler Moore show, and I went, yep, that's what I want.How do I do that? I had no idea, none. And to find joy there. So when a person is coming to set and they're angry, it could be, they don't like the words actors are very particular about. If your dialogue is not great, it's really hard. It's so much easier when you have great dialogue and the scene makes sense and the relationships you buy them. It's so easy to do it. It's effortless and it's so real and it's so honest. And then when you've got this other stuff and you have to say the name of the person to remember that it's very cookie cutter network television, which you would think at this point would look at streaming and go, yeah, there's always something right over there because the quality is just beyond Well,Michael Jamin:How did you figure it out then? Okay, you're in Maryland. How did you figure out you stopped in New York first. What was that about?Paula Marshall:Did I moved to New York? I modeled in Georgetown as a local model there, doing little ads for Montgomery reward. And I didn't really want to go to college. My parents didn't make me go to college. I think I had two grand in my pocket from doing things here and there. I started doing commercials locally. And this woman by the name of Jay Sumner, who was the booker at this modeling agency called Panache, she said, we were at Champions. It was a bar called Champions. And though how I was there drinking at the bar, I don't know, I think I was 18. She said, Paula, you're so much more interesting in person than you are in a piece of paper, meaning I'm pretty, I'm good enough on paper, but you're so much more interesting in real life. And she goes, I think you should be an actress.And I'm like, okay, really? And I'm like, well, I always used to watch Mary Taylor Moore and all of that, but I'm from Maryland, how am I going to do? And she goes, I know somebody. I know someone in New York named Dian Littlefield, who's a manager, and I can set you up with a meeting. I'm like, what? So I ended up moving to New York City. Modeling was my waitressing job. I got a lot of money. It didn't take a lot of time. It was really easy. I love photography. So there was that connection that I wasn't just sitting there like an idiot with bathing suits or lingerie or junior wardrobe or whatever. So that was kind of my waitressing job to allow me to pay for rent and acting classes. And then I was like, you know what? I think I really like it. It's true. Just a piece of paper. And it's funny, I love taking pictures. I love stopping life, but there was just, I guess more to me than just the piece of paper. So I guess that's kind of how it happened.Michael Jamin:How did LA happen then?Paula Marshall:So I would audition test for a lot of things. I would fly to LA for different pilot projects. I would read in New York, and then most of the things were shooting in la, not New York at all back then. So I would fly to LA and I think it was just one of my agents said, look, Paul, if you really want to do this, you got to live in la,Michael Jamin:Right?Paula Marshall:I was like, ah, okay. So I moved to LA and yeah, and I was young and 20, I think I was 25 when I moved here, kind of old to kind of start, but I looked really young. And when you read for enough things and enough people are interested, the head of my agency said to me after a pilot, I, or I tested for something and I didn't get it. And he told me back when we didn't have computers, we had to go pick up our scripts and there would be a box outside the script, their office, after hours, he would look through and go, these are my scripts. In the middle envelopes, it says Paula Marshall on it. Anyway, I was kind of sad and I'm like, I don't know. I'm not booking anything. And he goes, but you're testing a lot. You're very close. And I'm like, what does it take? What am I lacking? What am I missing that I'm not booking the thing? He goes, I believe in you and you need to keep doing this. And then I did. I slowly would start booking things.Michael Jamin:What were you lacking? Do you know?Paula Marshall:Maybe it was the confidence, maybe I was really nervous. I remember one time, I think it was during the Flash, it was a pilot called The Flash with John Wesley ship, and Amanda pays Amanda Paynes. Anyway, ended up booking it. But I remember in the audition room, I think it was at NBC or I don't know, one of the big three, the scene, I put my hand on my knee and I was shaking so much from being nervous that I was like, oh, stop doing that. I don't want them to know. I'm nervous because they want everyone to be fearless and confident.And I get that because it takes a lot to go stand in front of a bunch of people and say stuff over and over, or stand there and be naked and do it over and over. There's got to be part of you that's kind of cocky and confident, and not that you think that you could do that over and over with someone else's words. I mean, it's kind of crazy that I do this, but I don't know what tipped me over the scale. I never gave up. And I kept doing it and trying to figure it out and asking and asking the casting directors, and they always say nice things. They never say, well, you messed this thing. No, it's just there's a magic. If I don't book something now, I don't take it personally. Someone else just had a little bit more magic that day, and they tapped into the character and the writer saw that person that they wrote down and spent so many hours writing that Blonde Girl or Carla Gino just got it better than I did. Okay. IMichael Jamin:Know. To me, one of the hardest parts of acting, aside from the acting part is the fact that you really don't, don't have agency over your, you have to wait often. You have to wait. So what do you do in that time?Paula Marshall:Well, you find hobbies. I learned very early on to save money. You live under your means. So even if you get a gig and you're the lead in a show, you're making a lot of money per week. And like me, most of the shows, they did not go more than a season. So you have to take that and live under your means, and you can't spend money and buy fancy things. I invested my money in my house, I think maybe three or four houses now. I try to invest my money and I fill my days with other things.Michael Jamin:Do you stress about it at all or no?Paula Marshall:Yeah. Yeah. I think in the beginning, early on I was very busy all the time. There wasn't a lull. And when you do have a job on, if you're a series regular on a show, you love your weekends, you love your time off. If you're working crazy hours sitcom's, not crazy hours, you know that those areMichael Jamin:Great for writers.Paula Marshall:I mean, yes, that's true, but if you're a director, Jimmy Burroughs would be like, I got a tea time at three 30. We got to get out of here. It's a dream. And maybe that's why I love the sitcom so much, because you got to to act and have a real life. When I had my daughter, I remember going, how would I be a mom and work on a single camera show? I would never see the kid. So when I was pregnant or when I read for Out of practice, I had just had my daughter a week before I went in to test for the show over at CBS. There was a script on my doorstep when I brought her up on the baby thing. And I'm like, I'm a mom and oh, right, I'm an actress and I'm 20 pounds overweight. And oh, I thought I was going to push the, I'm not going to work for a year button.That was the plan. Then I saw the script and I read it and I'm like, oh man, it's a sitcom. I'm not going to work very many hours. I'm going to work three weeks on one week off. I'm like, maybe I'll just do it. Maybe I'll just read for it and we'll see. And I really liked it. I really liked the character. And then when I got it, I was like, oh shit, I don't even have a nanny. How do I do this? So Danny went with me tape night. He was my nanny. I remember them going home because the baby, they were cool. Once we got picked up, they allowed me to have a little trailer outside for my nanny, Mariella and Maya, and I was breastfeeding at the time. She was just born. And it allowed me to do that. And I remember Henry, Henry Winkler still was like, how's Maya? And it was just a great thing. I had my baby. You couldn't ask for a better job for a mom. I was living my dream and I was having a baby when I was 40 years old.Sitcom is the greatest thing in the world, and I'm still trying to get back on one. There's just not that many of them now. It's really sad. Multicam, I've written like three of them. Speaking of writing. Yeah, go on. The writer. So I remember, I think it was when the pilot that I did with John Corbett, when I cried 17 takes in a row, when that didn't get picked up, I remember I was dropping off my daughter at elementary school and Dave Grohl, yes, that Dave Grohl sees me. And I had just found out that the pilot wasn't picked up. It's called Murder in the First, no, sorry, different thing called something different. That was another show that I did. But anyway, so Dave Girl's like Paula Marshall, what's up? You look sad. And I'm like, oh, another pilot wasn't picked up. It just sucks.And he goes, Paula, when either his studio or something, they didn't like the music or whatever, and he goes, you know what? I did put his arm around me. We're walking down that hallway. And he goes, I just did it myself. I got this set up and I just did it myself. And he goes, you should do it yourself. Why don't you write something? And I'm like, yeah, why don't I? And I'm like, well, because one, I'm not a writer, but he goes, who cares? So because of Dave Grohl, that opened the door to getting ideas out, writing something for me. One thing actually, I mean it went kind of far an idea went very far that I ended up producing with Paul Riser and Betsy Thomas wrote it. This was a little bit before, but it's an outlet for me. I'm still not great at Final Draft. I'm still like, oh, how do I get the thing and the thing and the page? I can't even figure it out half the time. So I've written a few sitcoms, mostly from my point of view, because I want the job, because I wantMichael Jamin:To. So you wrote a single camera sitcom and then you showed it to Paul, and thenPaula Marshall:What happened? The Paul and Betsy one, I met Paul's, I believe his name was Alex, but I can't really remember. I met this guy at a wedding and he was like, oh, you're really funny and blah, blah, blah. I'm a big fan. I'm like, oh, that's nice. Thank you very much. And he goes, do you have any ideas? Do you write? And I go, no, I don't write. I go, I have this idea for a show. And he goes, really? Why don't you come pitch it to me? And my partner? I'm like, great. Okay. He goes, Hollywood. I'm like, who's your partner? He goes, who's your partner? And he goes, Paul Riser. I'm like, what? Okay. So I literally got his number and I'm like, oh my God, I'm going to go meet with Paul Riser. I go meet with Paul Riser. I give him my pitch.He really liked it. And he goes, I like it. I think let's do it. Let's work together. I was like, you couldn't have given me anything that would've made me happier than the fact that Paul Riser liked an idea of mine. It's almost like when I made Diane Keaton laugh in an audition. I literally called my agents and I was like, I'm good. I could die now. So the Paul Riser thing, it was just my idea. I had a lot of say. So I got to produce, I got to make a lot of decisions. It was probably one of theMichael Jamin:Greatest. So you shot it then.Paula Marshall:So we shot it and it wasn't picked up, butMichael Jamin:You sold it to a studio.Paula Marshall:All of them wanted it. This is great. Everyone but Fox, wow.Michael Jamin:Wanted it. That's amazing.Paula Marshall:It was crazy. But you have Paul Riser, I matter your stuff, but when you have someone like a Paul Riser or someone who is respected in Hollywood and has produced before, of course people are going to give them a shot,Michael Jamin:But not necessarily. I mean, they must've really liked it. So you wrote it and you started it?Paula Marshall:I started in it. It was my idea, but I did not write it. Later on, I ended up writing things and pitching, and a lot of people like my stuff, but I really mean should go out a little more aggressively than I do. But I have one right now that we're kind of sending around me and my buddy Jeff Melnick, that he really likes this story. And it was, I won't tell you what it is,Michael Jamin:But that's not nothing. I mean, that's a big achievement, honestly,Paula Marshall:For me. Yeah, I don't write. I still am a terrible speller. I have a reading disorder. I've got this thing where reading is hard for me because the font and the text is very contrasty, so I'm a terrible speller. Thank God for spell check, because otherwise,Michael Jamin:Well, so you're working on another piece for yourself as well then? Yes. I'm impressed.Paula Marshall:I have about three scripts that I've worked on here and there, and I remember I thought, oh, well, this is when I'm going to kill it. I'm going to knock these things out. I'm What happened with Covid? We were so scared. And my daughter was home going to now, whatever, ninth grade or 10th grade. And so it became, that whole time became about helping her find joy. I always said, every day, I'm going to help her get through this. And I really pushed all my stuff back. Any good mom does let everyone eat before you eat. Maybe the way I grew up. So I took care of her and all of that stuff before I focused on me. And then she went to college this year, and you would still think I'm like, Paula, I got to finish these things, which I did. I'm back. I'm back doing it, and I like it. I really like it. There's something about the story, but no one ever taught me to write. So I'm writing from my experience, the years of reading sitcom scripts, IMichael Jamin:HavePaula Marshall:'em in my closet. I have almost every single script, especially the ones that I loved, and I go back to it and I refer back. I'm like, how did they do this? Even setting it up, I'll go back and sneak a peek.Michael Jamin:That's really smart. Was it hard for you when she left the house?Paula Marshall:Jesus. Oh, here's the thing.Michael Jamin:Yeah, make up touching upPaula Marshall:Makeup breakMichael Jamin:Last looks.Paula Marshall:I mean, because she's not in Boston,She's down the road. It feels like if something bad happened, I could be there. I don't have to get on a plane and only one direct flight. There's one school in Connecticut that she got into, and it was a great school, and there's one direct flight at 6:00 AM I'm like, this is never going to happen. And she chose, I was like, whatever you want, wherever you want to go to college, it's your decision. I mean, I'll tell you what I, but it's all up to you. And she chose and it was something that's not too far away. And it's great. I get to see her and it's worked out. It's a win.Michael Jamin:What about the emptiness of the house? I'm going to make you cry now. That's what I feel like. The house is so empty. YouPaula Marshall:Know what? And I think though, Michael, I think if she was in anywhere else, I think if I couldn't get to her, and that's a weird thing as a mom, it's about protecting your child. But yeah, I could cry when I think about certain things. Thanks, Michael. It's about protecting them. And I think that the distance, because we are close, she's still in. She's still here. I don't like cooking dinner as much. I'm sorry, Danny, because I don't really have to. The big change is just her presence, her energy, the thought about, well, what's Maya doing? Or what does she got to do? Now it's not, and one of my scripts is, well, I'll tell you one of my scripts is about what happens when your kid goes away to college? What happens to a woman?Michael Jamin:And go ahead. Can you tell me a little bit?Paula Marshall:So it started a while ago, just like my fear of who am I? What do I do? I mean, yes, I'm an actress, but then I pulled from that and I'm like, well, if I'm not an actress and I don't have a job and everything has been bombed, there's so many places to go. Okay, you've just got to, it's like reinventing yourself, which almost every mom that I know who doesn't have a job, it's very true. I was so fortunate that I could have my cake, my baby, and also work. But a lot of parents, they go to jobs and then they come home and or they don't work at all. And then it's just mom, 100%. And they're probably exhausted and happy. Some of my friends, I feel like they're like, oh, I'm so glad. Finally I get to whatever. And either they're retiring and they get to go travel, and I'm like, no, I'm an actor. I'm looking for a gig, whatever. I don't think actors ever truly retire. I think we don't do.Michael Jamin:I guess it depends on how much you love it and how much it must come on. It's got a wear on you. The downs have to be, I don't know.Paula Marshall:Well, I think probably just like a writer,You have to be able to fill your day when you're not going to be working and making money again. It's why it's smart to save your money and invest it and not buy that fricking mansion. If you got that check. Remember one time I went to the bank and I was depositing, it was before they had the picture phone deposits, a really big check. And it was the biggest check I think I've ever gotten. The first time I got that kind of money on a show and the teller, and again, I looked very young, the teller who didn't look much older than me and took the check,And he looked at the check and he looked at me and he goes, what do you do? What do you do? And I laughed. I go, I'm an actor. I go, but trust me, this thing, this isn't forever. I know it's not forever. So I have to live my life. It's not forever. Because my goal is I never want to lose my house. I always want to be able to afford things. You hear these horror stories about these, you think you got it, and then it shows canceled, and then you can't do that. I've always been kind of smart when it comes to money, but it's hard. It's really hard. WeMichael Jamin:Spoke a little about this because your daughter's interested in acting and you were, this is before we started taping, and what's your advice for her?Paula Marshall:My advice is find a way to tap in and find the truth in anything. And if you can't, then again, you substitute. If it's not connecting, you got to figure out a way to connect to it. It's about being truthful In imaginary circumstances, it's really hard to walk into a room and pretend the thing and crying. You just really have to practice going there. I remember one time, and even in my life, life situations, I will take note of them. One time I was in San Francisco drunker than I've ever been before for whatever reason. And I remember the hotel I was, I think it was during Nash Bridges, and I was like, oh, I'm so wasted. I want to remember what I look like when I'm this wasted. So I, my, I guess I did have a cell phone then. So I took my cell phone or my camera, no cell phone, and I recorded myself being drunk.And it's like that one actor, he would always, Michael, he's an English guy, Michael, I forget his name. He would be like, you can't overdo the acting, but you're trying not to be drunk. Yes. To try to make sure that the words are coming out. And so that's what I did. I literally was like, this is me talking at my, it was the craziest thing. So in life, take advantage again, back to the advice to my daughter. Live these experiences and remember them. And if you cry, if you're sensitive and emotional, fucking use it. There's plenty of people who can't cry at the drop of a hat. I can cry. You give me something to people always know Paula can cry in a scene and even if I don't connect to it again, I substitute and I find a way. I'm an emotional person and the thing I think I have trouble doing is the angry part.I'm not great at being super angry. I don't think I play a lot of those roles like I was doing, I've worked with Steven Weber on his new Chicago Med. I was going to say new show, it is like year nine, but I play his ex-wife. I think it's airing tomorrow as a matter of fact. And there was a scene where I had to come in and I'm yelling at him and I'm like, God, this is so not me. I'm not a yeller. I don't yell even in the middle of a fight. If I'm fighting, I try to get it out and then I cry because I get frustrated because I can't say, I'm not one of those bitchy women wives who are like, I'm just not. Anyway, back to the advice from my daughter, you take life's experiences and you put a little marker on them and you remember them.So when you need them, and I didn't even think I was going to have any children because I started so late and as the actress in me, I just never thought, I dunno, mom and my mom material. I don't know. I was like, you know what? I could really learn a lot as an actress by tapping into that love. I remember you'd see my friends who had kids way, way early and I'm like, God, they love these things. What did that feel like? I never knew what that was and so I took that experience and without it, I don't think I would truly ever be able to play a mom as genuinely as I am. Love because man, I love my kid and I didn't think I'd be like a great mom. I am the best mom I am and I love her and I love being a mom and all of it. So I tell my daughter to practice. Practice, learn your lines very easy and don't go in if you're not prepared. That's kind of a big one. You're not really,Michael Jamin:Just because you said mom was there, that fear the first time you decided to play mom, they say once you play mom like, oh, now she's a mom.Paula Marshall:Well, it's just an age thing, so that was never a thing for me. I'm going to play whatever I look like for sure. So I don't care. I don't care about that at all.Michael Jamin:Interesting. Paula, this has been such a great conversation, so thank you so much. You'rePaula Marshall:Welcome. I had so much fun talking with you.Michael Jamin:Yeah, I mean, I just love talking the craft with people like you. You're a pro and you're just, I don't know, so much wisdom to share, so thank you so much. You'rePaula Marshall:Welcome.Michael Jamin:Thank you.Paula Marshall:I'm enjoying your Instagram posts.Michael Jamin:Oh, we'll talk about that, but alright, well thank you. That's it. That's you're released, but don't go anywhere now we are going to talk some more here. Alright everyone, thank you so much. What a great conversation. Paul. Should they follow you somewhere? Did they do anything or just watch you on something? What do they want 'em to do?Paula Marshall:Depends on when you get this.Michael Jamin:Venmo you the most. What do you want? Venmo? MePaula Marshall:Cash is great. I mean, my Instagram is the Paula Marshall. I guess I'm not really great at all that stuff.Michael Jamin:Are you supposed to be though? Do your agents tell you?Paula Marshall:No, agents don't. But if you have so many followers, then it used to be this thing called a TV Q, which is your TV quotes, how many people know who you are? And that's just, social media has kind of taken that over, really. So people, I think people care how many followers you have. I do notMichael Jamin:Again, but Tbq is not a thing anymore, you're saying?Paula Marshall:I don't think it is. Wow. No. I mean maybe they call it something else, but I know an actress friend of mine was early on in the Instagram thing. She's like, yeah, I got to join Instagram. Yuck. I'm like, yeah, the thing. She's like, I was told I have to have it and you got to pitch. I'm not that self-promoting and I'll say things that are inappropriate and crude and get kicked off of Twitter for it, but whatever. That's who I'm,Michael Jamin:Thank you again. Really, it was such an honor to have you on. Alright everyone, more conversations coming. Thank you so much for tuning in. Until next week, keep creating. You're an actor. Tell your friends about this. You're other actor friends. Alright, everyone, thanks so much.Wow. I did it again. Another fantastic episode of What the Hell is Michael Jamon talking about? How do I do it week after week? Well, I don't do it with advertiser supported money. I tell you how I do it. I do it with my book. If you'd like to support the show, if you'd like to support me, go check out my new book, A Paper Orchestra. It asks the question, what if it's the smallest, almost forgotten moments that are the ones that shape us most. Laura Sanoma says, good storytelling also leads us to ourselves, our memories, our beliefs, personal and powerful. I loved the Journey and Max Munic, who was on my show says, as the father of daughters, I found Michael's understanding of parenting and the human condition to be spot on. This book is a fantastic read. Go check it out for yourself. Go to michael jamin.com/book. Thank you all and stay tuned. More. Great stuff coming next week.
Flower Shop Perfume Co's Isaac Lekach and Lillian Shalom (also real-life husband and wife!) are in the Perfume Room today! We discuss: growing up in the industry (Isaac's dad is former CEO of Parlux); celebrity perfume secrets; why the best perfumes are always a little bit controversial; the viral sensation that is Melanie Martinez's Portals collection; a day in the life of a boutique fragrance house; and of course Cafe Society, and the most canonical perfumes of that era, including some very special ones from their own personal collection! PLUS - I share the scent I wore for jury duty and announce the Feb Smell Club theme! FRAGS MENTIONED: Liis Studied, Victoria's Secret Pear Glace, Christian Dior Bois D'Argent, Issey Miyake, Armani She, Escentric Molecules Molecule 01, Paris Hilton, Ariana Grande, Baccarat 540, Katy Perry Purr, Elizabeth Taylor White Diamonds, Melanie Martinez: Cry Baby, Portals; Giorgio Beverly Hills Giorgio, Le Galion Sortilège, Krigler Liever Gustav 14, Creed Tabarome Millésime, Grand Budapest Hotel L'Air de Panache, Elvis Presley Teddy Bear, Cub Room FOLLOW: @flowershopperfumesco (IG and TT) @lillianshalom @portalsparfums
Alex Ramires sera à la Comédie de Paris à partir du 11 janvier prochain, du jeudi au samedi. Il était l'invité du jour des Grosses Têtes pour présenter son nouveau spectacle, "Panache"... Retrouvez tous les jours le meilleur des Grosses Têtes en podcast sur RTL.fr et l'application RTL.
Original Air Date: August 1st, 2018Oprah sits down with contemporary thought leader and spiritual teacher Panache Desai, who discusses the transformative power of energy, offering step-by-step advice on how we can change our lives by shifting our energy. Panache reveals what he believes are the keys to overcoming anger, rage, fear and insecurity. The young luminary shares his best advice for how we can achieve what he describes as our "infinite potential," the key to unlocking who we are and how to identify what he refers to as our "soul signature." In this interactive conversation, Panache answers compelling questions from listeners, including how to be thankful for the difficulties in our lives, how to experience deeper personal fulfillment at work, and how to maintain self-care while caring for an ailing loved one. Want more podcasts from OWN? Visit https://bit.ly/OWNPodsYou can also watch Oprah's Super Soul, The Oprah Winfrey Show and more of your favorite OWN shows on your TV! Visit https://bit.ly/find_OWN