Types of PostgreSQL Indexes. Short and clear.
There are several types of indexes in PostgreSQL. Beginners or those who have little to do with the databases use the index that PostgreSQL creates by default (B-...
SOLID principles. How to create maintainable code.
In a previous post, we looked at principles to avoid when writing code. You can read it here. In this post, we will look at SOLID design principles, programming ...
STUPID principles. What you should avoid when writing code.
If you want to write understandable, flexible and maintainable code, you need to know how bad code looks like first. In this post, I will discuss bad practices th...
Automated Testing With JUnit, Selenium and Managing Database State
Maven template for automated testing with JUnit, Selenium and managing database state with DbUnit.
SQL Injection Prevention
SQL injection is one of the most accessible ways to hack a site. The essence of such injections is the injection of arbitrary SQL code int...
Laravel Eventbrite Api Wrapper
Eventbrite API wrapper for Laravel.
Goals for 2019.
A little more than a week left for 2019. It’s time to write a list of goals for the next year.
Boost Your Coding Speed At Least 2 Times. Simple Technique.
Directly the coding process can can be roughly divided into the following steps: Thinking about the solution of the problem. Typing yo...