Nice! Just FYI, Radium from Formidable is a little older in the CSS in JS space. If you're new to the CSS in JS space, styled-components and Emotion are great libraries to check out as well and provide more functionality.
Yeah I'm really new to CSS in JS, I'm switching from Angular to React so they're quite different in this aspect. I will definitely try them out. Thanks a lot for letting me know ^_^
I learned that in 2020, in NodeJS, the thing to use now for streams is the built-in pipeline. Previously we dealt with streams like this:
res.pipe(outStream) // Pipe an http response to a destination
A few years ago, we were told to use pump, a separate module in npm. But now, pipeline is built into NodeJS and you can just use that!
So, pipelining can now look like this:
pipeline(res, outStream) .then(handleDone) // .then if you promisified "pipeline" .catch(handleError)
This way, you can have an array of streams that might be conditionally set:
const streams = [res] if (res.headers['content-encoding'] === 'gzip') { streams.push(createGunzip()) } streams.push(outStream) pipeline(...streams) // We can now use the spread syntax with pipeline. ...
A design-minded front-end developer focused on building beautiful interfaces & experiences. Loves being multidisciplinary, problem-solving, and learning new things.
Nice I learned about CSS
:focus-within
pseudo-class even wrote a post on it.Applying CSS :focus-within
Gift Egwuenu ・ Feb 13 ・ 2 min read
Same here, thanks ;)
I learned different ways of adding CSS to React components (inline, in global css file and using Radium). :)
Nice! Just FYI, Radium from Formidable is a little older in the CSS in JS space. If you're new to the CSS in JS space, styled-components and Emotion are great libraries to check out as well and provide more functionality.
Keep learning! 🔥
Yeah I'm really new to CSS in JS, I'm switching from Angular to React so they're quite different in this aspect. I will definitely try them out. Thanks a lot for letting me know ^_^
I've been having some issues with my GIT repo and this is my lesson of the week: When in troubles, use
--force
.I learned that in 2020, in NodeJS, the thing to use now for streams is the built-in
pipeline
. Previously we dealt with streams like this:A few years ago, we were told to use
pump
, a separate module in npm. But now, pipeline is built into NodeJS and you can just use that!So, pipelining can now look like this:
This way, you can have an array of streams that might be conditionally set:
(FYI: it's also a good idea to read about Backpressuring in Node)
I learned how (and why) to combine
.editorconfig
and Prettier.Prettier uses some of editorconfigs config.
I got to know about creating a server with Express thanks to Brian Holt's Intro to Web Development .v2 course on Frontend Masters.
I dove deep into the data structure
hash tables
. I learned about which instances they should and shouldn't be used for in regards to code efficiency.I learned the shortcut to find and replace in VS Code shift + H
I learned React & Rails this week!
I learned jwt authentication using vue.js and django rest framework this week
Made a parking finder app on android native using the good old maps sdk and firebase realtime database
I learn how to let go stuff I have no control on.
Félicitations, puis moins stressant. A+
I'm learning about how to build a design system and how it works 🎨