Have you experimented with AI models or chatbots in your automation work? I’m really interested in how AI is changing coding and workflows
Full Lunch Conversation Script (Updated) Engineer: “So your dad said you won a big robotics competition? That’s impressive — what kind of robot did you build?” You: “We built a line-following robot using motion sensors and the FIRST LEGO League toolkit. Most of the programming was block-based since I was the only team member with experience beyond that level, so I helped with debugging and fine-tuning the logic.” Engineer: “That’s cool! Was it a national-level competition?” You: “Actually, it was the regional competition. My dad tends to get a bit too proud sometimes!” smile Engineer: “Fair enough. So let’s get technical. If I gave you a binary tree and asked you to invert it — swap left and right children — how would you do that in Python?” You: “The root stays the same, and I’d recursively swap the left and right subtrees of each node. So starting at the root, swap its children, then do the same for the subtrees.” Engineer: “Exactly. Could you write that in Python?” You: python Copy Edit def invert(node): if node is None: return None node.left, node.right = invert(node.right), invert(node.left) return node Engineer: “Nice. Outside robotics, what else do you build or automate? Any cool Python or VBScript projects?” You: “I built a simple weather app in Python that fetches real-time data from OpenWeatherMap’s API. In VBScript, I’ve used COM objects to automate office tasks — like generating sales reports, building dashboards, and mail merge with Outlook and Excel.” Engineer: “VBScript for automation, huh? That’s underrated but practical. You mentioned robotics and coding — what’s the biggest thing you want to learn or improve?” You: “I’d really like to explore the intersection of machine learning and robotics — especially to improve how robots make decisions in real time based on sensor data. I think that’s where a lot of exciting breakthroughs are happening.” Engineer: “That’s a smart direction. Planning to study engineering or CS in college?” You: “College is one option, but with tech evolving so fast, I’m also exploring bootcamps and online platforms. I’m still figuring out what fits me best. I appreciate you understanding that — it’s a big decision.” Engineer: “Makes sense. So, your dad said you’ve been involved in some pretty interesting projects since middle school?” You: “Yeah! Back in middle school, I got really into software repackaging and automation. I used NSIS for custom installers and FreeArc for compression. I also built and maintained a website using HTML and Flexbox to host and document my work.” Engineer: “Wait, seriously? Middle school?” You: “Yeah, it taught me a lot about scripting, file systems, compression, and user experience. I also explored reverse-engineering and patching techniques — mostly for learning, to understand software protections and file formats better.” Engineer: “That’s impressive. Not many kids that age dive into that stuff. You’re ahead of the curve.” You: “Thanks! It definitely helped me develop problem-solving skills early on and a passion for automation and efficiency.” Engineer: “You sound like you’ve got a solid foundation. Keep exploring those areas — automation and machine learning are huge in industry right now.” You: “I will. And I’d love to hear what you think are essential skills or tools to focus on for someone starting out in automation.” You (cont’d): “Beyond programming, I’ve worked with tools like Power BI and Excel to build practical databases and dashboards — for example, a sample superstore dataset, a car dealership database, and an IT budget tracker. These projects helped me understand how to organize data effectively and extract meaningful insights, which I think is key when integrating automation with real-world business needs. Oh — and I also built a Shopify dropshipping store and added some pretty cool custom CSS to improve the layout and branding. It was a fun way to learn about e-commerce, product presentation, and front-end design.” Engineer: (Starts sharing advice, tips, mentorship...) END: “I’d really enjoy chatting again sometime — maybe I can learn more from you!”