Danijela Mikuličić

Danijela Mikuličić

5 articles

symfony-translation-process-automation
Backend, Oct 4, 2019 - 12 min read

Translation process automation with Symfony

Add a new language and all translations to a project that is already fully translated.

building-multi-file-static-logger-php
Locastic, Backend, Apr 19, 2019 - 5 min read

Building a multi-file static logger with PHP

Here’s how you can develop a logger functionality by simply using static inheritance.

debugging-the-un-debuggable
Backend, Feb 14, 2019 - 5 min read

Debugging the un-debuggable

We all have a lot of different ways of debugging. Some use dumps or logs, others use various debugging tools etc. But what to do when you can’t use any of those? In the past few months, I had several different features that required connecting to an external service or an API. During development, I… Continue reading Debugging the un-debuggable

how-to-variable-variables
Backend, Dec 3, 2018 - 5 min read

How to: Variable variables

Variable variables are obscure parts of your code starting with a double dollar sign (eg. $$example)

how-to-minimize-a-painstakingly-large-amount-of-conditions-by-using-good-old-fashioned-boolean-algebra
Backend, Nov 7, 2018 - 5 min read

How to minimize conditions with Boolean algebra

As developers, all of us will sometimes come along with a problem that will make you think out of the box.