Bytes.dev - Bytes: 10 things we learned turning 100

Bytes banner (Turn on images 😘)

🎉 Welcome to issue 100 🎉

We were planning on doing an awesome giveaway, but after looking at $NET this morning, it’ll have to wait until issue #200.


Old men gaming

Let's rage

10 things we learned turning 100

Just like real life, our old age has brought us a nice mix of wisdom, perspective, and IBS. We’ll try to share all three of those with you in this list of 10 things we’ve learned in the last 100 weeks.

1. Good frameworks borrow, great frameworks steal. And Next proved its greatness earlier this month when they announced that they’d be stealing adopting one of Remix’s killer features, nested routes, into the Next.js Router. But hey, framework competition/innovation is great for developers, so we’re not complaining.

2. If there’s an unintentional bug in our “Spot the Bug” section, we will get an email from literally everyone. Thank you (all 101,741 of you) for your vigilance.

3. Rust isn’t eating the web quite like we thought. Rust has been dominating the tooling space, but the whole “JavaScript is slow, so let’s rewrite our UI in Rust” hasn’t really panned out (at least not yet).

4. Having only high growth tech stocks in your portfolio is a bad idea. And it might be helpful to ask about the liquidation preference of the startup you work at 🙂.

5. Developers love writing CSS… as long as you can trick them into thinking they’re writing HTML. Hats off to Tailwind for figuring this out and becoming the most loved framework in the game.


Elmo likes the snow

Don't be like Elmo. [sponsored]

Sleuth.io can actually make your team more efficient

Tracking “developer productivity” is stupid.

Two reasons:

  1. Developers hate it (spying on me to see if I’m a “productive developer,” actually makes me a way less productive developer)
  2. It doesn’t work (“whoever writes the most lines of code/closes the most tickets is the best developer” is… really dumb?)

That’s why Sleuth is the best. It doesn’t track developer productivity – it only measures team output. And it actually works.

That’s because it captures your team’s DORA metrics – which multiple studies have shown are the only stats that actually matter. No worthless vanity metrics and no individual stats.

Sleuth automatically collects all that data for you (including deploys), unlike most other services that only collect git or issue tracker data. So you can trust that the numbers are legit.

It’s also worth noting that Atlassian uses Sleuth. That’s like being Chef Gordon Ramsey’s favorite restaurant – if it works for them, it’ll probably help you too.

Try it free and help your team reach its goals faster.


Old lady with a knife...

Death, taxes, and us in your inbox every week.

10 things we learned turning 100 – part 2

6. There are exactly three ways to fund open source. 1) GitHub sponsors (lol). 2) Form a pretend very real company and raise money from VC’s. 3) Get hired and/or acquired by Vercel. We don’t make the rules.

7. We don’t talk about Bruno CSS enough. This newsletter is mostly about JavaScript (and working through our early childhood traumas with niche humor), but CSS is having an Aubrey Graham style glow-up right before our eyes. After decades of pain, a bunch of amazing new CSS features are landing this year – cascade layers, container queries, color functions, and lots more. And I, for one, am stoked to write a little less JS.

8. Your kids grow up too fast. People try and warn you, but you blink – and all of a sudden Deno (which we wrote about in our first-ever issue) is turning 4 years old, partnering with Netlify to offer Edge Functions, and screaming to watch another episode of Daniel Tiger.

9. Anything that can live on the Edge, will end up living on the Edge. First it was JavaScript, and now it’s databases, thanks to Cloudflare bringing SQL to the edge with D1. We’re living through the glory days of the Edge, and like most things in life, Lady Gaga has already written the perfect song for this moment.

10. Making JavaScript memes in my mom’s basement is a lot more time consuming than we thought. But it’s worth the crippling anxiety we feel every Sunday night. Thanks for reading ❤️


Jobs

DevRel at ChiselStrike

ChiselStrike is looking for a hands-on DevRel leader with a track record of building and fostering communities around frontend, backends, and full-stack development. Need to know TypeScript and be willing to help build example applications that get developers excited about our product. Job is fully remote, but we have a preference for developers close to strong developer hubs (like USA, Canada, and Israel).

Loops is looking for founding full-stack Next.js engineers

Most email platforms are showing their age – heck, this email was sent via a platform that is 9 years old now! Loops is a modern and beautiful alternative for SaaS companies. Our stack is Next.js, Postgres, and Tailwind. We just wrapped YC and our seed funding raise led by Craft Ventures. Come join our core engineering team!

Senior or Staff Frontend Engineer - React (100% Remote)

Close.com is looking for 3 experienced individuals that have a solid understanding of React and want to help design, implement and launch major user-facing features. Close is a 100% globally distributed team of ~55 high-performing, happy people that are dedicated to building a product our customers love.

Yeti Labs is looking for Frontend (React + Typescript) developers

Yeti Labs is a human-centered frontend studio designing and building web apps for DeFi protocols. We love UI animations, innovative UXs, best practices, reusing our code, improving our workflow and learning new things. Come join our crew as we solve interesting challenges while having fun.


🔬 Spot the Bug – Presented by CarbonQA

CarbonQA provides QA services geared for dev teams. They work with your tools, talk with your team in Slack and let your devs be devs (not testers).

function factorial(n) {
  let result = 1;
  for (const i = 1; i < n + 1; i++) {
    result *= i; 
  }
  return result;
}

