Posts

Advancing to leadership & the things I wish I knew - A Her Tech Circle Panel

Image
  I attended a Her Tech Circle event in Sydney, greeted by warm smiles, pizza, fun stickers, and someone’s heart saying you belong here . It felt less like a networking event and more like being welcomed into a room full of allies. I met Maria and Sarah, chatted about what it’s really like to work in male-dominated spaces, and left with a notebook full of golden advice. If you’re growing in tech, leadership, or just trying to be seen this one’s for you. The panel featured four powerhouse leaders: Sherry Wang – Director of Engineering, Immutable Louisa Hine – Director, Squire Patton Boggs Sarah Pern – Head of Marketing, APJ at Miro Anna Volkova – Head of People & Culture, APJ at HiBob What Shifted the Game From the panelists came this recurring message: sometimes it’s not one big defining moment, but many small steps, many decisions. Re-evaluate your goals and wants. Be okay with stepping into the unknown — you usually have three choices: leave, adapt, or w...

Getting Started with Electron.js: Building Your First Desktop App

Image
  Have you ever wished you could take your favourite website or web app and turn it into a full-fledged desktop application? That’s exactly what Electron.js lets you do! It’s a magical little framework that lets web developers like us build cross-platform desktop apps using the skills we already know—HTML, CSS, and JavaScript. Whether you’re on Windows, macOS, or Linux, Electron opens the door to creating apps that feel right at home on your desktop. In this post, we’ll take the plunge together and build a simple but super satisfying “Hello World” desktop app. By the end, you’ll see just how easy (and fun!) it can be to bring your web projects to life on your computer. 1. Setting Up Your Environment Before starting, make sure you have: Node.js installed (check by running node -v in your terminal). npm (comes with Node.js). Then, create a new folder for your project: mkdir my-electron-app cd my-electron-app npm init -y This sets up a package.json file. Next, i...

5 Lesser-Known Blogs That Help Me Grow as a Developer

Image
When I first started learning to code, I was overwhelmed by how much there was to keep up with. Everyone talks about staying “up to date” with tech, but nobody really tells you how to do that without burning out. For a while, I tried reading all the big-name blogs and listening to famous podcasts. Some were great, but most of them felt like they were written for people who were already five steps ahead of me. So I went looking for something different. I wanted resources that felt more grounded, more human. I wanted advice from people who still remembered what it was like to be new, or who were also figuring things out as they went. And I wanted to feel less alone in the process. Here are five blogs and communities I keep coming back to. They’re not the loudest in the tech world, but they’ve helped me learn, stay curious, and feel connected to a bigger picture. 1. She Codes Australia – shecodes.com.au/blog She Codes is an Australian initiative for women in tech, and their blog is...

How I Found Mentors as a Lost 25-Year-Old (and You Can Too)

Image
  One of the hardest things to come to terms with is exactly what Taylor says in Nothing New : "How can someone know everything at 18 but nothing at 22?" That’s how I felt. In high school, I had direction. I had a plan. I knew what I was doing, or at least I thought I did. But somewhere along the line, life got too big to manage. There were challenges I couldn’t have imagined—curveballs that threw me off track, knocked the air out of my lungs, and left me thinking, Wait… what happened? Eventually, you find your way back to yourself. You brush off the dirt, squint into the sunlight, and start walking again. Maybe you don’t know exactly where you’re going, but you start to get a feeling for it. A hunch. A direction. So what do you do at 25 when you realise… ✨ You’ve never actually had a proper mentor in your life? ✨ You leave the Shire and go in search of adventure. That’s exactly what I did. I went looking for mentors in every possible way I could. I wanted some...

Step-by-Step Method for Breaking Down Wordy Tech Interview Questions

Image
  Sometimes it feels like coding questions are written just to confuse you. You open a problem and it starts with: “Imagine you’re the manager of a fleet of robots, each powered by a unique battery pack…” …and your brain instantly goes: Nope. This post is here to help. Whether you’re preparing for coding interviews, studying, or just trying to get unstuck, here’s a simple, repeatable method for turning long-winded questions into clear action steps. 1. Anchor Yourself & Read the Whole Thing Once Without Trying to Solve It Start with a grounding reminder: “This is just a puzzle . I don’t have to solve it all at once. I just need to figure out what it wants. ” Take 2 slow breaths and keep a pen or typing space open to externalize your thoughts Instead of jumping into problem-solving right away, just read it once to get the gist . Think of it like watching a movie trailer, you're getting an overview first. 2. Identify the Core Ask After the first read, ask yourself : “What is...