Even AWS – being one of the most professional cloud platforms globally – can sometimes produce an error that tells you nothing. Have you ever been in a situation where you need your IAM permissions to be as...
Category - Other
Disabling autocomplete on form inputs with HTML (also Chrome)
Many people are struggling to disable autocomplete on their forms – especially in Chrome. For some reason, Chrome is very stubborn and tries to autocomplete fields no matter what. Usual tricks, such as...
Social Media Network Database Design using Graph Database (Neo4j)
Although relational databases are a powerful tool, they don’t fit in well in situations where many, many joins are required. The execution time becomes very high as soon as you do 3 or 4 joins on tables with tens...
Authentication with JWT, Redis and NodeJS
This is one of the short articles that should help you quickly set upย basic form of authentication with JWT. I’m guessing that you already know what JWT is. Writing custom authentication flow can be a pain in the...
Serverless architecture… not as perfect as you’re told!
I bet you came across this article when you wanted to know more about differences between those three. Or you wanted to know if these platforms are as good as people tell you.ย I’ve been through many home projects...
JavaScript – Text to dots that explode on hover (Source code)
0. Introduction In this tutorial, I will show you how to convert text to dots and add an explosive behavior on hover. This tutorial is based on a source code of Coding Train’s Challenge #59...
Java Web Service (API) Tutorial with Source Code
Java web service – step-by-step In this tutorial I will show you how to create a very simple Java web service using the newest (to this date) Java 11, Javalin microframework, Gradle, MariaDB and JDBC connector...
6 Tips For Cross Platform Mobile Game Development
Everybody likes an idea of making easy money by creating a simple mobile game and placing ads and in-app purchases in it. There is many of them out there that took minimum time to develop and now generate ridiculous...
Show MySQL import progress using Pipe Viewer
This is a short tutorial on how to show MySQL import progress using an app called Pipe Viewer. It’s very easy to install and use, but there is a few points which require explanation, so I will describe them here...
Poker console game with AI in C++ (source code)
Poker console game introduction This tutorial is a reflection of what I had to program for a school’s mandatory project. I developed a simple C++ Poker console game with adjusted rules and logic. The rules do not...
Import/export tables or databases to .sql in MySQL (examples)
This tutorial will cover basic import and export terminal procedures in MySQL. Each of the procedure is explained through an example. All of the export commands are also available remotely, all you have to do is to...