4 followers
I like problem solving and making things pretty. I also like red.
It's Father's Day in the UK, so I thought I'd talk about my father, since he's the reason I got into coding in the first place. His story starts at...
Let's say you have an array of arrays like this: [ ['one', 1], ['two', 2], ['three', 3] ] and what you want are two arrays that are: ['one', 'two',...
This is a very cool trick I learned recently. The problem I have a card that contains an image and some text. The size of the image depends on the...
A few months ago I wrote some fireworks using SCSS and JavaScript. But I thought, what if you could have fireworks on cue, where you click? Today is...
This is a cool thing I saw on Kevin Powell's YouTube channel, and then actually used! The cool thing is that if you have a grid child with position...
I've known for a long time that centring an absolutely positioned div requires writing: top: 50%; left: 50%; translate(-50%, -50%); but until this...