← All posts

7 posts tagged with #js ❌

Lines98

πŸ“… Created 2 months ago β†’ updated after 1 month

🏷️ #js #ts #project

For all the old-schools, here is the Lines98 game.

Audio- and Video-content in ElectronJS

πŸ“… Created 2 months ago β†’ updated after 6 days

🏷️ #electron #js #ts

A story of a really annoying bug.
Spoiler: reproducible only on production builds; locally works well 🀑

Color: what it really means?

πŸ“… Created 4 years ago β†’ updated after 4 years

🏷️ #color #js #ts

The color is fun. But smart color is way more fun. How to work with color in smart way in JS? How to translate from human language into RGB/HSL or vice versa?

Think reactive (the code)

πŸ“… Created 6 years ago β†’ updated after 5 years

🏷️ #ts #archive #js #rx

πŸ”— Think Reactive

So we finished previous part with the reference to the code of the demo (GitHub page). It’s fully working version. But let’s recreate it from scratch.

Array methods (JS/TS)

πŸ“… Created 6 years ago β†’ updated after 6 years

🏷️ #js #ts #archive

The instance of Array (under the hood: the Array.prototype) provides a bunch of methods for handling its content in functional way. Almost any array method can be substituted with another one.
Why? ― because JavaScript is so JavaScript.

Despite of we can, it doesn’t mean we have to. So let’s take a deeper look at array methods and decide what’s the proper use case for each of them.

Promises (part two): the legend of the lost Promise

πŸ“… Created 6 years ago β†’ updated after 6 years

🏷️ #js #async #promises #archive

πŸ”— Async Javascript: tricks with Promises (part one)

There is one trick with Promises that might lead to nasty consequences: you might lose the async job. How it happens and how to avoid it?

Async Javascript: tricks with Promises (part one)

πŸ“… Created 6 years ago β†’ updated after 6 years

🏷️ #js #promises #async #archive

πŸ”— Promises (part two): the legend of the lost Promise

Promises provide a pretty nice interface for async programming in Javascript.