No more console.log

How much console.log can be written here and there? At the beginning, I didn’t mind checking the status of the application with this command added here and there to the code, but I’m starting to write more complex applications and decided to look for some alternatives.

Read More

JavaScript ES6

Back to learning ES6 JavaScript. So far, I have learned to write code in the ES5 version. I know that this is an old version of the code and I know that no one uses it now, because ES6 introduced a lot of nice ease in writing code, but you can still find applications written […]

Read More

Web server on Virtual Machine

In this tutorial, I will show you step-by-step how to prepare your own web server on a virtual machine. To do this, you’ll need Oracle VM VirtualBox and the Ubuntu Server distribution. At least I work with such a pair of tools and it works well. Before we get down to the business, I would […]

Read More

A web developer in a regular week

What a web developer do, when nobody watching? I polished the Frontend Quiz application and launching it, then playing with the server in a virtual machine. It wasn’t a week devoted to improving skills, but rather to reminding the skills already acquired. Clearing the bugs caught by Eslint and the fight to run Apache2 on […]

Read More

Git Flow

Are you writing code but not using a version control system? This is probably worse than writing a thesis without saving a document every 10-15 minutes. Of course, you can, but why this extra work when something goes wrong? In this article, I will present the easiest way to use the version control system for […]

Read More

Continuous improvement, it is worth my time?

There comes a moment in the life of every web developer when we ask ourself Is it good to continuously improve this application? We learn new knowledge and it turns out that a project can be written better. Continuous improvement it’s something natural in the IT world. But it’s also good to know when to […]

Read More

How good you know JavaScript?

“So you think you know JavaScript” is the title of one of the JavaScript bibles available on the Internet and I think I know where the idea for the title of the book came from. This week I was working on my first major JavaScript application and I understood one thing: JavaScript is a powerful […]

Read More

How to complicate your life when building JavaScript applications?

How to complicate your developer life? It is enough to do more than what the lecturer suggests during the course. During the Modern JavaScript course, I was supposed to do a simple quiz in the console, but I found that if I was to do a quiz, it must display normally in the browser. Ultimately, […]

Read More

First webpage made in HTML, CSS, and JavaScript

The first “big” website based on HTML, CSS, and JavaScript is behind me. The project was implemented comprehensively from the concept, through implementation, to waiting for the last materials from the client. I would never have guessed that the preparation of materials for a website may take the same or more time than writing the […]

Read More

How to use Grid properties in CSS to build webpage looks?

As announced, this week my focus has been entirely on the CSS Grid properties. The first theory, then practice. Knowing Flex and Grid, I seriously wonder why Bootstrap or Bulma needs it? I wonder so much that I think I’ll put one of these backgrounds in the science plan for 2020.

Read More