Been quiet here for a while.
Finally sitting down with a proper database course to sharpen my full-stack skills, and building more with AI instead of just reading about it.
Curious where it takes me!
Some thought I've been on lately - "The React Performance Rabbit Hole I Fell Into (And How I Climbed Out)" #react#CodeNewbies#DEVCommunity#rerender https://t.co/fh7kLtCX0G
This is insane 🤯
Grok 3 just wrote out an extremely detailed 6-mo SEO plan for a brand pressure washing business in Tokyo starting from scratch (did this as a test for a friend)
The amount of detail is crazy 🤩
Check it out 👇🏻
https://t.co/eVwk7dN9XX
Tech people!
I'd like to you to turn your attention to this interview with @unclebobmartin by @ThePrimeagen
This is a good interview.
I really like how UnclueBob adds more colour to the whys behind his guidance when it comes to clean code.
I like especially that part when Prime says that abstractions make a flow hard to comprehend because too many things you have to keep in your mind.
UncleBob says, how the abstraction is done is wrong in this case. From this it is clear that the meaning for another human is important. It also opens another thousand can of worms as human communication is everything but not stable meaning.
All in all. The interview is good and the insights we get is great.
Thanks for both of them for this interview.
https://t.co/a0dSh9u5M7
I’m attending JSNation – the main JavaScript conference of the year. You may join me there for free with 10k other JS engineers and 40+ great speakers 🥳
#javascript#jsnation https://t.co/Lw3QZPeB1A
I’m attending JSNation – the main JavaScript conference of the year. You may join me there for free with 10k other JS engineers and 40+ great speakers. Just follow this badge.
#javascript
https://t.co/Lw3QZPe3c2
#jsnation
CSS Trick ✨
You can create this glitch hover effect by animating pseudoelement content 🎬
button:hover span:after {
animation: flip 0.2s calc(var(--i) * 0.05s);
}
@keyframes flip {
20% { content: '_'; }
40% { content: var(--c1); }
60% { content: var(--c2); }
}
It's a funky little track that allows you to animate text flipping with CSS 🤙
Leaning into custom properties, you can make each flip animation random with inline styles 🎨
<button>
<span
style="--i: 0; --c1: 'x'; --c2: '$'; --c3: '≈';"
>C</span>
<span
style="--i: 1; --c1: 'ç'; --c2: '&'; --c3: 'π';"
>l</span>
<!-- Other characters -->
<span class="sr-only">Click Me</span>
</button>
You make use of each character within the keyframes above. And "--i" communicates the index that you can use for the animation-delay 🙌
That's all there is to it!
As always, any requests or suggestions, hit me up! 🙏
@CodePen link below! 👇