From Software Engineer to White Hat Hacker with Suz Hinton [Podcast #126]



On this week's episode of the podcast, freeCodeCamp founder Quincy Larson interviews Suz Hinton. She's a software engineer, security researcher, and one of the first ever people to live-stream her coding on Twitch. We talk about:
How Suz started her career building browser ads in Adobe Flash, working around bandwidth early 2000s limitations.
How she moved to the US from Melbourne to work at Zappos, and then Microsoft and Stripe.
Her love of hardware and embedded development
How she went back to school to study infosec, and launched a second career as a security researcher
How she nearly burned out after 20 years in tech, and what she's doing to recover. Can you guess what song I'm playing on my bass during the intro? It's a 2015 song from an Australian musician. Be sure to follow The freeCodeCamp podcast in your favorite podcast app. And share this podcast with a friend. Let's inspire more folks to learn to code and build careers for themselves in tech. Also, I want to thank the 9,331 kind people who support our charity each month, and who make this podcast possible. You can join them and support our mission at: https://www.freecodecamp.org/donate Links we talk about during our conversation: Suz's article on live coding on freeCodeCamp: https://www.freecodecamp.org/news/lessons-from-my-first-year-of-live-coding-on-twitch-41a32e2f41c1/ NoClip video game development documentaries: https://www.youtube.com/@NoclipDocs The Dream Machine by M. Mitchell Waldrop. Suz says it's "Dense and long, but the best narrative about how computing came to be." https://press.stripe.com/the-dream-machine Space Rogue: How the Hackers Known as L0pht Changed the World by Cris Thomas. "A book about the original cult of the dead cow hacking group." https://www.barnesandnoble.com/w/space-rogue-cris-thomas/1142912008 Sections:
0:00:00 Introduction and Background
0:09:54 Education and Early Career
0:26:50 Reflections on Advertising and Broad Skill Set
0:30:16 The Impact of Teaching and Working at Zappos
0:44:24 Exploring Hardware Projects and Embedded Development
0:52:42 Challenges of Obtaining a Green Card
0:54:51 The Journey of Live Coding and Open Source
0:57:15 Participating in Capture the Flag Events
1:10:11 The Benefits of Asynchronous and Real-Time Communication in Remote Work
1:24:05 Customizing Software Tools
1:29:17 Balancing Foundations and Practical Skills
1:31:54 Recognizing and Addressing Burnout
1:43:56 Rejuvenating and Staying Connected

From Software Engineer to Security Researcher with Suz Hinton [Podcast #126]



On this week's episode of the podcast, freeCodeCamp founder Quincy Larson interviews Suz Hinton. She's a software engineer, security researcher, and one of the first ever people to live-stream her coding on Twitch. We talk about:
How Suz started her career building browser ads in Adobe Flash, working around bandwidth early 2000s limitations.
How she moved to the US from Melbourne to work at Zappos, and then Microsoft and Stripe.
Her love of hardware and embedded development
How she went back to school to study infosec, and launched a second career as a security researcher
How she nearly burned out after 20 years in tech, and what she's doing to recover. Can you guess what song I'm playing on my bass during the intro? It's a 2015 song from an Australian musician. Be sure to follow The freeCodeCamp podcast in your favorite podcast app. And share this podcast with a friend. Let's inspire more folks to learn to code and build careers for themselves in tech. Also, I want to thank the 9,331 kind people who support our charity each month, and who make this podcast possible. You can join them and support our mission at: https://www.freecodecamp.org/donate Links we talk about during our conversation: Suz's article on live coding on freeCodeCamp: https://www.freecodecamp.org/news/lessons-from-my-first-year-of-live-coding-on-twitch-41a32e2f41c1/ NoClip video game development documentaries: https://www.youtube.com/@NoclipDocs The Dream Machine by M. Mitchell Waldrop. Suz says it's "Dense and long, but the best narrative about how computing came to be." https://press.stripe.com/the-dream-machine Space Rogue: How the Hackers Known as L0pht Changed the World by Cris Thomas. "A book about the original cult of the dead cow hacking group." https://www.barnesandnoble.com/w/space-rogue-cris-thomas/1142912008 Sections:
0:00:00 Introduction and Background
0:09:54 Education and Early Career
0:26:50 Reflections on Advertising and Broad Skill Set
0:30:16 The Impact of Teaching and Working at Zappos
0:44:24 Exploring Hardware Projects and Embedded Development
0:52:42 Challenges of Obtaining a Green Card
0:54:51 The Journey of Live Coding and Open Source
0:57:15 Participating in Capture the Flag Events
1:10:11 The Benefits of Asynchronous and Real-Time Communication in Remote Work
1:24:05 Customizing Software Tools
1:29:17 Balancing Foundations and Practical Skills
1:31:54 Recognizing and Addressing Burnout
1:43:56 Rejuvenating and Staying Connected

How to Install IntelliJ IDEA IDE on Ubuntu 24.04 LTS Linux (2024)



How to Install IntelliJ IDEA IDE on Ubuntu 24.04 LTS Linux | Step-by-Step Guide IntelliJ IDEA is a popular, robust Integrated Development Environment (IDE) for software development, especially for Java. Installing IntelliJ IDEA on Ubuntu 24.04 LTS is straightforward, whether you prefer the Community (free) edition or the Ultimate (paid) edition. This guide will walk you through the process of installing IntelliJ IDEA using the official JetBrains methods. **Step-by-Step Instructions:** **Step 1: Update Your System**
1. Open your Terminal by pressing `Ctrl + Alt + T` or by searching for "Terminal" in your applications menu.
2. Update your package list to ensure you have the latest information on the newest versions of packages and their dependencies: “`sh sudo apt update “` **Step 2: Install Required Dependencies**
1. Ensure you have `wget` and `curl` installed, as they are required for downloading files from the internet: “`sh sudo apt install wget curl -y “` **Step 3: Download IntelliJ IDEA**
1. Navigate to the [IntelliJ IDEA download page](https://www.jetbrains.com/idea/download/) in your web browser.
2. Choose the Linux version and download the `.tar.gz` archive for either the Community edition or the Ultimate edition.
3. Alternatively, you can download the file directly using `wget`. Open Terminal and run: “`sh wget https://download.jetbrains.com/idea/ideaIC-2023.1.1.tar.gz “` – Note: Replace `ideaIC-2023.1.1.tar.gz` with the latest version if a new version is available. **Step 4: Extract the Archive**
1. Extract the downloaded archive to the `/opt` directory: “`sh sudo tar -xzf ideaIC-2023.1.1.tar.gz -C /opt/ “` – Note: Replace `ideaIC-2023.1.1.tar.gz` with the correct filename if different. **Step 5: Create a Symlink for Easy Access**
1. Create a symbolic link to make IntelliJ IDEA easily accessible from the command line: “`sh sudo ln -s /opt/idea-IC-231.8109.91/bin/idea.sh /usr/local/bin/idea “` – Note: Replace the version number in the path if it differs. **Step 6: Launch IntelliJ IDEA**
1. Start IntelliJ IDEA by typing `idea` in your Terminal and pressing Enter: “`sh idea “`
2. Alternatively, you can navigate to `/opt/idea-IC-231.8109.91/bin/` and execute `idea.sh` directly: “`sh cd /opt/idea-IC-231.8109.91/bin/ ./idea.sh “` **Step 7: Configure IntelliJ IDEA**
1. On the first launch, you’ll be prompted to import settings from a previous installation or start fresh.
2. Follow the on-screen instructions to complete the initial setup, including configuring the UI theme, setting up plugins, and customizing your development environment. **Step 8: Create a Desktop Entry (Optional)**
1. To create a desktop entry for easier access, open IntelliJ IDEA and go to `Tools – Create Desktop Entry`. **Additional Tips:**
– **JDK Installation**: Ensure you have the Java Development Kit (JDK) installed, as IntelliJ IDEA requires it for Java development. You can install it using: “`sh sudo apt install openjdk-11-jdk “`
– **Keeping IntelliJ IDEA Updated**: Use the JetBrains Toolbox App for managing and updating your JetBrains products. Download it from [JetBrains Toolbox](https://www.jetbrains.com/toolbox-app/). By following these steps, you’ll have IntelliJ IDEA installed and ready to use on your Ubuntu 24.04 LTS system, providing you with a powerful environment for software development. Don't forget to like, share, and subscribe for more tech tutorials and tips! #IntelliJIDEA #Ubuntu #Linux #IDE #SoftwareDevelopment #Java #TechTutorial #HowTo #Programming #Development #TechTips #Tutorial