POPULARITY
Peter and Jesse compare notes from Config, Figma's AI study, Lenny's newsletter survey, and countless conversations to read the current state of design leadership. The signals: existential AI panic has cooled into exhaustion, organizational chaos and leadership churn are the new normal, and design still stumbles on business acumen. Their case for thriving—lead, don't just design, and reclaim design's unfinished mandate.
This show has been flagged as Clean by the host. Hello, again. This is Trey. Welcome to part 8 in my Cheap Yellow Display (CYD) Project series. If you wish to catch up on earlier episodes, you can find them on my HPR profile page https://www.hackerpublicradio.org/correspondents/0394.html It is hard to believe that I started this project and the HPR series to document it more than a year ago. Time flies. Life happens. I spent the last 8 months so focused on work related activities that I had to set the project aside. And once I set it aside, it was difficult to get back to again. The one time I tried, I found that my son's old Windows laptop, which I had commandeered to use for the project, was once and truly dead. We live in a different world now than we did when I began this project. Today, everything is about AI – how it is changing our world, increasing efficiencies, and even displacing certain types of jobs. "Vibe coding" is transforming the way we make software, and now everyone is a developer. Within my organization, we are all being strongly encouraged to learn more about AI and apply it in our daily work. We are blessed to have access to a wide range of training and to powerful tools which support the process. Several colleagues within my organization and outside my organization have recommended Claude Code -- for development, for organization, for brainstorming, and for much more. My role is not that of a developer, and I have had no need for Claude Code at work. There are plenty of other tools for me to use. But at home, I thought... I could install Claude Code at home to experiment with and to learn. And then it hit me. I wonder if I could use Claude Code to help me with my stalled CYD project. "Hello, my name is Trey, and I am a fraud." OK. I don't think I am a fraud, but having never used such a powerful tool to help me code, I feel a little bit like a fraud, with Claude doing the work for me. Let's talk through what we did. As I mentioned, I was unable to use the laptop on which I created the original GUI code. But no worries, because It was all on GitHub, right? So, I began by trying to install Claude Code on one of my Ubuntu machines. That failed miserably, and all the instructions I found online recommended running it on Windows. So I transitioned to installing Claude Code on a freshly built Windows 10 system using some old hardware which will not support Windows 11. Surprisingly, It seems that Claude wants to run within Ubuntu on Windows Subsystem for Linux (WSL). Once I went through all the hoops for installing and setting up my basic subscription, I got to work. I created a new directory to use for all my project files, and another one for Claude to write all its output files to. Everything I have read and heard about using Claude Code for a project like this recommended beginning by using Claude to create the project plan. So my first prompt was as follows: "I am building a project using an ESP32 cheap yellow display. The final goal is to have a device with a graphical user interface which will allow me store several text messages, each assigned to their own specific button. Then, when one of the buttons is pressed, the message will be converted into morse code, and the message will be sent by blinking an onboard LED. I already have the initial design for the GUI coded in my github repository. Please construct a detailed step by step plan for building this application" I wanted to keep it simple at the beginning, so even though I plan to use an opto-isolated relay for the output, I am starting out using the built in LED. Claude asked me for the URL for my Github repository, and I provided it. After thinking for a bit, it produced a project plan. CYD Morse Sender — Step-by-Step Build Plan What You Already Have - 3 fully designed LVGL screens (Send, Config, Keyboard) - 7 send buttons with green styling on the Send Screen - Speed slider (5–30 WPM) and program slot dropdown on Config Screen - Text area + LVGL keyboard widget on Keyboard Screen - Display driver and touchscreen hardware initialized (but touch read was stubbed out) --- Phase 1: Fix Touchscreen Input Initialize the XPT2046 on VSPI, replace the hardcoded touched = false with real touch data, calibrate raw ADC coordinates to screen pixels, and verify all three nav buttons transition screens correctly. Phase 2: Persistent Message Storage Use Preferences.h / NVS to store 7 messages ("msg0" – "msg6") that survive power cycles. Load on boot and populate send button labels. Phase 3: Config Screen — Slot Selection & Speed Wire the Program dropdown to g_selectedSlot, wire the Speed slider to g_wpm with a live WPM label, and wire the Set button to clear the text area and navigate to the Keyboard Screen. Phase 4: Keyboard Screen — Capture and Save Text On keyboard OK (LV_EVENT_READY): read the text area, save to NVS, update the send button label, navigate back. On Cancel: navigate back without saving. Phase 5: Morse Code Engine Build morse.h with the full A–Z / 0–9 lookup table, a textToMorse() converter, and Paris-standard timing (unit_ms = 1200 / wpm). Phase 6: Non-Blocking LED Transmission State machine (IDLE / LED_ON / LED_OFF) driven by millis() in a morseUpdate() function called every loop — no delay(). LED on GPIO 17 (blue). Phase 7: Wire the Send Buttons Each button calls startMorse(getMessage(slot)) if not already transmitting. Disable all send buttons during TX; re-enable when the state machine reaches the end. Phase 8: Integration & Polish Stop button, WPM persistence, empty-slot guard, serial debug output, final touch calibration, end-to-end test checklist. --- Recommended order: Phase 1 → 2 → 7 (partial) → 5 → 6 → 7 (full) → 3 → 4 → 8 This was wild! Claude determined exactly how far along I was in the project, and also alerted me to the fact that the "touch read was stubbed out". Ugh. This means that the files I had uploaded to GitHub were my original GUI files (Episode 05 – HPR4532 - https://hackerpublicradio.org/eps/hpr4532/index.html ) and not the ones that I finally got working properly (Episode 07 – HPR4624 - https://hackerpublicradio.org/eps/hpr4624/index.html ). That was my own fault. Did I mention that I don't get Git? I REALLY need to learn to properly use Git! But, we have a plan, broken down by eight numbered phases. And they seem to address all the functionality I wanted with a few additional things I had not thought about. Interestingly, even though these phases are sequentially numbered, Claud recommended that we approach them in a bizarre order: Phase 1 → 2 → 7 (partial) → 5 → 6 → 7 (full) → 3 → 4 → 8 . Alright. Let's see what we can do. The first phase is to fix the touchscreen input. Claude took me through it step-by-step, asking as it needed to read specific project files. Finally, it wrote a new ui.ino code file to my speficied output directory for me to test. I copied it into the correct file location, said a quick prayer, compiled in Arduino IDE, and downloaded to the CYD. Well, that is... interesting. The display looked nothing like it was supposed to. There were vertical green bars with smaller dashed green vertical stripes in them. I will include a picture in the show notes so that you can see what it looked like and why it was so difficult to describe. I spent the next hour or so trying to explain what I was seeing to a chat bot. Claude recommended potential fixes which either did nothing or made the situation worse. I began questioning whether this was a good idea, how people actually gained efficiencies talking to a bot, and even several life choices. Then I had a thought. I prompted Claude: If I were to take a picture of the screen on the cheap yellow display and copy it into the output folder, would you be able to analyze it to better determine what is wrong and how to fix it? Shockingly, Claude answered in the affirmative, and told me to copy the picture to the output folder and let it know when to proceed. It analyzed the picture and more of the supporting files it had copied from my GitHub, asking each time if it could access that file. It determined that my original code was written for a flavor of LVGL version 8 and I was now using LVGL 9.5. It recommended changes, and then asked permission to make those changes, file by file. .h files & .c files, Finally, I just gave it permission to edit the files in the project folder without asking for permission for each file each time. Claude was still explaining each change, showing me exactly what would be changed, and asking for permission, so that I could review all of the changes. But now it was not asking additional permission to write to each of the impacted files. Next, Code compiled and downloaded. Different screen, but not right. Again, I took a picture and gave it to Claude to analyze. So, Claude paused and altered the code to generate a specific test pattern overtop of the GUI. The test pattern was supposed to cover the entire rectangular screen. But parts of the pattern were in a square on the screen and parts were not. Another photograph and analysis, told Claude that there were some rotation/screensize issues. We repeated this several times. Some resulted in improvement, and others did not. This is the point where I noticed something interesting. Not about Claude, specifically, or about the app. But I noticed something interesting about myself and about the process. Previously, when I was working through some of these challenges without Claud, I found myself becoming more and more stressed, frustrated, and angry, until I found a solution. Then another problem would repeat the cycle. Success in the end was great, but the emotional extremes during the process were not always pleasant. Now, I was effectively managing the project, and relaying information to the resource responsible for fixing the problems -- a very different experience. But I also ran into another issue. Claude became absolutely certain that the problem revolved around the device not accurately knowing where the 4 corners of the screen were. But in reality, the output of the test pattern was rotated 90 degrees from the actual screen. It took several iterations of me insisting that the problem had to do with screen orientation and not corner coordinates. It was interesting to experience the tool doubling down on an obvious mistake, but we finally resolved that. Again, while it was frustrating, it was much less stressful. We proceeded to Phase 2: Persistent Message Storage where we ensured that the button labels on the send screen were stored in the devices persistent storage, so that, when they are edited to contain the message they should send, that information would survive a reboot. Next, we combined elements of Phase 5: Morse Code Engine , Phase 6: Non-Blocking LED Transmission , and Phase 7: Wire the Send Buttons together. Building the morse code engine was an area I had been thinking about for a while. I already had working parts of something similar in the Arduino practice oscillator I have referenced a few times in this series. The code for the practice oscillator may be found on my GitHub, but it was all based on original code from jmharvey1, with my only contribution being making pin assignments variables so that the code could easily be ported to different devices. So, I was happy that we were building the morse code engine directly. The code for it may be found in morse.h, which uses a constant character lookup table to define each character. Without any specific direction from me, Claude used the PARIS timing methods I have already described within Episode 6 of this series. It defines timing for DOT, DASH, LETTER_GAP, and WORD_GAP, and all are based on a simple calculation of 1200 ms / the number of words per minute (WPM) we wish to transmit. Along the way, we discovered that, if we tried to use the delay() function, it would crash the program due to a conflict with the LVGL timer used for touchscreen inputs. Claude altered all the delays accordingly. Then, Phase 3: Config Screen — Slot Selection & Speed allowed us to configure the WPM we wished to use in addition to selecting a specific Send button to reconfigure. This forced us to work on Phase 4: Keyboard Screen — Capture and Save Text which is used to type the entries for each Send button. At this point, I also decided that we would want to also use the Keyboard Screen to send ad hoc morse as we typed it. During this phase we discovered several bugs which seemed to cause random freezes. Careful troubleshooting with messages output to the Arduino IDE's serial console helped us narrow down the causes and remedy them. Finally all the tests worked and I am able to merrily pre-configure macro buttons with custom messages and use the CYD to send the morse code for those messages to the on-board LED at whichever rate I specify. I have noticed in my presentation of this narrative that I repeatedly slip into the first person plural terms "we" and "us" instead of the first person singular terms "I" and "me". I have unconsciously personified Claud and recognized it as an integral part of my (formerly one person) development team. I finally configured Claude to connect to my GitHub repo and upload all the files and documentation. We additionally created a CYD-Narrative.md file which describes in more detail all the work which was done on the project. I still do not 100% get git, but we are successfully using it. You can find all these files in my GitHub repo ( https://github.com/jttrey3/CYD_MorseSender ) where they are shared under a GPL 3.0 license. There are still several additional steps I plan to complete in the next few months. 1. I will be integrating an opto-isolated relay which will allow me to plug the device into the straight key input on any amateur radio. This will require a battery power source, charge controller, and more hardware. I... make that "We" (Claude & I) will be modifying the code to support an audio side tone through an attached speaker when sending code We will add an output selection switch to the config page to choose any combination of speaker, relay, or LED as output. We will develop a downloadable firmware which I hope to share with the Cheap Yellow Display community. If you can think of any additional features you would like to see integrated, please drop me an email using the address in my HPR profile. I may also work with a friend to attempt to 3d print a case for the entire contraption, and I will be sure to record additional episodes sharing the process. I have learned so much throughout this project, about the CYD, ESP32, GUIs, Claude Code, GitHub, and most of all, about myself. Does using AI to develop this code make me a fraud? It still feels like it in some ways. Does it make me more productive? ABSOLUTELY! I made consistent forward progress when I only had 30-60 minutes each day to work on it, and everything discussed in this episode was completed in less than a week. If I had been able to work on it for a few hours uninterrupted, it may have only taken me 3-5 hours. Does it empower and inspire me to do more projects like this? 100% I feel like I had support working with me the whole way. I was less stressed overall, and it had less of an impact on the amount of and quality of time I spent with my family. I will be wrapping up this series soon, without any more 6 month gaps, I hope. Until next time... Provide feedback on this episode.
Live recording of the fortnightly podcast Design Systems WTF (back for season two!), where Luke Murphy and Michelle Chin attempt to combat all the amazing wtf in design systems. In each episode, they answer a single question around design system troubles with a Q&A from the live audience.Config 2026 happened in San Francisco last week, so we got together straight after the announcements to discuss what the announcements mean for design systems folks - from code on the canvas, to agents, skills, and connectors, to Figma Motion. What will these announcements mean for the work we do day to day?Show notesBlog post - What do the Config 2026 announcements mean for design systems?
Davy returns from Config with a backpack full of new Figma features. Also our annual discussion of were these releases for us?
El mundo del gaming hizo gran escándalo esta semana después de que PlayStation anunciara que dejará de hacer juegos físicosTambién hablamos de CONFIG y de WhatsApp que ya tiene nombres de usuario
Talks discussed:Out of sync, on purpose: desktop design after mobile wonThe canvas is not dead ft. Catt Small (Dropbox)The invisible mechanisms in your interfaces ft. Johannes Mutter (mutter.co)Dense by design ft. Matthew Ström-Awn (mu.design)Usernames on Instagram: how a craft fix became an identity crisisEveryone's still eating: building Notion's design systemAnthony's blog post: https://anthonyhobday.com/blog/20230428Hosts:Anthony Hobday, Generalist Product Designer: https://twitter.com/hobdaydesignKatie Langerman, Design Technologist: https://twitter.com/KatieLangerman
In this quick one, Phil returns from San Francisco to join Barry and discuss all the latest and greatest features announced at Config 2026, Figma's annual product conference. We discuss how Figma is enabling global teams to better collaborate and enhance their work with AI, and how they are incorporating more and more of the entire design workflow in their canvas with releases like Motion, Figma Weave, and Code Layers. We also discuss how these features impact token usage and licensing costs for teams, and for clients, who have invested heavily in the platform. We wrap by discussing how Figma is investing in the community, specifically the international community, how they need to continue meeting teams where they are. Enjoy!Drinks: Devil's Purse Brewing Co. Sichuan Wit, Zero Gravity Craft Brewery Green State LagerLinks: www.figma.com
This week we are going behind the scenes of Config 2026 with Loredana Crisan (Figma's Chief Design Officer) https://www.linkedin.com/in/loredanacrisan/We talk about Figma's vision for AI, why design is having “an identity crisis and a renaissance at the same time,” and what it means to use AI to express what's already in your head (not outsource creativity to it).It's a clarifying conversation about taste, tools, and the future of design
Is Figma holding design systems back?Live recording of the fortnightly podcast Design Systems WTF (back for season two!), where Luke Murphy and Michelle Chin attempt to combat all the amazing wtf in design systems. In each episode, they answer a single question around design system troubles with a Q&A from the live audience.It's the month before Config! So we're diving into a spicy topic - is Figma helping or hindering design systems? Is the future of design systems a world where Figma doesn't exist? Or are design tools like Figma essential for the work we do in design systems day to day?Show notesFigma Weave (acquisition / launch)Figma Make Kits announcementThe State of AI in Design Systems (zeroheight)Design Systems Report 2025 (zeroheight)UX Tools Design Tools SurveyConverge (zeroheight)Luke Murphy on BlueskyMichelle Chin on Bluesky
Episode web page: https://bit.ly/42TFjM4 Episode summary: In this episode of Insights Unlocked, Manú Bartlett speaks with Pedro Hernandez, advocacy manager for EMEA and Latin America at Figma, about how AI is reshaping design, leadership, and the future of creative work. Drawing from more than 15 years of experience across UX, product design, and design operations, Pedro shares why the industry is moving beyond a narrow focus on speed and toward a deeper balance between experimentation, craft, and human-centered thinking. Pedro explores how design communities across Europe and Latin America are adapting to AI in different ways, why leaders must rethink how they evaluate design work in the age of rapid prototyping, and how “craft” now means being intentional, critical, and thoughtful when collaborating with AI tools. He also discusses the growing importance of soft skills, curiosity, and research as teams become more multidisciplinary again. The conversation also dives into how leaders can stay connected to customer needs while navigating AI-driven workflows, why experimentation matters at every level of an organization, and how Figma is researching what design leaders truly need from modern collaboration tools. You'll learn: How AI is changing the relationship between speed, experimentation, and design craft Why the best design leaders are learning to balance rapid production with intentional decision-making What “craft” means in the era of AI-powered design workflows How Latin American and European design communities are approaching AI differently Why curiosity, research, and soft skills are becoming more important in modern product teams How leaders can stay closer to customers while adopting new AI tools and workflows Why the future of design may look more multidisciplinary and collaborative again Resources & links Pedro Hernandez on LinkedIn (https://www.linkedin.com/in/pedrohernandez/) Figma's Config (https://config.figma.com/) Figma's State of Design report (https://www.figma.com/state-of-design/) Manú Bartlett on LinkedIn (https://www.linkedin.com/in/manubartlett/) Nathan Isaacs on LinkedIn (https://www.linkedin.com/in/nathanisaacs/) Learn more about Insights Unlocked: https://www.usertesting.com/podcast
Robinhood files confidentially for its second venture fund, this time targeting growth as well as early-stage startups. Also, Samsung, Hyundai and LG just bet on the startup that wants to be robotics' data backbone. Learn more about your ad choices. Visit podcastchoices.com/adchoices
PhoneBoy features the following posts from the CheckMates community:Certificate and CRL validation fails from March 1, 2026Effective Network Management with SD-WAN January 2026: Video, Slides, and Q&ANano Agent / Nano Services in Quantum SD-WAN: the Control PlaneTech Tip - log ingestion problem (change log level to reduce log data)Session logs not showing Xlate informationCVE-2025-53057 and Check PointGA Announcement: API Request Step & Webhook Trigger are now available in PlayblocksR82.10 Video SeriesTroubleshooting Logging
SANS Internet Stormcenter Daily Network/Cyber Security and Information Security Stormcast
2026 64-Bits Malware Trend https://isc.sans.edu/diary/2026%2064-Bits%20Malware%20Trend/32718 A Comparative Security Analysis of Three Cloud-based Password Managers https://zkae.io Infostealer Infection Targeting OpenClaw Configurations https://www.infostealers.com/article/hudson-rock-identifies-real-world-infostealer-infection-targeting-openclaw-configurations/
Focus sur l’IA et son impact, écrans Samsung, projet Neom. Discussions sur Action Mesh, Omnitransfer, et Prism d’OpenAI. Quelques mots sur Intel Panther Lake et les écrans de Samsung. Me soutenir sur Patreon Me retrouver sur YouTube On discute ensemble sur Discord Modèles IA de la semaine ActionMesh, Omnitransfer, et vidéos qui s’auto raffinent. Engram, du SQL dans ton LLM. ConceptMoe et raisonnements visuels. Maitres linéaires : les IA ont des valeurs très malléables. Principe Anthropic : qui enfume qui ? Anthropic et crock des parts de marchés… OpenAI lance Prism ! On va en voir de toutes les couleurs… Twentieth Century boy : Ami arrive à Paris. Config de canard : DuckDuck go avec ou sans IA ? Pas de Braga pas de chocolat Microsoft à fond dans l'IA ? Maia pas de problème ! Samsung, meilleure société écran ? Panthère vs gorgone : fight ! A Starlink to the past : qui paye la facture déjà ? Les fuites, ça pose toujours problème Neom mais sans cerveau, MBS suit la mode. Beyond meat… effectivement très au-delà de la viande. Participants Une émission préparée par Guillaume Poggiaspalla Présenté par Guillaume Vendé
Ever feel the urge to write out calculations in your code to make them "self-documenting"?In the latest episode of the No Compromises podcast, we discuss why inline math in configuration values is a habit worth breaking.Aaron argues that if a value never changes, there's no reason to calculate it every time. A well-placed comment can explain how you got the number without the unnecessary overhead.We also cover how comments can clarify units like seconds versus milliseconds, why this thinking applies beyond config files, and how questioning small habits can improve your code overall.(00:00) - How many seconds is five minutes? (01:45) - The problem with inline config math (03:45) - Using comments instead of runtime calculations (05:30) - Why questioning habits improves code (07:00) - Silly bit Want a second set of eyes on your Laravel project?
I cover issues in Intune relating to Firewall configurations, the retirement of MDT, a reboot loop issue on Cisco switches, a software update from hell story plus much more! Reference Links: https://www.rorymon.com/blog/firewall-config-issues-mdt-retirement-software-update-from-hell/
This show has been flagged as Clean by the host. Hello, again. This is Trey. Welcome to part 5 in my Cheap Yellow Display (CYD) Project series. If you are still listening to me ramble about this project, thank you. If you wish to catch up on earlier episodes, you can find them on my HPR profile page https://www.hackerpublicradio.org/correspondents/0394.html To review, My project is to build a portable morse code "Keyer memory" which can be connected to any of my HF transceiver radios by simply plugging it in to the code key input port. Then I could transmit stored messages by simply touching their specific icon on the touch screen. I also want to be able to program each macro individually from the graphical user interface (GUI). To do this, I need to learn how to build a GUI. Most of the CYD resources I have been referencing recommend using Squareline Studio for GUI development on the CYD. Sadly, Squareline Studio is not open source. If any of you have experience with a good, open source alternative to Squareline Studio, please record a show to help the rest of us. Squareline does have a free trial and a free single user / single computer license, which I am using for this project. It will run on Windows, Linux, and Mac. After watching several videos about using the CYD with Squareline, I started to outline the functionality I needed. Squareline provides a wide range of pre-configured boards and interfaces to choose from, in addition to widgets and controls which you can drag onto your screens, and it will automatically generate the supporting code in the background. The initial page needs to have the macro buttons, with labels for the message they will send when pressed. There also needs to be navigation buttons to move from one page to others. Another important page will be the configuration page, where the user can store the contents of each macro and set the speed at which code will be sent. I would like to have a keyboard page where the user can type a custom message and send it. I made a few GUI sketches on post-it-notes, then I installed Squareline Studio on my Ubuntu laptop to start designing. There is a bit of a learning curve. Even with guide videos, I found the user experience to be... challenging. Their own GUI leaves much to be desired. It was not designed to run on the laptop's screen size/resolution. I had to switch to a much higher resolution monitor and rearrange frames within the app itself in order to see many of the controls. Button size adjustments, alignments, and label text did not work quite as expected. Getting things sized and aligned properly took quite a bit of fiddling. The text displayed on a button is a separate object from the button itself, so I have had to put some thought into object naming so that I can write code which will change button labels dynamically. I am including some screenshots from Squareline for the interface I designed. One great feature is that you can define actions and conditions for objects in your project. For example, there are buttons on the left which will navigate to specific screens. I defined actions within Squareline, such that when the specific navigation button is pressed, it will change the button appearance to look like it has been pressed and will then scroll left or right to a specified screen. Actions were also valuable for the Speed (WPM) slider on the Config screen. When this slider is moved left and right, the GUI will change the actual number for WPM to the right of the slider. Next, there is a simulator function which can be used to test how well the GUI works. It took some trial and error, but I was able to build and successfully test, navigational actions and the WPM slider. As I was working on building the afore mentioned WPM slider, and thinking about the default words per minute of Morse to use, my ADHD interrupted me (As usual). I decided to change the default speed that I use for the Arduino Nano based Morse code practice keyer which I keep on my desk. You can learn more about this keyer in episode 3 of this series. And we will also discuss Morse code speed in a future episode in this series. The original code (As found on https://github.com/jmharvey1/ArduinoCPO ) specified 12 words per minute (WPM) as the default speed, with buttons to increase or decrease this. However, I am practicing at 20 WPM. Every time I turn on the practice set, I need to turn up the speed and guess when I am close to 20. I went ahead and opened the PracticeOscilator project in Arduino IDE and updated the wpm variable to a value of 20. No, you will not see this change reflected in my own GitHub repo because: A) I wanted to test it locally first B) 20 WPM may be a little fast for a default C) I do not use git the way that it is meant to be used, or the way I SHOULD be using it, with pull requests and all. Bad Trey. D) I was distracted ANYWAY, the reason I bring this up is that it is the first time I have used the Arduino IDE to program a board with this system since I upgraded from Ubunto 20.04 to Ubuntu 22.04. Try as I might, I was not able to get the Arduino Nano's USB port to be recognized in Linux so that I could upload the updated keyer code. I spent several days troubleshooting, using other Arduino devices, different USB ports, and different cables, all to no avail. If anyone has any recommendations, I am open to suggestions. So, I dug out my son's old Windows 10 PC and started again. I had to install the Arduino IDE, load all the necessary libraries, and my code from Github (Which I had to manually change once again, because I don't fully get git). Finally I was able to update the Arduino Nano with its new code, and it works perfectly. But this revealed the same problem for the CYD. I also could not get it to connect over USB to my Ubuntu system. Time to migrate the entire project to Windows. My next step was to install Squareline Studio on Windows. Here, I ran into another snag, as my trial license was only for one system, so I had to uninstall Squareline from Linux before I could activate the license on Windows. Did I mention that I would love to find an open source, free software product to use instead? If you know of one, please ping me or post a comment. I wasted more time trying to get the GUI project I had written on the Linux machine imported into Squareline on Windows, all the while thinking of improvements I could make if I started again from scratch. It would not load, and would not load. In the end, I started all over again. After much blood sweat and tears, my GUI code was working again, and this time in Windows. I was able to run it in the simulation mode and move from page to page successfully and also use the WPM slider. I exported the UI from Squareline, and I loaded the code it generated into a new project within Arduino IE. Now was the moment of truth. I followed instructions found on the Pang YouTube channel video [ESP32 + LVGL] Configuration input device rotary encoder ( https://www.youtube.com/watch?v=aGM6gu9OpbA ). I connected the CYD and uploaded the code. SUCCESS!! You can see my "Send" screen loaded perfectly! Now to try other screens. Wait. Drat. It does not seem like my navigation buttons work. Actually, it does not appear that the touch screen is responding at all. I spent the next several days trying to figure out what went wrong. I checked and double checked interrupt and configuration settings (Such as those described in another of Pang's videos, [CYD + LVGL] Configuration Cheap Yellow Display | Easy Guide ( https://www.youtube.com/watch?v=qmR-mjJVumU ). Nothing worked. I came to realize that I bit off more than I could chew, and I should NOT have started with such an ambitious project. Instead I should have started with a simple equivalence of "Hello World", where I could build and test simple functionality to make sure I knew exactly what I was doing, then expand on it. Lessons learned, and a good stopping point for this episode. I am open to your feedback on what you would recommend, what I should do differently, etc. You can post simple feedback as a comment or send me an email using the address in my HPR profile. As usual, if your feedback is more than a sentence or two, you might want to record it as an episode so that other listeners can benefit from it as well. Time for an espresso. Maybe I will make it a double. Or even a triple! Provide feedback on this episode.
On this episode, I cover questions about enterprise security issues relating to the recent heist at the Louvre, another example of technical debt at an organization costing millions, zero day vulnerabilities patched by QNAP and more! Reference Links: https://www.rorymon.com/blog/tech-debt-questions-for-louvre-config-man-update-cadence-to-change-win11-market-share-on-the-rise/
Send us a textA single Windows shortcut can open the door to espionage—and that's exactly where we begin. We break down a fresh LNK exploit campaign to show how hidden command execution and DLL sideloading slip past busy teams, then pivot into the core defense most organizations underuse: disciplined configuration management. From baselines and version control to change boards and rapid rollback, we map the habits and tools that turn chaos into control.We walk through building secure, realistic baselines with CIS Benchmarks and NIST 800‑128, and why “simple and enforceable” beats “perfect and ignored.” You'll hear how least privilege for change stops shadow tweaks, how EDR and application firewalls catch command and control, and how automation with Ansible, SCCM, and Terraform keeps fleets consistent. We spotlight the CMDB as a living source of truth—only valuable if you maintain ownership, automate updates, and report on drift so leadership and risk teams can act.Change governance becomes your stabilizer. A change control board aligns IT, security, operations, risk, and compliance before big moves, while an emergency change advisory board authorizes fast action for zero‑days and incidents with a strict post‑implementation review. We break down the full change lifecycle—request, impact analysis, staging, implementation, verification, CMDB updates—and the common pitfalls to avoid, including undocumented changes, brittle rollbacks, and ignoring post‑change scan results. Expect practical guidance on when to auto‑patch Windows, how to iterate quarterly without overengineering, and what metrics prove progress.If you're aiming to master CISSP Domain 7 or just want fewer outages and faster recovery, this conversation gives you a clear blueprint to reduce attack surface and increase stability. If it helps, share it with a teammate, subscribe for more deep dives, and leave a quick review so we can keep improving for you.Gain exclusive access to 360 FREE CISSP Practice Questions at FreeCISSPQuestions.com and have them delivered directly to your inbox! Don't miss this valuable opportunity to strengthen your CISSP exam preparation and boost your chances of certification success. Join now and start your journey toward CISSP mastery today!
Can you just use Claude Code or another LLM to "vibe code" your way into building an AI SOC? In this episode, Ariful Huq, Co-Founder and Head of Product at Exaforce spoke about the reality being far more complex than the hype suggests. He explains why a simple "bolt-on" approach to AI in the SOC is insufficient if you're looking for real security outcomes.We speak about foundational elements required to build a true AI SOC, starting with the data. It's "well more than just logs and event data," requiring the integration of config, code, and business context to remove guesswork and provide LLMs with the necessary information to function accurately . The discussion covers the evolution beyond traditional SIEM capabilities, the challenges of data lake architectures for real-time security processing, and the critical need for domain-specific knowledge to build effective detections, especially for SaaS platforms like GitHub that lack native threat detection .This is for SOC leaders and CISOs feeling the pressure to integrate AI. Learn what it really takes to build an AI SOC, the unspoken complexities, and how the role of the security professional is evolving towards the "full-stack security engineer".Guest Socials - Ariful's LinkedinPodcast Twitter - @CloudSecPod If you want to watch videos of this LIVE STREAMED episode and past episodes - Check out our other Cloud Security Social Channels:-Cloud Security Podcast- Youtube- Cloud Security Newsletter - Cloud Security BootCampIf you are interested in AI Cybersecurity, you can check out our sister podcast - AI Security PodcastQuestions asked:(00:00) Introduction(02:30) Who is Ariful Huq?(03:40) Can You Just Use Claude Code to Build an AI SOC?(06:50) Why a "Bolt-On" AI Approach is Tough for SOCs(08:15) The Importance of Data: Beyond Logs to Config, Code & Context(09:10) Building AI Native Capabilities for Every SOC Task (Detection, Triage, Investigation, Response)(12:40) The Impact of Cloud & SaaS Data Volume on Traditional SIEMs(14:15) Building AI Capabilities on AWS Bedrock: Best Practices & Challenges(17:20) Why SIEM Might Not Be Good Enough Anymore(19:10) The Critical Role of Diverse Data (Config, Code, Context) for AI Accuracy(22:15) Data Lake Challenges (e.g., Snowflake) for Real-Time Security Processing(26:50) Detection Coverage Blind Spots, Especially for SaaS (e.g., GitHub)(31:40) Building Trust & Transparency in AI SOCs(35:40) Rethinking the SOC Team Structure: The Rise of the Full-Stack Security Engineer(42:15) Final Questions: Running, Family, and Turkish Food
Jake and Michael discuss all the latest Laravel releases, tutorials, and happenings in the community.Show linksA New Local Error Page in Laravel 12.29 Infinite Scroll in Inertia v2.2 Laravel MCP Beta is Released Filament v4.1 is here! PrettyPHP is an opinionated code formatter for PHP Meet LaraUtilX: A Utility Toolkit Every Laravel Developer Needs Powerful Debugging for PHP & Laravel with LaraDumps Laravel Starter Kit by Nuno Maduro A Laravel Package to Integrate with Google Gemini Build Terminal UIs in PHP With ANSI Kit TutorialsDebugging and Logging in Laravel ApplicationsIntroduction to MongoDB & Laravel-MongoDB SetupThe Hidden Cost of MySQL Defaults in Laravel AppsLivewire Session Properties for Persistent Component StateLivewire wire:click.prevent for Form HandlingTesting Your Reporting System with Laravel Factories and AssertionsProfiling Laravel: How to Find Hidden Performance KillersLaravel Collection Pluck Method Gains Closure Transformation PowerLaravel Configuration Arrays Made Simpler with Config::collection()Laravel Custom Validation Rules for Enhanced Data Integrity
From finely tuned to total config carnage. We review listener homelabs to share what works, and what really doesn't.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:
From finely tuned to total config carnage. We review listener homelabs to share what works, and what really doesn't.
Figma's (FIG) IPO was one of the most anticipated in tech, and the stock price action was CRAZY! After the initial fervor, the price has pulled back significantly. Is this the buying opportunity investors have been waiting for?CSI is taking a deep dive into Figma's first earnings report as a publicly traded company to find out.In this video, we cover:✅ New Acquisitions: Figma is already putting its IPO cash to work, acquiring Payload (a content management software company) and Modify (an AI-focused model context protocol).✅ The Big Vision: How these acquisitions fit into Figma's goal to become the go-to platform for creating usable software, easily and intuitively.✅ The Financials: We break down Q2 ✅ Future Outlook: Management is guiding for a growth slowdown to 33% for Q3 and taking a hit on margins for the sake of expansion. Is this a red flag or a smart long-term play?✅ The Verdict: Is Figma stock a buy, sell, or hold at its current price? We give our final analysis and key takeaways.Timestamps:[00:00:00] What Figma Does: A review of Figma's end-to-end platform that helps companies with fast, agile software development from ideation to shipping.[00:02:45] Q2 Acquisitions: Breaking down the purchases of Payload, a Content Management System (CMS), and the AI coding startup, Modify.[00:04:45] AI Strategy & New Products: How Figma is using AI to be a disruptor with new tools like Figma Make, Draw, Sites, and Buzz, which were announced at its Config developer conference.[00:06:45] Model Context Protocol (MCP) Explained: Understanding how Figma connects designs to LLMs for coding assistance, with its Gen AI product housed on Amazon AWS.[00:08:30] Q2 Earnings & Valuation: Analyzing the first public report with $250M in revenue and a $26B+ market cap, compared to Adobe's failed $20B acquisition offer from three years prior.[00:10:30] CapEx & Hidden Costs: Exploring why even an "asset-light" company like Figma spends millions on physical hardware and cloud infrastructure from partners like AWS.[00:12:30] Future Financial Guidance: Breaking down the outlook for Q3 and the full year, including an expected growth slowdown and lower margins to fuel expansion.[00:14:05] Our Investment Strategy: Why we are being patient due to the high valuation and would only consider a very small Dollar-Cost Averaging (DCA) approach if we were to buy now.What are your thoughts on Figma's strategy? Let us know in the comments below!
Can't get enough Linux? How about multiple kernels running simultaneously, side by side, not in a VM, all on the same hardware; this week it's finally looking real.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:
Topics covered in this episode: * pypistats.org was down, is now back, and there's a CLI* * State of Python 2025* * wrapt: A Python module for decorators, wrappers and monkey patching.* pysentry Extras Joke Watch on YouTube About the show Sponsored by us! Support our work through: Our courses at Talk Python Training The Complete pytest Course Patreon Supporters Connect with the hosts Michael: @mkennedy@fosstodon.org / @mkennedy.codes (bsky) Brian: @brianokken@fosstodon.org / @brianokken.bsky.social Show: @pythonbytes@fosstodon.org / @pythonbytes.fm (bsky) Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Brian #1: pypistats.org was down, is now back, and there's a CLI pypistats.org is a cool site to check the download stats for Python packages. It was down for a while, like 3 weeks? A couple days ago, Hugo van Kemenade announced that it was back up. With some changes in stewardship “pypistats.org is back online!
Jean-François Poulin reçoit Michael Descharles (Rona) et Damien Menn (Lyft), membres de Friends of Figma Montréal, de retour de la conférence Config en Californie. Ensemble, ils commentent les nombreuses nouveautés annoncées.
Real-time Feature Generation at Lyft // MLOps Podcast #334 with Rakesh Kumar, Senior Staff Software Engineer at Lyft.Join the Community: https://go.mlops.community/YTJoinInGet the newsletter: https://go.mlops.community/YTNewsletter// AbstractThis session delves into real-time feature generation at Lyft. Real-time feature generation is critical for Lyft where accurate up-to-the-minute marketplace data is paramount for optimal operational efficiency. We will explore how the infrastructure handles the immense challenge of processing tens of millions of events per minute to generate features that truly reflect current marketplace conditions. Lyft has built this massive infrastructure over time, evolving from a humble start and a naive pipeline. Through lessons learned and iterative improvements, Lyft has made several trade-offs to achieve low-latency, real-time feature delivery. MLOps plays a critical role in managing the lifecycle of these real-time feature pipelines, including monitoring and deployment. We will discuss the practicalities of building and maintaining high-throughput, low-latency real-time feature generation systems that power Lyft's dynamic marketplace and business-critical products.// BioRakesh Kumar is a Senior Staff Software Engineer at Lyft, specializing in building and scaling Machine Learning platforms. Rakesh has expertise in MLOps, including real-time feature generation, experimentation platforms, and deploying ML models at scale. He is passionate about sharing his knowledge and fostering a culture of innovation. This is evident in his contributions to the tech community through blog posts, conference presentations, and reviewing technical publications.// Related LinksWebsite: https://englife101.io/https://eng.lyft.com/search?q=rakeshhttps://eng.lyft.com/real-time-spatial-temporal-forecasting-lyft-fa90b3f3ec24https://eng.lyft.com/evolution-of-streaming-pipelines-in-lyfts-marketplace-74295eaf1ebaStreaming Ecosystem Complexities and Cost Management // Rohit Agrawal // MLOps Podcast #302 - https://youtu.be/0axFbQwHEh8~~~~~~~~ ✌️Connect With Us ✌️ ~~~~~~~Catch all episodes, blogs, newsletters, and more: https://go.mlops.community/TYExploreJoin our Slack community [https://go.mlops.community/slack]Follow us on X/Twitter [@mlopscommunity](https://x.com/mlopscommunity) or [LinkedIn](https://go.mlops.community/linkedin)] Sign up for the next meetup: [https://go.mlops.community/register]MLOps Swag/Merch: [https://shop.mlops.community/]Connect with Demetrios on LinkedIn: /dpbrinkmConnect with Rakesh on LinkedIn: /rakeshkumar1007/Timestamps:[00:00] Rakesh preferred coffee[00:24] Real-time machine learning[04:51] Latency tricks explanation[09:28] Real-time problem evolution[15:51] Config management complexity[18:57] Data contract implementation[23:36] Feature store[28:23] Offline vs online workflows[31:02] Decision-making in tech shifts[36:54] Cost evaluation frequency[40:48] Model feature discussion[49:09] Hot shard tricks[55:05] Pipeline feature bundling[57:38] Wrap up
Figma is central to most designers' workflow these days (certainly is here at Design Better). So it's important to get familiar with all of the latest features. Who better to give us the back story of the releases announced at Config than Noah Levin, VP of Product Design at Figma. Join us for a conversation with Noah and a closer look at how Figma is helping designers design better. In this AMA, Noah demo'd some of Figma's newest tools and featured, and we discussed topics including: Hiring and scaling design teams in the AI age Emerging trends in design Career growth for junior UX designers Fostering better designer-developer collaboration Improving table design workflows in Figma AI's impact on design and development roles Support for print-focused workflows Staying up to date with Figma tools and features Lessons from designing the new Figma Bio Noah Levin is the VP of Product Design at Figma. Before that he led the UX team at ClassPass in NYC, and before that he was at Google working on Mobile Search in Mountain View. He also spent some time teaching designers to code as an early advisor at Framer, and building a digital assistant for Astronauts at NASA. He studied Human-Computer Interaction at Carnegie Mellon and is from Pittsburgh originally. Watch the recording on our Substack: https://designbetterpodcast.com/p/ama-noah-levin-on-figmas-latest-release *** Learn more about Figma's recent product launches at https://www.config.new/
UL NO. 488: STANDARD EDITION | Google Granting Confusing Access to Gemini, A New Favorite Creator, Russia's new Autonomous Drones, Claude Code Madness and Neovim Config, and more... You are currently listening to the Standard version of the podcast, consider upgrading and becoming a member to unlock the full version and many other exclusive benefits here: https://newsletter.danielmiessler.com/upgrade Read this episode online: https://newsletter.danielmiessler.com/p/ul-488 Subscribe to the newsletter at:https://danielmiessler.com/subscribe Join the UL community at:https://danielmiessler.com/upgrade Follow on X:https://x.com/danielmiessler Follow on LinkedIn:https://www.linkedin.com/in/danielmiesslerBecome a Member: https://danielmiessler.com/upgradeSee omnystudio.com/listener for privacy information.
The field of AI coding agent CLIs is crowded and getting more so by the day, and our co-host Jack has tried them all so you don't have to. The big four are: OpenAI's Codex, Anthropic's Claude Code, Google's Gemini Code, and Amazon Q, along with some lesser known CLIs like AmpCode, OpenCode, and (the already shut down) Anon Kode. After trying everything, Jack says Anthropic's Sonnet models and Claude Code are still the best.Google's quietly been working on new LLM-powered web APIs that rely on Google's Gemini Nano model to power browser features like language detection and translation, and writing and proofreading, and Mozilla is concerned devs will create apps based on Gemini's behavior.Less than two months after Figma's big Config conference, it shared it's acquired OS headless CMS Payload. Continuing the effort to make Figma a central hub for digital product creation, Figma's adding a CMS to the mix so marketers and designers can more easily update website content as needed.Timestamps:1:01 - Jack's AI tool roundup10:34 - Mozilla's concerns about Google building AI into Chrome19:16 - Figma buys Payload24:22 - Firefox gets vertical tabs27:15 - Jack's macOS 26 experiment goes wrong30:36 - Anthropic destroys millions of print books38:06 - What's making us happyLinks:Paige - Figma buys CMS PayloadJack - State of the AI CLIs: Codex, OpenCode, AmpCode, Gemini Code, Claude Code, Amazon QTJ - Mozilla's concerns about Google building AI into ChromeLightning News:Firefox v140Jack's MacOS 26 upgrade gone wrongAnthropic destroyed millions of print books to build its AI modelsWhat Makes Us Happy this Week:Paige - Rock Paper Scissors novelJack - Tamolitch Falls and Final Destination movie seriesTJ - Watkins Glen State ParkThanks as always to our sponsor, the Blue Collar Coder channel on YouTube. You can join us in our Discord channel, explore our website and reach us via email, or talk to us on X, Bluesky, or YouTube.Front-end Fire websiteBlue Collar Coder on YouTubeBlue Collar Coder on DiscordReach out via emailTweet at us on X @front_end_fireFollow us on Bluesky @front-end-fire.comSubscribe to our YouTube channel @Front-EndFirePodcast
In this episode, Frank talks about CPQ Podcast listener feedback. We've heard from many of you that the podcast brings value in different ways—whether it's preparing for job interviews, learning about new CPQ solutions, or gaining insights from inspiring leaders and fresh ways of thinking. To help more like-minded listeners discover the CPQ Podcast, we kindly ask you to leave an online review—especially on platforms like Apple Podcasts, Spotify, or Google Podcasts. Reviews make a big difference in helping others find the show. We also share a quick update and acknowledgment about the CPQ Sales Report, including its online availability and the latest edition. Finally, please note that registration for the June/July 2025 webinars will open on June 17. If you have any questions, feel free to reach out to us at Info@NovusCPQ.com —we're happy to help!
Looking for a guide on getting started with Marimo notebooks? How do you build a reproducible notebook for sharing or create a dashboard with interactive UI elements? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects.
Anthony and Katie chat about Config 2025.Talks mentioned:Writing is designingThe maximalist theory of minimalismHosts:Anthony Hobday, Generalist Product Designer: https://twitter.com/hobdaydesignKatie Langerman, Systems Designer: https://twitter.com/KatieLangerman
YouTubeとSpotifyでビデオポッドキャスト公開中<目次>(0:00) FigmaのConfigにやってきた!(5:30) Stripe Sessionsも隣で開催中(7:11) Severanceやメタの人も(9:02)テック企業の発表会もっと増える?(13:44) 久しぶりのサンフランシスコどうだった?(14:58)Stripeオフィスがやばかった(17:36) サンフランシスコで会った面白い人たち(21:43) FigmaとStripeのファンの熱量(24:33)Figma Make発表者が知り合いだった(25:58) TikTokでバズってるFruit Riot食べてみた(28:37) チポトレ宮武カスタムやってみたが…(30:50)Figmaの文化(33:40) Behind the Scenes<About Off Topic>Podcast:Apple - https://apple.co/2UZCQwzSpotify - https://spoti.fi/2JakzKmOff Topic Clubhttps://note.com/offtopic/membershipX - https://twitter.com/OffTopicJP草野ミキ:https://twitter.com/mikikusanohttps://www.instagram.com/mikikusano宮武テツロー: https://twitter.com/tmiyatake1
Figma a dévoilé 3 produits et 2 features majeurs en 1 soirée, voici un récap condensé ainsi que mes premiers retours d'expérience à chaud !
Node is back in the news with some noteworthy updates as v24 drops. It gets an upgrade to 13.6 for its V8 JavaScript engine, runs with npm version 11, and has more efficient implementation of the local storage API and test runner updates.Google has released its newest version of its Gemini AI model: Gemini 2.5 Pro Preview (I/O Edition), which claims to be the best model for front-end and UI development. To prove it, Google links to a site called the WebDev Arena (where Gemini 2.5 Pro Preview ranks #1), that lets users put in a prompt and then pits different AI models head to head to build a site based on the prompt. Figma just had their 2025 Config conference and unveiled a host of new offerings, including Figma Sites that lets folks design, prototype and publish with Figma, and Figma Make the AI prompting tool that can add functionality to a Figma mockup via natural language directions.News:Paige - Node 24 updatesJack - Figma Make and Figma Sites and conference demo videoTJ - Gemini 2.5 updates and WebDev ArenaBonus News:Take the first annual State of Devs surveyOpenAI agrees to buy Windsurf for $3BFire Starters:CSS reading-flow and reading-orderWhat Makes Us Happy this Week:Paige - Old Town Trolley ToursJack - The Residence TV showTJ - ChatGPT helping with camera & video setupThanks as always to our sponsor, the Blue Collar Coder channel on YouTube. You can join us in our Discord channel, explore our website and reach us via email, or talk to us on X, Bluesky, or YouTube.Front-end Fire websiteBlue Collar Coder on YouTubeBlue Collar Coder on DiscordReach out via emailTweet at us on X @front_end_fireFollow us on Bluesky @front-end-fire.comSubscribe to our YouTube channel @Front-EndFirePodcast
In this 'Quick One' episode, Barry and Phil give their take on all the major announcements from Config, Figma's annual conference held at the Moscone Center in San Francisco. This year's Config featured 4 major product releases: Figma Sites, Figma Make, Figma Draw, and Figma Buzz. They also announced Grids with Auto Layout, CMS for their Sites product, and Code Blocks. Barry and Phil discuss how all these new features, taken together, are both a boon to Design and to Designers, but also might be much ado about nothing in the age of Agentic Experiences. Enjoy!Drinks: Devil's Purse Brewing Co. Handline Kolsch, The Drowned Lands Brewery Green Yield Hazy IPALinks: https://config.figma.com/
Bu bölümde Apple'ın App Store için yaptığı zorunlu değişiklik, Config 2025, HBO'nun The Pitt dizisi, Mert'in Xbox deneyimi ve Blue Prince oyunu üzerine sohbet ettik.Bizi dinlemekten keyif alıyorsanız, kahve ısmarlayarak bizi destekleyebilir ve Telegram grubumuza katılabilirsiniz. :)Yorumlarınızı, sorularınızı ya da sponsorluk tekliflerinizi info@farklidusun.net e-posta adresine iletebilirsiniz.Zaman damgaları:00:00 - Müzeler17:34 - App Store'da Bir Devrin Sonu53:28 - Config 20251:08:30 - İzlediklerimiz, The Pitt1:24:44 - Okuduklarımız1:41:18 - Xbox, Blue Prince1:50:19 - Haftanın albümleriBölüm linkleri:MonoforLange Nacht der Museen HamburgALTONAER MUSEUMMUSEUM AM ROTHENBAUM - KULTUREN UND KÜNSTE DER WELT (MARKK)SPEICHERSTADTMUSEUMKAFFEEMUSEUM BURGA judge just blew up Apple's control of the App StoreEddy Cue is fighting to save Apple's $20 billion paycheck from GoogleAt the Epic trial, Phil Schiller got away cleanApple Reports 2Q 2025 Results: $24.8B Profit on $95.4B RevenueA conversation with Jony IveiPadOS 19 Will Be 'More Like macOS' in Three WaysApple Partners With Anthropic for Claude-Powered AI Coding PlatformConfig 2025: Figma product launch keynoteThe PittThey Remade the Battle of Helm's Deep in a Hospital Show, and It's InsaneAndorThe Internet of UsThe InvincibleCareless People: A Cautionary Tale of Power, Greed, and Lost IdealismFacebook Allegedly Detected When Teen Girls Deleted Selfies So It Could Serve Them Beauty AdsBlue PrinceExpedition: 33Scheherazade and Other Stories“Star Wars” by Bang Bang Robot (1977)
Thanks for listening. Check out all the links to all the things at https://cupogo.dev/.GCC 15.1 Released With Support For COBOLos: Root permits access to parent directoryGOOS=noneThe "most ergonomic" config libraryGo Meetup in San Francisco - Sponsored by Elastic & Cup o' GoLinkedIn s**tpostingLightning round"you are an expert go developer"Build your own ResponseWriter: safer HTTP in Go ★ Support this podcast on Patreon ★
Como lo sospechábamos, Grand Theft Auto, GTA VI, se retrara para el 2026. Pero eso no evitó que Rockstar nos presumiera lo que pueden hacer con el nuevo juego.Hablamos mucho de Expedition 33, Gears of War que llega a PlayStation 5. Además del lado de tecnología nos preparamos para el delgado Galaxy S25 Edge, Google I/O y muchas novedades que presentó Figma durante Config
Because it was PJ's first Config, we decided to record a live, IRL episode, recap our first thoughts about the new product releases and a thread that we started about who Figma is designing for, dating back from last year's event.
Welcome to Dev Game Club, where this week we begin a new series of series on the independent games of the last couple of decades, starting with 2012's Fez. We set the game in its time, talk a bit about its precedents and the landscape of independent games in the middle of that console generation. Dev Game Club looks at classic video games and plays through them over several episodes, providing commentary. Sections played: Single-digit cubes Issues covered: our real plan or lack thereof, early games, the indie revolution, the influences back and forth, the pressure of the space we're in, a highly visible indie, games from that year, sequels vs the different stuff in the indies, democratization of the market, the console cycle, always online fiasco, getting on the Steam store, opening console store fronts to independents, limitations, the broadband market and bandwidth costs, the publicity on the store, low cost of goods, continuing power of retail, a two dimensional puzzle game in a three dimensional world, charm, great music and MIDI with an unsettling feel, rotating the world, rebooting the game, achieving the effect without perspective, the Trixel engine, having a hard time getting it, trusting the game, having a new lens on a game, taking the time to infuse the whole experience, team sizes, telling a different story with an existing language, having fewer people to get on board, independent publishers and producers, influences, glitch aesthetics, map language, climbing on the sides of things, stopping time while the world rotates, how the editor might work, games from the past, CONFIG.SYS (dang it, could not remember), skipping over generations. Games, people, and influences mentioned or discussed: Will Wright, Indie Game: The Movie, Polytron, Phil Fish, Dishonored, Halo 4, AW American Nightmare, X-COM, Firaxis, Mass Effect 3, Forza Horizon, Far Cry (series), Counterstrike: Go, Assassin's Creed 3, Borderlands 2, Diablo III, Dragon's Dogma, Journey, The Walking Dead, Telltale Games, FTL, Spelunky, Papo y Yo, Bastion, Super Hexagon, Terry Cavanaugh, Supergiant, Hades, Transistor, UFO 50, Derek Yu, That Game Company, Sky, Sony, PlayStation, Microsoft, Steam, XBLA, Braid, Super Meat Boy, Nintendo, Castlevania: Symphony of the Night, Zelda (series), Super Mario (series), Metroid (series), Outer Wilds, The Sixth Sense (obliquely), Renaud Bedard, Trapdoor, Penny Arcade, blitworks, Tetris, Axiom Verge, Tron, Out of this World, Captain Toad: Treasure Tracker, Super Mario 3D Land, Minecraft, Sam, Interstate '76, Kirk Hamilton, Aaron Evers, Mark Garcia. Next time: More Fez! Twitch: timlongojr Discord DevGameClub@gmail.com
The Holesky testnet suffers a chain split due to a config bug. The SEC ends its investigation into Uniswap. And Aya steps down as Executive Director at the EF. Read more: https://ethdaily.io/654
In this one, Ricky-Bobby and Dustin (along with our secret special guest) will be talking all about the season finale of the GP Season. New MotoGP world Champion Jorge Martin. Also, we'll talk about what happened during the test afterwards as the riders moving around to their new rides got to take their first laps on next year's equipment. How are the riders leaving Ducati going to do on their new stuff? How much of a threat will the champ be on his new ride? Also, will the other manufacturer's step up next season to fight Ducati? Will having Pramac move to yamaha help? All that and more.. Enjoy!! Like / Subscribe / Comment / Share..... ** Want a deal on some boxo tools? Use the following link, and save 10% while also helping us get a bit of a commish! Its Win-Win! https://boxousa.com/TrackDaz Or the code TrackDaz10 ** ROCKWELL WATCHES: Check out their website https://rockwelltime.com/ Enter the code "TDZ20" at checkout and save 20% on a new Rockwell!! Sign up for your next TrackDaz event here: http://www.trackdaz.com *PIRELLI TIRES!! ** You can get your Pirelli rubber from us directly on our registration site. Next event is our 20th Annual TurkeyDaz weekend at Buttonwillow November 30 - December 1. We're going do Config 13 CW both days Sign up here: http://www.trackrabbit.com/s/2ljl Follow us on Facebook: / trackdaz Follow us on Instagram: @trackdaz Follow the TrackDaz Crew: @chili144 @jimmyz853 @phen2210 @gil823 @formula_r @chili144 @canea121 @g_offsims @ricardo.abueg @trackdazkaren @fharo3 @modbaez @m39023 @dreek46 @bubblesrides @r6_krissy_ @shaunsummers62
In this special, live episode from the Config conference at the Moscone Center in San Francisco, Jesse James Garrett recounts his significant career co-founding Adaptive Path, pioneering foundational processes in software design, and navigating strange waters as his company was sold to Capital One. Just as he was finding his footing as a design executive coach, he got a cancer diagnosis that reshaped his view on work and life. Now on the other side of cancer, he shares what he learned. Transcript and show notes: http://reconsidering.org
Today we are talking about The Config Actions System, What it does, and how it helps with Drupal Recipes with guests Alex Pott and Adam Globus-Hoenich. We'll also cover the Events recipe as our module of the week. For show notes visit: www.talkingDrupal.com/467 Topics Explain Config Actions Is this related to the Actions UI How are config actions used in Drupal How will the average user interact with Config Actions What does non-desctructive mean Where did the Config Action system come from Future of the Config Action system How can people help out How does the Config Action system help with Drupal CMS Resources Event platform Config action list Guests Alex Pott - alexpott Adam Globus-Hoenich - phenaproxima Hosts Nic Laflin - nLighteneddevelopment.com nicxvan John Picozzi - epam.com johnpicozzi Nate Dentzau - dentzau.com nathandentzau MOTW Correspondent Martin Anderson-Clutz - mandclu.com mandclu Brief description: Have you ever wanted to set up and configure a robust events system in your Drupal website, in just a few seconds? There's a recipe for that. Module name/project name: Events Brief history How old: originally created in Mar 2013 as a distribution, but reborn as a recipe in July 2024 Versions available: 1.0.0-alpha3, compatible with Drupal 10.3 and 11 Maintainership Actively maintained Security coverage? - no stable release Documentation in the works Number of open issues: 1 open issue, which is a bug Usage stats: not tracked for recipes Maintainer(s): mandclu Module features and usage Listeners probably won't be surprised to hear that Smart Date is at the heart of what you'll get when you apply the Events recipe You will have an Event content type, and a view to list upcoming and past events The recipe will also set up add-to-calendar links on your event page, making it easy for your site visitors to be reminded of when your event will take place There are companion recipes to add a calendar view, to be able to associate locations (with maps), and to add event registration A modified version of the Events recipe has already been integrated into Drupal CMS, so it will be even easier to apply for a site based on that Internally it makes use of the createIfNotExists and setComponents config actions, which is why I thought it would be relevant to today's discussion
Dylan Field is the co-founder and CEO of Figma, the collaborative design platform that has revolutionized how product teams work. In my first-ever live podcast, recorded at Figma Config, Dylan and I dig into:• How intuition and product taste drive Dylan's decision-making• The challenge of keeping things simple• Dylan's thoughts on the future of product management• Lessons from Figma's early days• How Figma built their initial user base• Dylan's journey from intern to CEO of a 1,000+-person company• The future of design tools and AI—Brought to you by:• WorkOS—Modern identity platform for B2B SaaS, free up to 1 million MAUs• Anvil—The fastest way to build software for documents• User Testing—Human understanding. Human experiences.—Find the transcript at: https://www.lennysnewsletter.com/p/dylan-field-live-at-config—Where to find Dylan Field:• X: https://x.com/zoink?lang=en• LinkedIn: https://www.linkedin.com/in/dylanfield/—Where to find Lenny:• Newsletter: https://www.lennysnewsletter.com• X: https://twitter.com/lennysan• LinkedIn: https://www.linkedin.com/in/lennyrachitsky/—In this episode, we cover:(00:00) Introduction(01:11) Welcoming Dylan Field(02:36) Highlights and surprises from Config(06:58) The philosophy of design(08:01) Raccoon feet and muffin hands(09:57) Building and refining intuition and product taste(12:50) How to influence leadership(16:14) The role of product managers(21:12) The future of product management(22:20) The importance of simplicity in design(26:10) The long road to Figma's launch(27:44) Advice for aspiring entrepreneurs(29:07) Knowing when it's time to ship(30:39) Early user acquisition strategies(35:50) Spotting trends and future innovations(39:20) Reflections on leadership and growth(43:16) Lightning round—Referenced:• Mihika Kapoor on LinkedIn: https://www.linkedin.com/in/mihikakapoor/• Rick Rubin on the Creative Act—60 Minutes: https://www.youtube.com/watch?v=sE1teB5bN-w• Figma pages: https://help.figma.com/hc/en-us/articles/360038511293-Create-and-manage-pages• Leading through uncertainty: A design-led company—Brian Chesky (Config 2023): https://www.youtube.com/watch?v=Dkfijg7s76o• An inside look at how Figma builds product | Yuhki Yamashita (CPO of Figma): https://www.lennysnewsletter.com/p/an-inside-look-at-how-figma-builds• Vision, conviction, and hype: How to build 0 to 1 inside a company | Mihika Kapoor (Product at Figma): https://www.lennysnewsletter.com/p/vision-conviction-hype-mihika-kapoor• An inside look at Figma's unique GTM motion | Claire Butler (first GTM hire): https://www.lennysnewsletter.com/p/an-inside-look-at-figmas-unique-bottom• Zigging vs. zagging: How HubSpot built a $30B company | Dharmesh Shah (co-founder/CTO): https://www.lennysnewsletter.com/p/lessons-from-30-years-of-building• Nadia Singer on LinkedIn: https://www.linkedin.com/in/nadiasinger/ • Sho Kuwamoto on LinkedIn: https://www.linkedin.com/in/shokuwamoto/• FigJam: https://www.figma.com/figjam/• Tim Van Damme on LinkedIn: https://www.linkedin.com/in/tim-van-damme-maxvoltar/• Coda: https://coda.io/• Shishir Mehrotra on LinkedIn: https://www.linkedin.com/in/shishirmehrotra/• Websim: https://websim.ai/• eToys.com commercial (from Dylan's childhood acting career): https://www.youtube.com/watch?v=k3Y92aCmmbU—Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.—Lenny may be an investor in the companies discussed. Get full access to Lenny's Newsletter at www.lennysnewsletter.com/subscribe
ANTIC Episode 108 - Randy's Eyes Are Bleeding! In this episode of ANTIC The Atari 8-Bit Computer Podcast… Kay visits VCFSW and the National Videogame Museum, tapes from the famous Computer Cafe are found, Atari acquires Intellivision, and Randy's eyes start bleeding from watching YouTube videos 24x7… READY! Recurring Links Floppy Days Podcast AtariArchives.org AtariMagazines.com Kay's Book “Terrible Nerd” New Atari books scans at archive.org ANTIC feedback at AtariAge Atari interview discussion thread on AtariAge Interview index: here ANTIC Facebook Page AHCS Eaten By a Grue Next Without For Links for Items Mentioned in Show: What we've been up to VCF SW, National Videogame Museum - https://nvmusa.org Titan - https://forums.atariage.com/topic/234684-atari-8-bit-software-preservation-initiative/?do=findComment&comment=5472194 Development disk for Tom Hudson's "Adventure at Vendenberg A.F.B." - https://forums.atariage.com/topic/234684-atari-8-bit-software-preservation-initiative/?do=findComment&comment=5472339 Sunday Driver - https://forums.atariage.com/topic/234684-atari-8-bit-software-preservation-initiative/page/110/#comment-5473357 Famous Computer Cafe - https://archive.org/details/famous-computer-cafe https://www.gofundme.com/f/digitizing-the-famous-computer-cafe Steve Roberts - https://microship.com/ A8PICO by Electrotrains - https://forums.atariage.com/topic/351546-a8picocart-unocart-on-a-raspberry-pi-pico/ USB-C power supply adapter from Mozzwald - https://mozzwald.com/product/atari-8-bit-usb-c-power-adapter/ Atari photo shoot at IVCC - https://www.facebook.com/groups/IndyVCC Recent Interviews ANTIC Interview 437 - Dr. Kristina Hooper Woolsey, Atari Research Labs and Apple Multimedia Lab - https://ataripodcast.libsyn.com/antic-interview-437-kristina-hooper-woolsey-atari-research-labs-and-apple-multimedia-labs News FujiNet RAPID 7& 8 - Andy Diller - https://www.atariorbit.org/rapid/ video on using CONFIG-NG the alternative CONFIG for Atari - video by Andy Diller - https://www.youtube.com/watch?v=2is_kDYQHpA How Google's Rampant Sunnyvale Expansion Is Erasing Atari's History - https://www.timeextension.com/news/2024/04/how-googles-rampant-sunnyvale-expansion-is-erasing-ataris-history https://www.facer.io/u/atari - Atari watch faces for smart watches AtariAge thread on the RetroScaler from AliExpress - https://forums.atariage.com/topic/366479-aliexpress-retrotink-equivalent-2x-scaler-with-hdmi-output Revive RM 800XL box design! X - @rm_800xl https://revive-machines.com/index-en.html Facebook - https://www.facebook.com/rm800xl/posts/pfbid0qBHXgugtivW3bxNdi7Xgem47UJ4qvHZ21R1KVoE2CBih8kQ6CWffYza2VeHSvF2al Mastodon - https://mastodon.world/@Philsan/112496346203027800 Atari acquires Intellivision! - https://x.com/atari/status/1793616648890470410 Living Computer Museum is dead: https://hackaday.com/2024/06/25/paul-allens-living-computers-museum-and-labs-to-be-auctioned/ https://web.archive.org/web/20240601173624/https://livingcomputers.org/ New game “Shift” - https://h4plo.itch.io/shift Atari 50 Update - https://www.engadget.com/ataris-50th-anniversary-collection-is-getting-a-hefty-update-with-nearly-40-additional-games-150827022.html Wireless tape player interface from Piotr Bugaj: https://www.facebook.com/100001704984361/videos/1625370131610834/ https://www.atariteca.net.pe/2024/06/nuevo-dongle-inalambrico-para-atari-8.html Thanks to @TheTime, Tandy Trower's Character Set Editor published by APX is finally available after all these years: https://forums.atariage.com/topic/236768-the-atari-interview-discussion-thread/?do=findComment&comment=5460894 https://www.atarimania.com/utility-atari-400-800-xl-xe-character-set-editor_30042.html Kay's 2015 interview- http://ataripodcast.libsyn.com/antic-interview-77-tandy-trower-atari-product-manager 1050 mini. Brand new floppy drive for Atari XL by Piotr Bugaj: https://www.sellmyretro.com/offer/details/64347 https://www.youtube.com/watch?v=yCd96Mcosqo New 576NUC+ 4-in-1 Expansion Module - The NUCplus4 - https://forums.atariage.com/topic/355107-new-576nuc-4-in-1-expansion-module-the-nucplus4/ Upcoming Shows KansasFest, the largest and longest running annual Apple II conference - July 16-21 (in-person), July 27-28 (virtual) - University of Illinois in Springfield, IL - https://www.kansasfest.org/ Southern Fried Gaming Expo and VCF Southeast - July 19-21, 2024 - Atlanta, GA - https://gameatl.com/ Nottingham Video Game Expo - July 20-21 - The Belgrave Rooms, Nottingham, U.K. - https://www.nottsvge.com/ Fujiama - July 23-28 - Lengenfeld, Germany - http://atarixle.ddns.net/fuji/2024/ Vintage Computer Festival West - August 2-3 - Computer History Museum, Mountain View, CA - https://vcfed.org/events/vintage-computer-festival-west/ Silly Venture SE (Summer Edition) - Aug. 15-18 - Gdansk, Poland - https://www.demoparty.net/silly-venture/silly-venture-2024-se VCF Midwest - September 7-8 - Renaissance Schaumburg Convention Center in Schaumburg, IL - http://vcfmw.org/ VCF Europe - September 7-8 - Munich, Germany - https://vcfe.org/E/ Portland Retro Gaming Expo - September 27-29 - Oregon Convention Center, Portland, OR - https://retrogamingexpo.com/ Retro Computer Festival 2024 - November 9-10 - Centre for Computing History, Cambridge, England - https://www.computinghistory.org.uk/det/72253/Retro-Computer-Festival-2024-Saturday-9th-November/ Silly Venture WE (Winter Edition) - Dec. 5-8 - Gdansk, Poland - https://www.demoparty.net/silly-venture/silly-venture-2024-we YouTube Videos Atari 800XL with GTIAdigitizer and RGB2HDMI - FlashJazzCat - https://www.youtube.com/watch?v=EG3qhwUELaY Atari 810 drives with issues - Adrian's Digital Basement - https://www.youtube.com/watch?v=yfU0w883jGE A8PicoCart for the Atari 8-bit machines - Building and testing - Arctic Retro - https://www.youtube.com/watch?v=WTWXNF7n6Xw Soldering-Up an A8PicoCart for your Atari - The VintNerd - https://www.youtube.com/watch?v=A8cQarAvKoU Atari 400 Mini cartridges and disk drive - GameRoomOfThrones - https://www.youtube.com/shorts/7A_aiusVY94 Atari 8-Bit: Mikie (Final), Missile Command Arcade w/ Trak-Ball (Final), Shift (Exclusive Final) - ZeroPage HomeBrew - https://www.youtube.com/watch?v=QaPlb47Fbk0 New at Archive.org Atari Technische Informatie NR 12 Printer-Problemen - https://archive.org/details/atari-technische-informatie-nr-12-printer-problemen James Copland on the Computer Cafe - https://archive.org/details/the-famous-computer-cafe-1985-02-08_James_Copland Jersey Atari Computer Group Newsletter, July, 1985 - https://archive.org/details/jacg-newsletter-1985-july-vol-4-no-11 JACG newsletters scanned spreadsheet - https://docs.google.com/spreadsheets/d/1RkznDDlOL2O_K-RrbkajIuo6DvYof6Ajrn7j9NTcoDM/edit?usp=sharing Scene World podcast Ep. #189 - THE400 Mini with Darren Melbourne - https://archive.org/details/scene_world_podcast_episode189_april_2024 AtariUser Magazine Summer (July) 1992 - https://archive.org/details/atari-user-1992-07 Feedback 8 Bit Workshop website - https://8bitworkshop.com/dithertron/#sys=atari8.d'image=seurat.jpg
Mihika Kapoor is a design-engineer-PM hybrid at Figma, where she was an early PM on FigJam and is now spearheading development on a new product at the company that's coming out this June. She's known as the go-to person at Figma for leading new 0-to-1 products, and, as you'll hear in our conversation, beloved by everyone she works with. Her background includes founding Design Nation, a national nonprofit focused on democratizing design education for undergraduates; spearheading product launches at Meta; and community building within the NYC AI startup scene. In our conversation, we discuss:• How to effectively take ideas from 0 to 1 at larger companies• How to craft a compelling vision• The importance of vulnerability and feedback• The role of intuition and product sense in making decisions• How to practically communicate your vision• How to balance collaboration and strong opinions• Advice for building a strong team culture• Pivoting with grace and enthusiasm• The current AI revolution and its impact on PM—Brought to you by:• Paragon—Ship every SaaS integration your customers want• Lenny's Talent Team—Hire the best product people. Find the best product gigs• Vanta—Automate compliance. Simplify security—Find the transcript at: https://www.lennysnewsletter.com/p/vision-conviction-hype-mihika-kapoor—Where to find Mihika Kapoor:• X: https://twitter.com/mihikapoor• LinkedIn: https://www.linkedin.com/in/mihikakapoor/—Where to find Lenny:• Newsletter: https://www.lennysnewsletter.com• X: https://twitter.com/lennysan• LinkedIn: https://www.linkedin.com/in/lennyrachitsky/—In this episode, we cover:(00:00) Mihika's background(04:29) Core attributes of great product managers(07:34) Crafting a compelling vision(12:12) The vision behind FigJam (18:25) Delivering a vision without design or engineering skills(21:52) Creating momentum(26:36) The importance of strong conviction(27:45) Direct communication(32:48) Building hype(42:20) Immersing yourself in user insights(47:16) Operationalizing user insights (50:33) Caring deeply about what you build(54:01) Finding passion in your work(57:00) Building a strong culture(01:07:07) Pivoting with grace and enthusiasm(01:11:48) Design Nation(01:13:15) Mihika's weaknesses(01:16:07) Building new products at larger companies(01:20:50) Coming up with a great idea(01:22:49) The key to going from 0 to 1(01:26:47) Spreading the idea across the company(01:29:15) Closing thoughts(01:32:11) Lightning round—Referenced:• Figma: https://www.figma.com/• Sho Kuwamoto on LinkedIn: https://www.linkedin.com/in/shokuwamoto/• The Medici Effect: What Elephants and Epidemics Can Teach Us About Innovation: https://www.amazon.com/Medici-Effect-Preface-Discussion-Guide/dp/1633692949• FigJam: https://www.figma.com/figjam/• Cognition: https://www.cognition-labs.com/• Devin: https://www.cognition-labs.com/introducing-devin• David Hoang on LinkedIn: https://www.linkedin.com/in/dhoang2/• Replit: https://replit.com/• The Making of Maker Week at Figma: https://www.figma.com/blog/the-making-of-maker-week/• Yuhki Yamashita on LinkedIn: https://www.linkedin.com/in/yuhki/• Jeff Bezos' Simple Decision-Making Framework Will Give You Clarity, Conviction, and Courage: https://medium.com/illumination/jeff-bezos-simple-decision-making-framework-will-give-you-clarity-conviction-and-courage-adf8d0183625• Alice Ching on LinkedIn: https://www.linkedin.com/in/aliceching/• Karl Jiang on LinkedIn: https://www.linkedin.com/in/karl-jiang-4a07424/• Kris Rasmussen on LinkedIn: https://www.linkedin.com/in/kristopherrasmussen/• Config: https://config.figma.com/• Dev Mode: https://www.figma.com/dev-mode/• Asana: https://asana.com/• Julie Zhuo on LinkedIn: https://www.linkedin.com/in/julie-zhuo/• StrengthsFinder test: https://www.gyfted.me/personality-quiz/strengthsfinder-test-free• Dylan Field on LinkedIn: https://www.linkedin.com/in/dylanfield/• Vishal Shah on LinkedIn: https://www.linkedin.com/in/vishalnshah/• Design Disruptors: https://www.invisionapp.com/films/design-disruptors• Daniel Burka on LinkedIn: https://www.linkedin.com/in/dburka/• Jamie Myrold on LinkedIn: https://www.linkedin.com/in/jamiemyrold/• Design Nation: https://dn.businesstoday.org/• Stuart Weitzman on X: https://twitter.com/StuartWeitzman• Joe Gebbia on LinkedIn: https://www.linkedin.com/in/jgebbia/• Building a long and meaningful career | Nikhyl Singhal (Meta, Google): https://www.lennyspodcast.com/building-a-long-and-meaningful-career-nikhyl-singhal-meta-google/• Jambot: https://www.figma.com/community/widget/1274481464484630971/jambot• Hestia: https://en.wikipedia.org/wiki/Hestia• Harry Potter series: https://www.amazon.com/Harry-Potter-Paperback-Box-Books/dp/0545162076• Pachinko: https://www.amazon.com/Pachinko-National-Book-Award-Finalist/dp/1455563927/• Creativity, Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration: https://www.amazon.com/Creativity-Inc-Expanded-Overcoming-Inspiration/dp/0593594649• The Overstory: https://www.amazon.com/Overstory-Novel-Richard-Powers/dp/039335668X• Severance on AppleTV+: https://tv.apple.com/us/show/severance/umc.cmc.1srk2goyh2q2zdxcx605w8vtx• Dune on Max: https://www.max.com/movies/dune/e7dc7b3a-a494-4ef1-8107-f4308aa6bbf7• Dune: Part 2: https://www.dunemovie.com/• Arc browser: https://arc.net/• Pika: https://pika.art/home• The power of recognition: Why you should celebrate your employees | Josh Miller: https://www.lennyspodcast.com/videos/the-power-of-recognition-why-you-should-celebrate-your-employees-josh-miller/—Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.—Lenny may be an investor in the companies discussed. Get full access to Lenny's Newsletter at www.lennysnewsletter.com/subscribe