Cool Bits

  1. Jake Archibald from the Chrome Team gave a fantastic talk at Google I/O about bringing page transitions to the web with a new page transition API.

  2. Aspect lets you build React components visually and sync them to your codebase. Like most post-modern performance art, it was inspired by the developer console in Chrome and Safari.

  3. Simon MacDonald wrote about why he no longer uses Static Site Generators on his farm web apps.

  4. Antoine Craske wrote about Airbnb’s journey to microservices. Sadly, I’m pretty sure he wasn’t talking about making Airbnb service fees smaller.

  5. Aaron Boodman wrote a great Twitter thread on the backstory of Ajax (Async JavaScript and XML – not the soccer club, or the bleach brand, or the Toronto suburb, or the Greek legend from Homer’s Iliad).

  6. Google’s State of CSS 2022 was packed with a surprising amount of cool new stuff.

  7. Stripe created Markdoc – a powerful and flexible Markdown-based framework that’s basically MDX without JSX. Powerful and flexible, just like the Collison brothers (we have the same Bikram yoga instructor).

  8. Supabase just raised $80m for its open source Firebase alternative. Because if there’s one (more) thing we’ve learned in the last 100 issues, it’s that VC’s love OSS.


🔬 Spot the Bug Solution – Presented by CarbonQA

For loops work by assigning a value to the variable for each iteration, but variables defined with const can’t be reassigned. Instead, we should use let to define our variable.

function factorial(n) {
  let result = 1;
  for (let i = 1; i < n + 1; i++) {
    result *= i; 
  }
  return result;
}

ui.dev banner

Join thousands of ambitious developers who use our courses, community, and weekly events to scale their JavaScript careers.

 
Start your free 3-day trial
 

Have a product you think our developers will love?
Advertise in Bytes

youtube icon youtube icon twitter icon instagram icon

50 W Broadway Ste 333 PMB 51647 Salt Lake City, Utah 84101

Unsubscribe from Bytes

Older messages

Bytes: Why Web Components Lost

Monday, May 9, 2022

This week, we've got React hook turtles all the way down, Jörmungandr trying to take down JavaScript, and a surefire way to get on Linus Torvalds' good side. Welcome to #99. React hooks are

Bytes: making FTP cool again

Tuesday, May 3, 2022

“WTF is this?” First off, watch your language. The RWD Weekly newsletter (of which you were subscribed) has merged with Bytes (this newsletter) to bring you our educational, yet delightful dose of

Bytes: The Edge is just a spicy CDN

Tuesday, May 3, 2022

This week, we're experimenting with our runtime features, learning about The Edge™️, and (hopefully) avoiding accidental tax fraud. Welcome to #97. Some experiments pay off Node gets experimental

You Might Also Like

Data Science Weekly - Issue 540

Friday, March 29, 2024

Curated news, articles and jobs related to Data Science, AI, & Machine Learning ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

This Week in Rust #540

Friday, March 29, 2024

Email isn't displaying correctly? Read this e-mail on the Web This Week in Rust issue 540 — 27 MAR 2024 Hello and welcome to another issue of This Week in Rust! Rust is a programming language

The Value Of A Promise 🤞

Friday, March 29, 2024

How much is a promise from a tech company really worth, anyway? Here's a version for your browser. Hunting for the end of the long tail • March 28, 2024 The Value Of A Promise When you hear a

New Elastic Security for SIEM Training Course

Friday, March 29, 2024

Detect and respond to evolving threats ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ elastic | Search. Observe. Protect Detect anomalies and malicious behavior March

SBF gets 25 years 

Thursday, March 28, 2024

Sam Bankman-Fried is sentenced View this email online in your browser By Christine Hall Thursday, March 28, 2024 Welcome back to TechCrunch PM! The editorial team spent a chunk of the day discussing

💎 Issue 410 - Being laid off in 2023-2024 as an early-career developer

Thursday, March 28, 2024

This week's Awesome Ruby Newsletter Read this email on the Web The Awesome Ruby Newsletter Issue » 410 Release Date Mar 28, 2024 Your weekly report of the most popular Ruby news, articles and

💻 Issue 403 - Microsoft defends .NET 9 features competing with open source ecosystem

Thursday, March 28, 2024

This week's Awesome .NET Weekly Read this email on the Web The Awesome .NET Weekly Issue » 403 Release Date Mar 28, 2024 Your weekly report of the most popular .NET news, articles and projects

💻 Issue 410 - Node.js TSC Confirms: No Intention to Remove npm from Distribution

Thursday, March 28, 2024

This week's Awesome Node.js Weekly Read this email on the Web The Awesome Node.js Weekly Issue » 410 Release Date Mar 28, 2024 Your weekly report of the most popular Node.js news, articles and

💻 Issue 410 - JSDoc as an alternative TypeScript syntax

Thursday, March 28, 2024

This week's Awesome JavaScript Weekly Read this email on the Web The Awesome JavaScript Weekly Issue » 410 Release Date Mar 28, 2024 Your weekly report of the most popular JavaScript news, articles

📱 Issue 404 - Dependency Injection for Modern Swift Applications Part II

Thursday, March 28, 2024

This week's Awesome iOS Weekly Read this email on the Web The Awesome iOS Weekly Issue » 404 Release Date Mar 28, 2024 Your weekly report of the most popular iOS news, articles and projects Popular