TjekKlinik

Link: Tjekklinik
Framework: Laravel

This a pretty niche topic, but in Denmark, healthcare professionals and the clinics in which they work must be authorised through a government agency called SST (Sundhedsstyrelsen).

That same government agency has been gracious enough to provide a solution to search their register but in typical government fashion, the solution it is difficult to find, clunky, slow, and has a lot of downtime (it is even down at the time of writing, and has been for hours).

When my wife opened her own clinic and was authorised, it occurred to her how difficult is was to even find the search form, much less use it. This left her concerned for the generel public, as they would absolutely no idea that the register existed or how to search it.

In the beginning I just created a sort of wrapper around the original search form, narrowing the fields down to two (one for the name of the clinic, and one for the name of the person), and then simply live-refactoring the information to be more easily digestible. To prove my point, I even added a button to switch between the original design and the "updated" design.

As with all "wrappers", the stability of the product is directly dependant on what it wraps, so it didn't take a long time before I felt obligated to upgrade TjekKlinik to not just wrap the data, but actually build my own database. Having already built the data-extraction layer of the site to display the results in a more readable way, it was pretty straight-forward to simply store that information in a structure I deemed appropriate.

TjekKlinik is now faster and way more stable than what it's based on, but it is still dependant on the original to provide the data. There is no way around that... for now.

Addendum: Per request, I have also added cosmetic tattoo parlours and tattoo artists, since they also need to register with the government agency SIK (Sikkerhedstyrelsen). The SIK search form is actually even more simple than the one on TjekKlinik (only one field), but multiple people expressed the opinion that they would like for these two forms to be in one place.