I’m right now in process of preparation of the translations to one of my clients’ sites. During this process, I have to generate tons of images for various languages. The…
Tag: programming
For most of my developer’s life, I was not aware of what git rebase is for. Oh, of course, for most of my life git was not existing. Also, I…
I have a bunch of DS18B20 sensors in my ventilation system. The measurements are used to generate stats and to adjust the heating. From my point of view, it is…
The issue I want to address today is not only related to the document.querySelectorAll but also to the range of DOM related functions such as document.getElementByClassName or in general document.getElementBy[…].…
We noticed a strange issue when working with MySQL in ColdFusion. The date and time in the database field were set to ‘2020-01-10 00:38’ but when it reached our web…
For my pet projects, I’m using SQLite a lot. The database engine is fast, small and serves well for small amounts of data. What is most important for me –…
I know that the title is rather a clickbait. It should be. If you are not using virtual environments for Python, you should start. This is really easy and can…
Recently I came across an issue with setting the HTML Header in my ColdFusion code. I simply tried to add such a header: To my surprise, instead of the document…
I’m just about to host the small Machine Learning workshop. I don’t want attendants to install Anaconda and use Jupyter Notebooks on their computers. I simply want to run Jupyter…
I tend to forget this simple solution so this post is mostly for myself. In the Django ORM, we are using order_by to sort results of the query by one…