Xiaoru
πŸ‡¨πŸ‡³ CS student @KITKarlsruhe πŸ‡©πŸ‡ͺ πŸ‘¨β€πŸ’» Polyglot Programmer πŸ“Ή Author @eggheadio @methodcoder πŸ‘¨β€πŸ« Learn X in Y Tweets 🎸 Lousy musician πŸ–ΌοΈ Bob Ross fan
Apr 1, 2020 β€’ 11 tweets β€’ 5 min read
πŸ”₯ Thrilled to release a brand new video series - Introduction to Next.js 9! πŸ₯³

20 minutes, 9 lessons - covering everything you need to build a performant Full-Stack React app

Best thing? It's FREE!! 🀩

Watch it now on @eggheadio πŸ‘‰ egghead.io/playlists/intr…

An overview πŸ‘‡ First, we will learn how to set up a new Next.js 9 project from scratch πŸ‘·β€β™€οΈπŸ—πŸ‘·β€β™‚οΈ

egghead.io/lessons/react-…
Dec 2, 2019 β€’ 9 tweets β€’ 5 min read
Having a hard time wrapping your head around React state management, and getting tired of writing boilerplate for Redux?

Let's check out #MobX - everything becomes so simple and effortless πŸ˜ƒ

πŸ‘‡ Here's a 5-tweet MobX + React crash course for you! πŸ₯³ 1/5
MobX is a "reactive" state management library.

We directly mutate the state. Because we use MobX to observe and track mutations, the UI will be auto-updated, like cell updates in Excel. Network requests can also auto-send when conditions are met.

Everything is automatic!
Nov 1, 2019 β€’ 16 tweets β€’ 8 min read
Always wanted to use #GraphQL for your new projects, but never got time to learn how it works? πŸ˜ƒ

Let's change that this weekend! πŸ™Œ

πŸ‘‡ Here's a 10-tweet GraphQL crash course for you! πŸ₯³ 1/10
GraphQL is a query language for making flexible API calls.

We describe what we want in a single request with nested fields, then we will receive a data payload of the exact shape.

No need to make many small requests to stitch data together or over-fetch unwanted parts!
Oct 18, 2019 β€’ 17 tweets β€’ 9 min read
Always wanted to check out @sveltejs (aka. "the next big thing in web dev") but never got time for it? ⏰

πŸ”₯ I've got a 10-tweet crash course for you! πŸ‘‡

(Spoiler alert: Svelte is so intuitive and easy to use that you may feel like you already know it! πŸ₯³)

#javascript #svelte 1/10
How Svelte works:

- Compiler: Doesn't ship a Svelte "library" to users, but build-time optimized plain JS
- Components: App is made up of composable UI elements
- Reactive: Event/User interaction triggers chain of state changes, autoupdating components throughout entire app