tedwuu (@tedwuu_) 's Twitter Profile
tedwuu

@tedwuu_

ID: 1759578828978913280

calendar_today19-02-2024 14:01:07

129 Tweet

501 Takipçi

572 Takip Edilen

jhey ▲🐻🎈 (@jh3yy) 's Twitter Profile Photo

CSS scroll-driven "CTA to Nav" 🗺️ nav { grid-template-columns: auto calc(var(--grow) * 240px) auto; transition: 1s var(--custom); } @​keyframes expand { to { --expand: 1; } } body { animation: expand steps(1); animation-timeline: --hero; animation-range: exit; }

Abraham John 🦄🦓 (@abmankendrick) 's Twitter Profile Photo

UI/UX Designers, I recently discovered a new place for website design inspirations. Website → seesaw.website Bookmark it for later 💜

Alex Xu (@alexxubyte) 's Twitter Profile Photo

7 must-know strategies to scale your database. 1 - Indexing: Check the query patterns of your application and create the right indexes. 2 - Materialized Views: Pre-compute complex query results and store them for faster access. 3 - Denormalization: Reduce complex joins to

jhey ▲🐻🎈 (@jh3yy) 's Twitter Profile Photo

Now CSS has JavaScript's Math.pow(), you could generate fluid font scales in CSS for viewport/container sizes 👀 (watch resize) :where(dd) { --min: calc(17 * pow(1.2, var(--lvl, 0))); font-size: clamp(var(--min), var(--fluid), var(--max)); ✨ } dd:nth-of-type(2) { --lvl: 2; }

jhey ▲🐻🎈 (@jh3yy) 's Twitter Profile Photo

video compression 😭 But yeah, this is basically TypeStyles™ It unlocks a lot of fun things you can do with CSS custom properties 🔓

Bytebytego (@bytebytego) 's Twitter Profile Photo

How does Git work? To begin with, it's essential to identify where our code is stored. The common assumption is that there are only two locations - one on a remote server like Github and the other on our local machine. However, this isn't entirely accurate. Git maintains three

How does Git work?
 
To begin with, it's essential to identify where our code is stored. The common assumption is that there are only two locations - one on a remote server like Github and the other on our local machine. However, this isn't entirely accurate. Git maintains three
Alex Xu (@alexxubyte) 's Twitter Profile Photo

What is the best way to learn SQL? In 1986, SQL (Structured Query Language) became a standard. Over the next 40 years, it became the dominant language for relational database management systems. Reading the latest standard (ANSI SQL 2016) can be time-consuming. How can I learn