Mirza Sisic
Senior Test Analyst
I am Open to Write, Speak, Mentor, Podcasting
I'm a tech geek, casual gamer, and sci-fi enjoyer. I love talking about software testing and being part of the testing community.

Achievements

TestBash Trailblazer
Club Explorer
Bio Builder
Avid Reader
Career Champion
Article Maven
MoT Community Certificate
Scholarship Hero
Insights Spotter Bronze
TestBash Speaker
Chapter Organiser
MoT Streak
Glossary Contributor
Photo Historian
Cert Shaper
Author Debut
Cognitive biases in software testing
Introduction to software development and testing
Introduction to modern testing
Bug reporting 101
Introduction to HTTP
Coding for non-coders
Let's build an API checking framework
Introduction to Java
Optimising manual test scripts for an agile environment
A beginner's guide to mobile testing
99 and Counting
Social Connector
Open to Opportunities
Found at 404
Picture Perfect
Story Sharer
Kind Click

Certificates

MoT Community Certificate image
  • Mirza Sisic's profile image
Awarded for: Achieving 5 or more community stars

Activity

Compact Disc (CD) image
Compact Disc (CD)
Mirza Sisic
Mirza Sisic
contributed:
Compact Disc (CD) image
Definitions of Compact Disc (CD)
Floppy Disk image
Floppy Disk
Mirza Sisic
Mirza Sisic
contributed:
Floppy Disk image
Definitions of Floppy Disk
Three Amigos image
Three Amigos

Contributions

Compact Disc (CD) image
  • Mirza Sisic's profile image
A Compact Disc (CD) is a digital optical disc data storage format that was co-developed by Philips and Sony to store and play digital audio recordings. In terms of data capacity, standard CDs can hold up to 700 MB of data or roughly 80 minutes of uncompressed audio. The mechanism for storing data works in a way that the microscopic "pits" and "lands" on a reflective layer, which a laser beam inside the CD player reads. Unlike vinyl or cassette tapes, CDs are non-contact media, meaning the quality does not degrade with each playback. Over time, CDs got supplemented by DVDs and Blu-ray disks, which are similar in appearance but with larger capacity, and can store video content of much higher quality. The rise of the internet, streaming, online gaming, etc., all contributed to the decline in the use of CDs. 
Floppy Disk image
  • Mirza Sisic's profile image
A Floppy Disk (or diskette) is a legacy magnetic storage medium that was the standard for moving and backing up computer data from the 1970s through the late 1990s. It consists of a thin, flexible ("floppy") magnetic disk sealed inside a protective plastic enclosure. Unlike the CD, which uses lasers, a floppy disk works by using a mechanical arm with a magnetic head to read and write data directly onto the spinning surface. The most widely known floppy disk was the 3.5” one. While floppy disks were revolutionary for being rewritable and portable, they were eventually replaced by CDs and USB drives for several reasons:  Low Capacity: As files (like photos and software) grew in size, the 1.44 MB limit became too small  Fragility: The magnetic surface was easily damaged by dust, magnets, or heat.  Slow Speed: Data transfer was significantly slower than optical or flash storage.  Despite being obsolete in modern computing, the 3.5-inch floppy disk lives on globally as the universal "Save" icon in almost every software application.
Three Amigos image
  • Mirza Sisic's profile image
The Three Amigos is a collaborative approach used in Behavior-Driven Development (BDD) to make sure everyone on a project has a shared understanding of a feature before any code is written. It brings together three distinct perspectives to bridge the gap between business requirements and technical implementation. The three unique perspectives The "Three Amigos" typically represents three roles (though it can be more than three people):  The business (Product Owner/Business Analyst):  Focus: What problem are we solving? What is the value?  Role: Defines the "What" and provides the requirements. The developer:  Focus: How will we build this? What are the technical constraints? Role: Discusses implementation and technical feasibility. The tester:  Focus: What could go wrong? What about the edge cases?  Role: Ensures the feature is verifiable and "breaks" the logic early.  How does it work? Instead of a long document, the Amigos meet for a short session (often 15–30 minutes) to discuss a specific user story.  Scenario Mapping: They turn requirements into concrete examples.  Gherkin Syntax: These examples are often written in the Given/When/Then format.  The Goal: By the end of the meeting, the team should have a set of clear, unambiguous "Acceptance Criteria" that serve as both the guide for development and the blueprint for automated tests.  Key benefits  Prevents rework: Issues are caught during the conversation rather than during the testing phase.  Shared understanding: Eliminates the "that's not what I meant" friction between departments.  Living documentation: The output (the scenarios) becomes a readable record of how the system is supposed to behave.  The outcome: The Three Amigos turn a vague idea into a "DoR" (the Definition of Ready), meaning the developers can start coding with total clarity, which significantly reduces the chance of a wrong understanding of the actual requirements. 
Domain-Driven Design (DDD) image
  • Mirza Sisic's profile image
