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 Tips&Tricks

How to create custom stackable toasts

Whenever we build some app there is a chance we are going to need stackable toasts. Toasts are basically notifications that inform users of some action that they can’t control. E.g. network connection lost, data saved, there is an error. Sometimes we need to show multiple notifications at once, that is where stackable toasts are […]

Categories
Other Tips&Tricks

Blog ideas: 5 easy ways on how to get them

Having a blog can sound like a really scary thing. The most frequent question about blogging is how and where to find blog ideas. It is easy in the beginning, but once we start writing frequently (Webinuse is being updated almost every day) we can face creative blockage. Today we are going to talk about […]

Categories
Other Tips&Tricks

Handling HTML form security

During my career as a web developer, I created millions of different HTML forms. I remember the first website hack I have ever experienced was through HTML form. I am not saying that the following advice will protect you from everything, but it will give you enough form security (in my experience) that you can […]

Categories
JavaScript Tips&Tricks

console.log in JavaScript – Tips & Tricks

One of the most used feature in JavaScript is console.log(), especially for debugging. Even though it is widely used most of the time we do not utilize all the power and possiblities of console.log(). console.log This is the most famous and most popular way of logging, even though we have some more ways, but let’ […]

Categories
HTML Tips&Tricks

HTML is more than just a markup language

HTML stands for HyperText Markup Language and a lot of developers tend to look at it that way. But HTML can and should be utilized for much more than that. Below we will list several reasons why knowing HTML is important and how it can be used for more things than just as a page […]

Categories
Tips&Tricks Other

How to lower the number of database queries?

You are working on a big project like CRM, CMS, or something similar and you want to present as much information to your users as possible. But that comes with a cost. If you have a large number of queries to your database, it can create a bottleneck, or it can slow down your entire […]

Categories
CSS Tips&Tricks

CSS Content property – make it dynamic

The content property is mostly used with pseudo-elements like ::before and ::after. And in most cases, it’s empty, because it serves some other purpose like overlay, or line, etc. The content property is often underestimated due to its lack of a11ty. One of the major issues is that you can not translate CSS. In the […]