Oct 28Supercharge Your Laravel Caching with Cachetastic!Are you tired of slow API responses and sluggish database queries in your Laravel application? Do you wish you could sprinkle some magic dust and make your application’s performance go poof lightning fast? Well, we’ve got a secret weapon for you, and it’s called Cachetastic. The Need for Speed As Laravel developers, we’ve all…Laravel3 min readLaravel3 min read
Oct 25Simplify GoDaddy API Integration with This PHP WrapperIn the ever-evolving world of web development and domain management, a seamless integration with domain registrars like GoDaddy is essential. GoDaddy offers a powerful API that allows developers to interact with their system programmatically, providing a wide range of functionalities, from managing domains to handling accounts and performing domain-related tasks. …Godaddy3 min readGodaddy3 min read
Sep 12, 20226 Simple and Useful PostgreSQL Features that I wish I knew when I startedI use PostgreSql a lot in my working time. So recently, I spent some time refreshing and deepening my knowledge of PostgreSQL to improve my skills and experience in using it (writing and optimizing queries, creating new objects, etc.). And I found many awesome features and syntax sugar constructions that…Postgresql6 min readPostgresql6 min read
Jul 22, 2022Spotify Playlists To Help You Conquer The Work DayWe all need some help occasionally to get through the hum-drum of a workday. Some days you can focus like a laser, and other days, you realize that your brain is out to lunch. We’ve all been there! …Concentration3 min readConcentration3 min read
Oct 10, 2020Modern JavaScript: ES6. Part 1. Short and clear.ES6, also known as ECMAScript 2015, is a significant update to the language, and the first update to the language after ES5 was standardized in 2009. In this series of posts, I will try to cover the main changes that have been introduced in ES6.ES64 min readES64 min read
Sep 6, 2020Top 10 JetBrains IDE keyboard shortcutsCode editor keyboard shortcuts can save you a lot of time. They can replace several operations with just one. So a programmer who actively uses keyboard shortcuts will surpass the speed of writing code for a programmer that does not use shortcuts if they are equal in level of knowledge…Ide4 min readIde4 min read
Aug 18, 2020CSS PrecedenceIn a single HTML document possible that some CSS rules will conflict with one another. CSS uses a mechanism called the cascade to resolve any such conflicts. Before describing how the cascade works, we need to consider two of its main components — specificity and inheritance. SpecificityCSS3 min readCSS3 min read
Aug 7, 2020Types of CSS SelectorsCSS selector is the part of a CSS rule set that actually selects the content you want to style. Let’s look at all the different kinds of selectors Universal Selector Universal selector selects all the elements on a webpage. Example: * { margin: 0; padding: 0; } Element Selector Also referred to simply as a…CSS3 min readCSS3 min read
Apr 19, 2020Problems and solutions that I encountered while installing and configuring simplesamlphpBackground Last week I needed to implement authorization via SAML Security Assertion Markup Language (SAML) is an open standard for exchanging authentication and authorization data between parties, in particular, between an identity provider and a service provider. …Saml2 min readSaml2 min read
Apr 4, 2020Software Development Best PracticesA well-written project is more stable, easier to maintain, more enjoyable to work with. In the following post, we will discuss some best practices that will allow you to take your project to a new level. Best Practices Deliver Working Software Pair programming is a development technique in which two programmers work on a specific…Programming3 min readProgramming3 min read