Domain-Driven Design (DDD) is a development approach that prioritizes the business domain over the technical implementation. It aims to manage complexity by making sure that the code accurately reflects the business needs. DDD is divided into two levels of design: strategic and tactical.The big picture (strategic) level focuses on how different parts of large systems relate to one another. DDD introduces the term “Ubiquitous Language,” which means that developers and domain experts use the same terminology for both conversations and coding. This means that there is no need to translate the business requirements to code and vice versa. The next big concept, at the strategic level, is the bounded context. The bounded context is a boundary around a specific part of the system (e.g, “Registration” vs “Checkout”), inside a boundary, terms have a specific unified meaning. DD also uses diagrams, such as the Context Map, which illustrates how Bounded Contexts interact with each other.The tactical level represents the building blocks, inside a given bounded context. We have entities that are objects with unique IDs that stay the same evening if their data changes. A user can edit their order, but the order ID should remain the same. Next, we have value objects, which are defined only by their attributes; there are no IDs here, and value objects are immutable. Another important terms are the aggregates, which represent a cluster of related entities and value objects that get treated as a single unit. We also have repositories, which are tools used to retrieve and save aggregate data, for example, abstracting away the database interaction. Lastly, we have domain events, which can be seen as notifications that something happened, such as a customer placing an order.The aid of DDD is to prevent the “Big Ball of Mud” architecture, which is hard to manage, and it forces the developers to model the software based on how the business actually functions.
Microservices image
  • Mirza Sisic's profile image
