Imports in Python
Any program you start developing, which turns into a multi-file project has the same problem. How do you use code from a different file? In Python, this is done with the import keyword. But it isn’t as easy as you … Read More »
Technology, programming, engineering
Any program you start developing, which turns into a multi-file project has the same problem. How do you use code from a different file? In Python, this is done with the import keyword. But it isn’t as easy as you … Read More »
Two months ago I switched my internet provider from a DOCSIS-based to a DSL-based one. I thought that the horrendous IP-telephony quality of my previous provider would be much better with a different, more reliable one. I should have known … Read More »
Last time I described how to set up WordPress locally using Docker. This was necessary to make a playground for a few pet projects I have. One of them is setting up an online shop using WooCommerce. I want to … Read More »
When you wonder if you want to start an online shop one questions inevitably appears. What platform should I use? Usually the choice is between Shopify and Woo-commerce on WordPress. One is a Software-as-a-Service company which charges you a monthly … Read More »
Lately I dove into packaging python code. And I wrote about it here. However, I concentrated on making a minimal package, which is not really ready for publishing. To bring it closer to something I wouldn’t be ashamed of, I … Read More »
I have a pet project. A program which I intend to use once I finish it (if I finish it). You know how it is, right? Well, it is not the first project I have started, and many of them … Read More »
Yes, I said it. And yes, I insulted the vast majority of the Software industry (probably including You). The fact is, it is an everyday thing to hear: “I have this great idea for a React App/Android App/iOS App.” Yeah, … Read More »
Good morning everyone! Did I wake you up? Sorry, I didn’t mean to. Or maybe, just this time, I did! Because we’re talking about push notifications and how they’re done right – I present to you: Server-sent events! What’s the … Read More »
In the past 15 years software development has changed a lot. And most of the time, it got better. And especially, when talking about the development environment. Remember how you had three different Ruby-on-Rails projects, each using a different Ruby … Read More »
I have a problem. I started a project that uses Flask for back-end and React for front-end, in an attempt to learn both. Now, I want them in separate repositories, but still I want to use them in a third, … Read More »