Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Working Faster as a Developer

Avatar for Sam Jarman Sam Jarman
November 17, 2025
1

Working Faster as a Developer

Avatar for Sam Jarman

Sam Jarman

November 17, 2025
Tweet

Transcript

  1. Today • Why • Habits • Mindset and Approach •

    Mastering Your Tools • Efficient Workflow Practices • Collaborative and Knowledge Sharing • Continuous Improvement • Some Words on AI
  2. Disclaimer I’m not perfect. I don’t follow all these tips

    myself 100% of the time, and I’m not claiming to be faster than you or my team. Additionally, this list of tips is not all the tips out there. Please keep looking for and collecting them. I would love if you found some that worked for you and let me know. Perhaps this list can keep growing.
  3. About Me 󰞵 Engineering Manager at Cochlear Former iOS Developer

    Current on AWS/Backend Node Originally from Nu Zillind
  4. Why??? • You get more done in the same amount

    of time • Increase the density of your experience • Having the skills to do so when the time calls for it - eg production issues • Hopefully you get rewarded - bonuses etc
  5. What This Talk is Not About 👎 • Rushing –

    skipping steps, lowering the bar, compromising, shipping shit • Trying to speed run your way to burn out • Trying to make your life miserable and your fingers tired
  6. What this talk is really about 👍 It’s about habits.

    Good and Bad - they both stack. Good Habits → Speed you up Bad Habits → Slow you down
  7. Develop a Sense of Urgency 󰝊 • You’ve got to

    want to go fast • This develops over time, it’s not instant - and takes practice • It will also come and go
  8. Understand the Big Picture 🌄 • Step back and learn

    the big picture of your task • Not just Swift UI - but more declarative languages • No just Combine - but more producers, consumers, pipes etc • Understand also the business - this can help with smaller decisions and trade offs across many units of work – and ask good questions! • Look to challenge things that could cost you time - e.g. moving a button
  9. Be Aware of your Surroundings 👀 • It’s highly likely

    you’re not the first person in your company solving this problem • Keep an eye on slack channels, emails, chapter meetings, sprint reviews etc • Develop a mental map of what others are working on • When you hit that issue → you have a place to start
  10. Slow Down To Speed Up 🐌 • Sometimes, the fastest

    way forward is to slow down and learn something properly • Don’t just hack away at tasks to get them done • Take the time to fully understand what you’re doing, and you’ll move faster in the long run
  11. Two Way Doors 🚪 • It’s software • You can

    change your mind if you’re wrong • Give yourself options to reverse things • Then don’t panic about geting it righ the first time
  12. Master Your Language 🗣 • Build your muscle memory for

    typing out code • Practice regularly - beyond the backlog tasks • Write code for practice - seriously.
  13. Use IDE Extensions 🧩 • Find and install extensions that

    can help you • Practice using them so you naturally reach for them when you need them • Give and receive recommendations • Set them up for yourself and others in your codebases https://github.com/theswiftdev/awesome-xcode-extensions
  14. Use Terminal Aliases and Dotfiles 🗃 • Create aliases in

    the terminal for common tasks, such as git, package management, clearing derived data…etc • Use ‘dotfiles’ to store settings you like in your OS and upload them to GitHub https://www.daytona.io/dotfiles/ultimate-guide-to-dotfiles
  15. Lean Into Your Tool 🛠 • Xcode is a powerful

    IDE and visual editor • Lean into it, learn how to use it and learn how to use it well • Be on the lookout for more tools that can help you save time • Ask and give recommendations for tools
  16. Be an Expert in Your Tools ⛓ • You may

    spend many hours a day in Xcode, GitHub, AWS, etc • Just get good at them • Do you know multi-cursor editing? Do you how to restart Xcode? Reset state? Install new simulators? Clear out old ones? Install packages? Bump packages? Jump to definition? Use the debugger? Use lldb? Use instruments? Get to documentation fast? Know when things aren’t working right?
  17. Copying and Pasting Effectively 👮 • Let’s be real: It’s

    our best friend. Learn to do it effectively. • Don’t just blindly copy code and jam it into your codebase. Read it. Understand it. • Sometimes it’s best to copy the idea and not the code • Ask yourself: 'Surely another team has solved this' (and go look at their code) • Ask yourself: 'Surely I’m not the first person to do this' (and go to Google/StackOverflow/etc) • Being aware of your surroundings helps here
  18. Search Documentation Smartly 🔍 • You should understand how Apple

    organises their Documentation • You should be able to jump to areas you want, using Cmd+F. • Slow down to speed up • Open source tools use same docs frameworks - recognise that and use them • Knowing how to get to the documentation for something from your IDE • Bookmarks, knowing the terms to google, etc • Shorten: Needing the docs → Finding the docs you need.
  19. Shorten Your Debug Loop 🔄 • Debug Loop: The time

    between writing code and seeing if it works • Eg: ◦ Using the simulator over device ◦ Using a unit test over build and run • Build your own tools - a playground file, demo app, unit test, etc • Hardcode skipping of login or typing in of login details
  20. Bookmark Everything 🏷 • Websites • Code snippets • cURL/Postman

    requests • If it’s useful, bookmark it • Mentally bookmark it - practice using your bookmarks. Organise them effectively in your browser.
  21. Scale Yourself 📈 • Write documentation to do the talking

    for you ◦ Internal packages, sample code bases, CI pipelines etc ◦ If someone asks you about code that is meant to be shared – you’ve failed • What this talk is doing for me right now – saving a 1:1 conversation with all of you
  22. Automate Repetitive Tasks 🏧 • Obviously • CLI tooling, scripts,

    make it easy to share scripts • Does your team have an internal CLI?
  23. Stay Busy 📆 • If you’re blocked - move onto

    something else • Don’t wait for stand up • Try to have 1-2 backlog tasks on the go at once plus some extra curriculars
  24. Leave and Read the Clues 󰡸 • Code changes over

    time. Additions, subtractions, and substitutions. • Small but powerful actions, like leaving comments, updating README files, and maintaining a well-structured codebase, can significantly help the next person who works on the codebase (which will likely be you). • Next time you’re in a codebase – “Read the room” – What do you notice? • Enums over if/else • Code/architecture patterns
  25. Document What You’re Learning ✍ • If you’re struggling to

    learn something – document it • Writing helps retention and gives a reference for later (Is this what I am doing right now?) • Doesn’t have to be a talk - blog post, tweets, tiktoks, even a private diary.
  26. Ask for Help at the Right Time 󰢧 • Mastering

    the timing of when to ask for help is an art—a skill you will build over your career. • Don’t spend hours in the weeds—reach out when you’re stuck • BUT - Pushing through a challenge on your own will lead to valuable learning and potentially make you faster in the future • Continue honing your intuition of when to ask vs when to persevere • Respect the time of others
  27. Practice Makes Perfect ✅ • Side projects, hackathons, working on

    internals tools can give you more practice • The more you code - the more efficient you will become • It’s cliche - but practice makes perfect • There’s always more to be done at work - ask your leader for more work
  28. Reflect Often 🤔 • Reflect regularly on your work. Reflect,

    reflect, reflect. Lock in that learning. It will accumulate. • Work + Reflection = Experience • Ask yourself (or your lead) some questions: ◦ What was different from last time? ◦ What was the same? ◦ In what other situations would this approach work? ◦ In what situations wouldn’t it work?
  29. AI: It’s early days 🤖 • The LLphant in the

    room • Clearly a step-change in technology and perhaps society • Has its issues around power consumption, copyright, creativity, etc • Be curious about AI • Install it in your IDE, and even try other IDEs (VS Code, Cursor) for agentic tasks • Don’t rob yourself of learning opportunities - similar of learning when to ask • Develop an intuition of when AI will be good - and when not. Revisit that every few months.
  30. Conclusion ❤ • Moving faster as a developer isn’t about

    rushing—it’s about building the right habits, using the right tools, and continuously refining your process. • Start implementing these tips today , and watch your productivity soar. • Remember, the aggregate effect of all these small changes is where the magic happens. • Good luck!