Why Microsoft and How I achieved my GoalI just really liked the idea that Microsoft were willing to send people out to help others, to help them build better software with their products and I said to the two Microsoft guys, "One day I will work for Microsoft".1 min readpersonal
Fixing Diversity in TechWhen you step back from the nationality, the color, the religion the sex etc you just get a bunch of people who become a great bunch of friends. This is tech. This is what tech should be like always, for everyone.1 min readpersonal
The JavaScript Array.at() methodOften we want to return a single item from an array. There are a few methods of doing this including the `at(index)` method which returns the item at a given index.1 min readjavascript
The JavaScript Array.filter() methodThe .filter() method in JavaScript creates a new array with all elements that pass the test implemented by the provided function.1 min readjavascript
Finding the Right Work Life BalanceTo many people it might look like I have it all worked out and to be honest I do think I have a pretty good work life balance. But it wasn't always that way. I am probably older than most people who will read this and therefore I have had more time to make mistakes and learn from them.1 min readpersonal
Finding courage and inspiration in the developer communityHow do we empower women in tech and equip them with the skills to help them become true leaders? One way is learning from others' successes and failures. Web GDEs—Debbie O'Brien, Julia Miocene, and Glafira Zhur—discuss the value of one to one mentoring and the impact it has made on their own professional and personal development.1 min readmentoring
Minimizing SVGsWhen working with SVG's sometimes we just put the svg into our code and think nothing more of it. But do we always need all that code that the SVG gives us? Perhaps not. SVGO is a tool that can take an SVG and compress it down to a smaller size ensuring your site is more performant.1 min readperformance
Finding Motivation as a DeveloperMany people keep asking me where I get my motivation from, how do I find so much time and energy to do so much? I certainly don't have all the answers but I do think it is something you teach yourself.1 min readpersonalmotivation
Being an ImposterIf you ever look at the home page of my site or the intro slide of my talks you will probably think I am the biggest show off in the world. However, really I am an imposter. I doubt my abilities and find it difficult to accept my accomplishments and wonder if I deserve them.1 min readpersonalmotivation
Pagination in Nuxt ContentMy blog was getting bigger and bigger and so time to add pagination. I am using Nuxt Content to manage my blog posts. So how do I add pagination to my blog? Let me show you how I did it.1 min readnuxt
Debugging Tests in PlaywrightLet's take a look at some of the ways you can debug your tests in Playwright should they fail. Playwright scripts work with existing debugging tools, like Node.js debuggers and browser developer tools. Playwright also introduces new debugging features for browser automation.1 min readtestingplaywright
Playwright Reports and TracesPlaywright will serve up a HTML report on your local server so you can easily walk through the steps of your test. You can also open a trace file which gives you even more powerful options of viewing, reporting, interacting and even debugging your tests.1 min readtestingplaywright