PawHavenforPawHavenpawhaven.hashnode.dev·Nov 25, 2024Mental Self Care WorkbookIntroduction to Your Mental Self Care Workbook Welcome to your journey of introspection and growth with the Mental Self Care Workbook! In an age where mental wellness is gaining the attention it deserves, creating a sustainable self-care routine has ...Discussboosters
Lasse R.forlassetechlassetech.hashnode.dev·Oct 23, 2024Code Coverage: Guide to Metrics & Improving CoverageCode coverage measures how much of your code is tested. Here's what you need to know: It's calculated as: (Lines executed / Total lines) * 100 Higher coverage can lead to better quality and fewer bugs But 100% coverage isn't always necessary or pr...Discusscode coverage
webshipcoforWebship.cowebshipco.hashnode.dev·Oct 3, 2024Automated Testing of Contact Info Using Webship-jsThe 'Contact Us' page on a website might seem small, but it’s very important. It's where people go to ask questions, give feedback, or get help. Having this page helps businesses appear approachable and trustworthy. However, it’s not just about havin...Discuss·1 likeautomation testing
Krzysztof PrzekwasforKrzysztof Przekwaskristof.pro·Aug 15, 2024Funky code smellsSoftware development tends to be a lot like cooking. You can follow the recipe, but sometimes you end up with something that just doesn’t taste right. In code, we tend to call these bad “flavours” code smells. They do not crush your app immediately, ...Discusscode review
GUEST HOUSEforGUEST HOUSEguesthouse.hashnode.dev·Aug 5, 2024Quality Engineering (QE)Pendahuluan: Quality Engineering (QE) adalah disiplin penting dalam pengembangan perangkat lunak yang berfokus pada memastikan kualitas produk perangkat lunak sepanjang siklus hidupnya. Dalam blog ini, kita akan mengeksplorasi peran seorang Quality E...Discuss·1 likequality
Kunaal ThanikforTest Automationkunaal.hashnode.dev·Jul 30, 2024CF2 - Selection of Appropriate ToolsPicking the Perfect Automation Tool: Your Fun Guide to Testing Success Selecting the right automation tool can feel like finding the perfect pair of shoes—crucial for comfort and style! Here’s a playful yet practical guide to help you choose the best...DiscussCritical Factors for Successful Software TestingTesting
Bruno SabotforBruno Sabot's Blogbrunosabot.hashnode.dev·Jun 30, 2024Mastering Time: Using Fake Timers with VitestPhoto by Aron Visuals on Unsplash In the world of testing, controlling time can be a real challenge. Real-world timers, like setTimeout() and setInterval(), can be cumbersome when writing unit tests: without the right technique, you will introduce ex...DiscussJavaScript
Peter MerrillforPeter Merrillpeterm.hashnode.dev·Feb 21, 2024The Anti-Assumption Mindset: Embracing Intellectual Humility in Software EngineeringHave you ever launched a feature with confidence, only to find it leaving users scratching their heads? It's a scenario familiar to many software engineers, regardless of experience. Often, the culprit resides in the shadows: assumptions. These unspo...Discuss·48 readsAssumptions
Mikalai KardashforMikalai's blogmkardash.dev·Feb 8, 2024On Management DifferenceTLDR; Good management (leadership) is invisible. It just happens. Also, it is very easy to understand what it is supposed to mean in you org using a simple test described below. Intro It is simple and yet all simple things are very hard to get to. I ...Discussmanagement
Marcin WosinekforHow to devhow-to.dev·Sep 7, 2023How to write maintainable code: Straightforward logicMaintaining code is more complicated than writing it. Before you make any changes, you need to understand what is there already, how it was supposed to work, and how it works now. The difficulty of this task will depend on how the code was structured...Discuss·185 readsProgramming Tips