Categories
Other

What Every Developer Should Know About SEO

As a developer, you’re no stranger to the challenges of creating and maintaining a successful online presence for your projects. But have you ever considered how search engine optimization (SEO) can help you reach your goals more efficiently? SEO doesn’t only mean better ranking for your (client’s) website. It means more visits, more exposure, more […]

Categories
JavaScript

Rest and Spread Operators Demystified: A Beginner’s Guide to Enhancing Your Programming Skills

In 2015 ES6 (ECMA Script 6) was introduced. It brought a lot of new and improved features. Two features, among others, that we got with ES6 are rest and spread operators. If you’ve been learning JavaScript or have tried some general programming, you’ve probably come across these handy little tools. In this article, we’ll explore […]

Categories
Other Tips&Tricks

I tried Google Cloud products and here is what every beginner should know

I’ve been a web developer for quite some time. More than a decade (I am getting old, I know 😅). So far, my projects were usually predefined in terms of the stack. I worked a lot for the government and you know those guys. They, usually, use mature stuff. The stuff that has been long […]

Categories
JavaScript

Top 3 ways to easily detect when a user leaves a page using JavaScript

There are times when we need to detect when a user leaves a web page or clicks on a link. Sometimes we use this data to change something on the website, sometimes to send analytics and sometimes we just need to know this because of something else. In this article, we are going to cover […]

Categories
CSS

Everything we need to know about CSS Borders

The CSS border properties allow us to style element’s border. We can set the width, style, radius, an d color of element’s border. We can style borders in three different ways. Specifying CSS border properties individually Specifying every border individually Using shorthand property Specifying CSS border properties individually There are four properties that we can […]

Categories
JavaScript

JavaScript String length

We have already talked about the Array length property, JavaScript Array length – the definitive guide, and now we are going to explain the JavaScript String length property. The JavaScript String length, .length, property is pretty similar to the Array length property with a few little differences. According to MDN: The length property of a […]

Categories
JavaScript

JavaScript substring method through examples

We have covered 2 easy ways to check if JavaScript string contains a substring and JavaScript String replace method, regarding substrings. In this article, we are going to see what is JavaScript substring method and what can we use it for. What is JavaScript substring method JavaScript substring() method returns the part of the string […]

Categories
Other

What is 2captcha?

So recently I was surfing the web and I’ve stumbled upon some interesting website called 2captcha. They basically offer API for solving, almost, any type of captcha. But first, let’s get straight with terms. What is a captcha? According to Google: CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) is a […]

Categories
JavaScript

JavaScript string replace

In our latest JavaScript article, we covered 2 easy ways to check if a JavaScript string contains a substring. In this article, we are going to cover the JavaScript string replace method. According to MDN: The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The […]

Categories
WordPress

WordPress post loop – part 1

WordPress post loop or The Loop, as WordPress documentation like to call it, is one of the crucial parts of WP. WordPress is CMS, currently the leader on the market, and it needs to have a super-easy way of displaying posts. That is what the WordPress post loop is for. Unlock the Full Potential of […]