How To Make Application In Elm
Reading Time: 2 minutes
TL;DR In the previous post, we learned how to handle Maybe Elm Value. But our Application did not show a like button. In today’s post, we explain how we solved…
How To Pattern Match Lists In Elixir
elixir, functional programming
Reading Time: < 1 minute
TL;DR In the previous post, we presented Variables In Elixir Pattern Matching. Today we explain how to make pattern matching on Elixir lists. This post is part of the functional language…
What Is Directed Graph
BBST Foundations, introduction
Reading Time: 2 minutes
TL;DR In the previous post, we recapped some of the oldest software testing definitions. Today we introduce Directed Graphs that are an important foundation for many test coverage criteria. We…
Testing The Earthquake Science
Reading Time: 6 minutes
TL;DR In 2020 my hometown Zagreb was hit by two earthquakes. In this post, I will try to sublime how an earthquake works and why we can not predict earthquakes….
Risks Related To Software Upgrade
Reading Time: 3 minutes
TL;DR In the last post, we presented a Recipe For Creating A Bug Taxonomy. The idea was from this excellent paper: Bug Taxonomies: Use Them to Generate Better Tests [Vijayaraghavan,…
Excellent Example How To Check Are We Building The Right Thing
Reading Time: < 1 minute
TL;DR This week’s reading list gave you an excellent checklist on how to verify we are building the right thing. According to Beizer-Testing levels, a development organization could be at…
Handling Elm Maybe Value
Reading Time: < 1 minute
TL;DR In the previous post, we sent an HTTP request using Elm architecture. This post is part of the functional language series, and it is based on a remarkable book,…
Variables In Elixir Pattern Matching
elixir, functional programming
Reading Time: 2 minutes
TL;DR In the previous post, we presented the Elixir constants Pattern Matching. Today we move onto Variables In Elixir Pattern Matching. This post is part of the functional language series,…