Skip to main content

100 Days of Code, Part 1

Image courtesy Business Insider - Flat Iron Schools India
Setting short-term goals is how a Sandwich lives: something that we can fit into the myriad of interruptions that are our days. Some of them are tasks - empty one rack of dishwasher, check for issues, then continue. Others are more important.

Planning time to fill out an application can be the most difficult thing. I love the ones where it says "Submit a resume and cover letter." I can do this: if it takes me seven or eight attempts to write a letter, they need not know.

But, often times the goals have a larger purpose - I'm currently doing the 100 Days Of Code, as a goal to both make sure I move forward daily with getting a job, as well as completing classes and a couple of projects. I will try and share some of my thoughts on it as I go.

As a part of 100 Days, I'm using Twitter more (if you use Twitter, change your password!) There is a marvelous supportive group there, and a lot of sharing. I have spoken to many of the people in less than 200 words, and shared their accomplishments. And had the delight of getting the same back.

Okay, so the 100 Days is supposed to let you get the habit of working on something every day, even if it's just for a few minutes. So, I failed at that - I'm using it to get things done. This seems to be that larger failing in the world of code, at the moment.

My mentor, great man that he is, is giving me huge amounts of the encouragement and support I feel I need, and the ones that I speak to on Twitter and elsewhere are also encouraging, and share thoughts and ideas (and code reviews) that help so much. Thanks to them, I have moved to a more-productive mindset, when I get the chance.

Popular posts from this blog

Drop-down values for injection

cover_image: https://www.pexels.com/photo/flat-lay-photography-of-gold-iphone-on-opened-notebook-beside-pen-583847/ canonical_url:  --- Photo by Jessica Lewis 🦋 thepaintedsquare   Learning in public is grand, and when you have a team that is willing to help with something that seems simple, but you fall into overthink for the wrong items, it can really help to type out your thoughts, actions, and what the program does to frustrate you. And in this case, getting a value I could see in the debugger was the issue The automation needs to check for page elements – and the drop-down selector triggers potentially different elements. Plus, depending on the user logged in, there may well be different options available in that drop-down. Then, I can get the options available for the user on the drop down, get their values, cycle through them, and verify each set of elements on the page. My test account for this has four options on the drop-down, so I budgeted a couple of hours to get ...

30 Days of Postman - for Testers!

  https://www.pexels.com/photo/white-and-brown-cat-lying-beside-a-laptop-and-toys-5468268/ Photo by Karolina Grabowska from Pexels   Working with developer- focused tools can be a challenge for some testers: we may know what the words mean, but haven't used those skills recently enough to make the tasks simple. Or we may not have ever used them, other than at a quick glance to make sure that what we are getting matches what it should be sending. And some give results that require us to go find another team member to help interpret the results. Being a more-independent tester has always been one of my goals - being able to use the tools that are common in the team, and be able to do at least basic tasks that support my tests with them. Our team used Postman for many of the API tasks that we had, so exploring this tool was a natural fit. There are alternatives it there, both graphical and command line, so feel free to explore! The items that you can do, and tools that ...

Compare HTML in Playwright .NET

Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Photo by Miguel Á. Padriñán: https://www.pexels.com/photo/four-letter-tiles-1591061/ Automating checking text (and its HTML) can be a challenge if you aren't comfortable with the language and framework you are using. Having a limited time for learning and exploring is its own challenge. One of my tasks for automating a smoke test for our project was to verify the text in each environment, with each specific set-up having its own welcoming message. And, I admit, I wasn't quite sure where to start. I knew what I needed, and found out where to fetch it. But gett...