Category «Programming»

Category about anything related to programming. I’ll put here posts about web programming, scraping, bots, back-end things, etc.

How to debug TypeScript in WebStorm?

typescript debug webstorm

In this article, I want to show you how WebStorm can debug TypeScript code. As you know, TypeScript code should be compiled into JavaScript before running in a browser or NodeJS. After compilation code will not be the same. If you want to put a breakpoint and check variable values, you have to tell the …

How to write your first Solidity smart contract?

crypto ship in space

Hello folks! Maybe, as you might know, I am learning blockchain development. My current focus is Solidity smart contract development. I decided to make a simple article to show you how to write your first Solidity smart contract. I don’t think you will learn a lot. But I want to show how it is simple …

How to download Vimeo video using Python?

How to download Vimeo video using python

This article is oriented toward newbies. I want to teach you a bit about coding things like downloaders from video hosting providers. Of course, you could use ready-made libraries to solve that task, which is a perfect solution. However, if you prefer to learn how to do it by yourself let’s go undercut and learn …