.Microservices architecture is the opposite of the Monolith approach to software architecture. Instead of having the whole system built within one huge codebase, the microservices approach breaks the system down by business function. Each service runs on its own and is (usually communicates with other microservices through APIs. Microservices are decoupled, meaning that each service can be developed, deployed, and scaled without affecting the others. Each microservice should be specialized to solve one specific problem; for example, a payment microservice should only handle payment transactions. This approach also uses independent databases to enforce isolation, where each microservice owns its own data. The microservices approach is also tech-agnostic, which means that different services can be developed in different programming languages and still communicate with each other. This architecture philosophy uses several helper tools to keep things running. The first one is the API gateway, which represents a single point of entry, making sure requests are sent to the right service. Service discovery is there to help services find each other's network location. Next thing is the load balancers, which serve to distribute traffic so no single service gets overwhelmed. Lastly, we got message brokers which allow services to talk to each other asynchronously; if your developers use Kafka or RabbitMQ, these would be examples of message brokers. The microservices approach can offer high scalability, faster development, and better fault isolation. The downside is the increase of operational complexity and more difficult debugging; this means that a small and simple product won’t benefit from this approach, whereas a large and complex system will.
Machine Learning (ML) image
  • Mirza Sisic's profile image
Machine Learning (ML) is a subset of Artificial Intelligence that allows computers to “learn” from data. Ordinarily, in programming, we provide data and the expected output, and the machine does the work. In ML, it's a bit different; its goal is generalization, that is, training a model so it can use data it has never seen before and make a fairly accurate description. For ML to work, we need large collections of data. This data is then prepared/cleaned so the machine can read it - like turning text into binary numbers. Next comes the training, the algorithm analyzes the data in order to find patterns, for example, like in spam detection. The machine “learns” by being trained with a large dataset, and at the end, we can use unknown data to get results. ML can be supervised, unsupervised, and refined. Real-world examples of machine learning are the suggestions you see on platforms like YouTube or Netflix, the facial recognition feature on your phone, and language translation tools. In a nutshell, machines are much faster than humans in recognizing repeating patterns, and ML can be very useful, or very harmful, depending on how it’s used.
SCRUM image
  • Mirza Sisic's profile image
SCRUM is an Agile framework that focuses on iterative and incremental development, unlike Waterfall, where sticking to the plan is a must, SCRUM tries to be more flexible and adaptive. Its core pillars are transparency, inspection, and adaptation. SCRUM mentions three roles: the Product Owner who prioritizes the backlog, the SCRUM Master who facilitates the processes and coaches the team on Agile, and the Developers, the cross-functional team that does the technical work.The SCRUM team takes their work out of the product backlog, which is a list of features that need to be developed or worked on. Whatever gets taken from the product backlog to be worked on goes to the sprint backlog, which is a list of tasks being worked on in the current iteration cycle. Increment in SCRUM represents the done portion of the product that is produced during the sprint - the average sprint lasts two weeks, but it can be shorter or longer.Lastly, SCRUM comes with a few of its own events or ceremonies. The sprint is the heart of SCRUM, lasting a few weeks. At the beginning, it starts with the Sprint Planning meeting, where it's decided what will be worked on during the next sprint. There are also daily scrum meetings (stand-ups), which are usually 15 minutes (or less) and serve to make sure the team is in sync and that any blockers are identified and tackled. At the end of a Sprint, there is a review meeting where the work completed in the finished sprint is presented to the stakeholders. The last event is the retrospective, which is used by the team to reflect on what can be improved for the future.
Getting paid what you are worth as a software tester image
  • Mirza Sisic's profile image
Recognise your true value as a tester, navigate salary negotiations with confidence, and make the most of benefits beyond pay
Explain your job as poorly as possible! image
  • Mirza Sisic's profile image
There was a post on social media where people were asked to describe their job as poorly as possible. I said I basically click things and pester people with questions! How would you describe you...
STEC is complete 🎉: 19 modules, 59 voices, and a jam packed portfolio to show your growth image
  • Cassandra H. Leung's profile image
  • Beth Marshall's profile image
  • Jenny Bramble's profile image
  • Lisa Crispin's profile image
  • Suman Bala's profile image
  • Mark Winteringham's profile image
  • Dan Ashby's profile image
  • Janet Gregory's profile image
  • Lena Nyström's profile image
  • Elizabeth Zagroba's profile image
  • Jenna Charlton's profile image
  • Melissa Eaden's profile image
  • Maaike Brinkhof's profile image
  • Ash Winter's profile image
  • Hilary Weaver's profile image
  • Nicola Lindgren's profile image
  • Beren Van Daele's profile image
  • Gwen Diagram's profile image
  • Jesper Ottosen's profile image
  • Louise Gibbs's profile image
  • Parveen Khan's profile image
  • Daniel Knott's profile image
  • Simon Tomes's profile image
  • Sarah Deery's profile image
  • Ady Stokes's profile image
  • Christine Pinto's profile image
  • Oleksandr Romanov's profile image
  • Aj Wilson's profile image
  • Lewis Prescott's profile image
  • James Wadley's profile image
  • Brittany Stewart's profile image
  • Melissa Fisher's profile image
  • Joyz Ng's profile image
  • Scott Kenyon's profile image
  • Marie Cruz's profile image
  • Emna Ayadi's profile image
  • Ben Dowen's profile image
  • Veerle Verhagen's profile image
  • Rosie Sherry's profile image
  • Mirza Sisic's profile image
  • Richard Adams's profile image
  • Julia Pottinger's profile image
  • Rahul Parwal's profile image
  • Callum Akehurst-Ryan's profile image
  • Mahathee Dandibhotla's profile image
  • Karen Tests Stuff's profile image
  • Barry Ehigiator's profile image
  • Rabi'a Brown's profile image
  • Jesse Berkeley's profile image
  • Hanisha Arora's profile image
  • Philippa Jennings's profile image
  • Kat Obring's profile image
  • Nataliia Burmei's profile image
  • Judy Mosley's profile image
  • Hanan Ur Rehman's profile image
  • Emily O'Connor's profile image
  • Manish Saini's profile image
  • Maddy Kilsby-McMurray's profile image
Eighteen months, 19 modules, and 59 amazing contributors later, the MoT Software Testing Essentials Certification is complete! Looking back, my favourite part has been seeing so many community m...
Module 18 is now live in the MoT Software Testing Essentials Certificate! image
  • Marie Cruz's profile image
  • Mirza Sisic's profile image
  • Hanisha Arora's profile image
  • Manish Saini's profile image
During filming for Module 18 of the MoT Software Testing Essentials Certificate, Marie Cruz put a demo e-commerce site through its paces with a k6 Studio load test and managed to reveal a hidden we...
Low-code test automation tools: First impressions and recommendations for beginners  image
  • Mirza Sisic's profile image
Evaluate the pros and cons of low-code automation tools through a tester’s hands-on experience selecting a solution
Login or sign up to create your own MoT page.
Subscribe to our newsletter
We'll keep you up to date on all the testing trends.