Skip to main content

How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174]


Curriculum for the course How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174]

On this week's episode of the podcast, freeCodeCamp founder Quincy Larson interviews Joe Attardi. He's a software engineer and prolific author of programming books. We talk about: How software development has changed over the past 21 years Tips for suriving AI's sweeping changes to the field The evolving role of Computer Science degrees Why people should still read O'Reilly style programming books on dead trees Support for this podcast comes from a grant from Wix Studio. Wix Studio provides developers tools to rapidly build websites with everything out-of-the-box, then extend, replace, and break boundaries with code. Learn more at https://wixstudio.com. Support also comes from the 11,423 kind folks who support freeCodeCamp through a monthly donation. You can join these chill human beings and help our charity's mission by going to donate.freecodecamp.org Links we talk about during our conversation: Joe's freeCodeCamp books and tutorials: https://www.freecodecamp.org/news/author/joeattardi/ Joe's website: https://joeattardi.com/ Joe's Web API Cookbook: https://www.webapis.info/ Joe's open source projects on GitHub: https://github.com/joeattardi What Joe's desk looks like: https://x.com/JoeAttardi/status/1849819837360480658 Some games Joe's recently played: https://backloggd.com/u/jattardi/games?page=1 Chapters 00:00 Introduction to Joe Attardi and His Journey 03:01 The Pressure of Entrepreneurship in Tech 06:07 Navigating Career Paths: Management vs. Technical Roles 08:56 The Impact of AI on Software Development 12:00 The Role of Computer Science Degrees in Today's Market 15:01 Advice for the Next Generation: Is CS Still Worth It? 18:02 The Future of Software Development and AI's Role 20:45 Reflections on Education and Career in Tech 24:35 The Shift to Software Engineering 25:31 Building Foundational Knowledge 28:32 The Importance of Project-Based Learning 30:41 Balancing Work and Personal Life 32:12 The Value of Humility in Tech 36:10 The Role of Security in Software Development 41:21 The Book Publishing Journey 49:37 Streamlining the Editorial Process 50:44 Weight Loss and Lifestyle Choices 52:00 The Technical Review Process in Publishing 53:35 Marketing Your Book 55:16 The Future of Technical Writing and AI 01:00:04 Career Aspirations and Growth 01:02:51 Balancing Work and Hobbies 01:05:10 Exploring Game Development 01:09:14 Advice to My Younger Self

Watch Online Full Course: How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174]


Click Here to watch on Youtube: How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174]


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174] courses free download, Plurasight How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174] courses free download, Linda How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174] courses free download, Coursera How to Survive in Tech When Everything's Changing w/ 21-year Veteran Dev Joe Attardi [Podcast #174] course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

What's Hot

CVR Nummer : Register CVR Number for Denmark Generate and Test Online

CVR Nummer : Register CVR Number for Denmark Generate and Test Online | Image credit: Pexel What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your ...

Bing Homepage Quiz: Fun, Win Rewards, and Brain Teasers

Bing, Microsoft's search engine, has taken interactive engagement to the next level with its captivating feature - the Bing Homepage Quiz. This intriguing daily quiz not only challenges your knowledge but also offers a chance to earn rewards. In this comprehensive guide, we will explore the ins and outs of the Bing Homepage Quiz, including how to play, the different types of quizzes, and how you can earn and use rewards through this engaging feature. Bing homepage Quiz | Image credit: LanguageLassi How to Play the Bing Homepage Quiz Playing the Bing Homepage Quiz is simple and enjoyable. Here's how you can get started: Visit Bing : Open your preferred web browser and navigate to the Bing homepage (bing.com). Look for the Quiz : On the Bing homepage, keep an eye out for the interactive quiz card. This card is usually located near the bottom of the page and features a captivating image related to the quiz. Click to Start : Click on the quiz card to begin the quiz. It...

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys