Maciek Sitkowski
Maciek's Blog

Maciek's Blog

Follow
Follow
homebadges

How to split string to strings of equal length in JavaScript?

Dec 10, 20221 min read

Solution 'abcdabcdabcdabcdabcd'.match(/.{1,4}/g) // ['abcd', 'abcd', 'abcd', 'abcd', 'abcd'] Here's original StackOverflow answer. Context In...

How to split string to strings of equal length in JavaScript?

Advent of Code - preparing input data

Dec 5, 20222 min read

When solving Advent of Code puzzles, sometimes you will come across an input data, that consist of two parts: configuration and instructions: [S]...

Advent of Code - preparing input data

Improve your problem solving skills with Advent of Code

Dec 1, 20221 min read

It's December already, so it's time for another edition of Advent of Code. Advent of Code is an Advent calendar of small programming puzzles for a...

Improve your problem solving skills with Advent of Code

How to add overlay color to <img />

Nov 26, 20221 min read

If you want to change the color of a remote image, that you display like this: <img alt="freeCodeCamp logo" ...

How to add overlay color to <img />

How to query image dimensions from Sanity?

Nov 25, 20221 min read

I haven't used Sanity before, so it took me a while to figure out, how to get photos dimensions using GROQ queries. Here's how I've done it: GROQ...

How to query image dimensions from Sanity?

How to find all active GitHub Codespaces?

Nov 18, 20222 min read

Update: It's now possible to view Codespaces in GitHub: github.com/codespaces Today, I've run out of GitHub Codespaces storage. It was a bit...

How to find all active GitHub Codespaces?