Top Related Projects
😎 Awesome lists about all kinds of interesting topics
:books: Freely available programming books
Interactive roadmaps, guides and other educational content to help developers grow in their careers.
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
A complete computer science study plan to become a software engineer.
Quick Overview
The bnb/awesome-developer-streams repository is a curated list of developers who stream their coding sessions on various platforms. It serves as a comprehensive resource for those interested in watching live coding streams, learning from experienced developers, and engaging with the programming community.
Pros
- Provides a diverse range of developers across different programming languages and technologies
- Regularly updated with new streamers and information
- Well-organized with categories and easy-to-read formatting
- Includes links to streamers' channels and schedules
Cons
- May become outdated if not consistently maintained
- Relies on community contributions, which can lead to inconsistent quality or bias
- Limited information about each streamer beyond their name and streaming platform
- Lacks a search or filter function for easier navigation
Note: As this is not a code library, the code example and quick start sections have been omitted.
Competitor Comparisons
😎 Awesome lists about all kinds of interesting topics
Pros of awesome
- Much larger and more comprehensive, covering a wide range of topics and technologies
- Highly curated with strict guidelines for inclusion, ensuring high-quality resources
- Extremely popular with over 250,000 stars, indicating a large and active community
Cons of awesome
- Can be overwhelming due to its vast size and breadth of content
- Less focused on a specific niche, making it harder to find specialized resources
- May include outdated links or resources due to its large scale
Code comparison
While both repositories are primarily lists of resources, awesome includes a more structured format for contributions:
## Category Name
- [Resource Name](http://example.com/) - Short description, no more than 100 characters.
awesome-developer-streams uses a simpler format:
### Streamer Name
#### What they stream
#### Streaming on:
#### Links:
Summary
awesome is a massive, well-curated collection of resources covering numerous topics, while awesome-developer-streams focuses specifically on live coding streamers. The former offers a broader range of content but can be overwhelming, while the latter provides a more targeted list for those interested in developer streams. Both serve different purposes and can be valuable depending on the user's needs.
:books: Freely available programming books
Pros of free-programming-books
- Extensive collection of free programming resources, including books, courses, and interactive tutorials
- Covers a wide range of programming languages and topics
- Well-organized and regularly updated by a large community of contributors
Cons of free-programming-books
- Lacks real-time interaction and live coding demonstrations
- May not provide the most up-to-date information for rapidly evolving technologies
- Can be overwhelming due to the sheer volume of resources available
Code Comparison
While both repositories are primarily curated lists, free-programming-books includes some basic Markdown formatting:
### Index
* [0 - Meta-Lists](#0---meta-lists)
* [1 - Programming Languages](#1---programming-languages)
* [2 - Frameworks and Libraries](#2---frameworks-and-libraries)
awesome-developer-streams uses a similar structure but with different categories:
## Table of Contents
- [Developers & Streamers](#developers--streamers)
- [Programming Languages](#programming-languages)
- [Game Development](#game-development)
Both repositories serve different purposes: free-programming-books focuses on providing a comprehensive list of free educational resources, while awesome-developer-streams curates a list of developers who stream their coding sessions. The choice between them depends on whether you prefer self-paced learning from books and courses or real-time interaction with experienced developers.
Interactive roadmaps, guides and other educational content to help developers grow in their careers.
Pros of developer-roadmap
- Provides comprehensive visual roadmaps for various tech stacks and roles
- Regularly updated with new content and technologies
- Offers interactive versions of roadmaps on the project website
Cons of developer-roadmap
- Focuses on career paths rather than specific developer resources
- May be overwhelming for beginners due to the breadth of information
- Lacks direct links to learning materials or tutorials
Code comparison
While both repositories are primarily content-based and don't contain significant code, developer-roadmap includes some JavaScript for its interactive features:
// developer-roadmap
export function RoadmapHeader() {
return (
<div className='bg-gray-50 py-5 sm:py-10'>
<Container>
<div className='mt-4 sm:mt-7 flex items-center justify-between'>
<h1 className='text-2xl sm:text-3xl tracking-tight font-bold text-gray-900'>
{roadmapTitle}
</h1>
</div>
</Container>
</div>
);
}
awesome-developer-streams, on the other hand, is primarily a markdown file with no significant code content.
Both repositories serve different purposes: developer-roadmap provides career guidance and learning paths, while awesome-developer-streams offers a curated list of developer live streams. The choice between them depends on whether you're looking for career direction or live coding resources.
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Pros of javascript-algorithms
- Focuses on practical implementation of algorithms and data structures
- Provides code examples in JavaScript, making it accessible for web developers
- Includes explanations and complexity analysis for each algorithm
Cons of javascript-algorithms
- Limited to JavaScript implementations, whereas awesome-developer-streams covers multiple languages
- Doesn't provide real-time learning resources like live coding streams
- May be overwhelming for beginners due to its technical depth
Code Comparison
javascript-algorithms:
function bubbleSort(arr) {
for (let i = 0; i < arr.length; i++) {
for (let j = 0; j < arr.length - 1; j++) {
if (arr[j] > arr[j + 1]) {
[arr[j], arr[j + 1]] = [arr[j + 1], arr[j]];
}
}
}
return arr;
}
awesome-developer-streams:
- [Suz Hinton](https://www.twitch.tv/noopkat)
- What: IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript
- When: Sundays at 4:30pm EDT
- Language: English
Summary
javascript-algorithms is a comprehensive resource for learning and implementing algorithms in JavaScript, while awesome-developer-streams is a curated list of developer live streams across various topics and languages. The former is more focused on technical content, while the latter provides a diverse range of real-time learning opportunities.
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
Pros of system-design-primer
- Comprehensive coverage of system design concepts and principles
- Includes practical examples and case studies of real-world systems
- Provides a structured learning path for system design interviews
Cons of system-design-primer
- Focuses primarily on theoretical concepts rather than live coding or practical demonstrations
- May not be as engaging for visual learners who prefer interactive content
- Requires more self-study and independent research compared to live streams
Code comparison
While awesome-developer-streams doesn't contain code samples, system-design-primer includes code snippets to illustrate concepts. For example:
# system-design-primer: Simple cache implementation
class Cache:
def __init__(self):
self.cache = {}
def set(self, key, value):
self.cache[key] = value
def get(self, key):
return self.cache.get(key)
Summary
system-design-primer is a comprehensive resource for learning system design concepts, offering in-depth explanations and examples. It's particularly useful for interview preparation and understanding large-scale systems. However, it may not be as engaging for those who prefer live demonstrations or interactive learning experiences.
awesome-developer-streams, on the other hand, provides a curated list of developer live streams, offering real-time coding demonstrations and interactive learning opportunities. While it doesn't provide structured content like system-design-primer, it offers a more dynamic and diverse learning experience through various developers' streams.
A complete computer science study plan to become a software engineer.
Pros of coding-interview-university
- Comprehensive curriculum for computer science fundamentals and interview preparation
- Well-structured learning path with clear progression
- Includes resources for various topics, from data structures to system design
Cons of coding-interview-university
- Primarily focused on interview preparation, less emphasis on practical development skills
- May be overwhelming for beginners due to the extensive content
- Limited community interaction compared to live streaming platforms
Code comparison
While both repositories don't contain significant code samples, coding-interview-university includes some pseudocode examples for algorithms:
def binary_search(list, item):
low = 0
high = len(list) - 1
while low <= high:
mid = (low + high) // 2
guess = list[mid]
if guess == item:
return mid
if guess > item:
high = mid - 1
else:
low = mid + 1
return None
awesome-developer-streams, on the other hand, focuses on listing streamers and their channels without code examples.
Summary
coding-interview-university is an extensive resource for computer science fundamentals and interview preparation, offering a structured learning path. However, it may be overwhelming for beginners and lacks the interactive element of live streaming. awesome-developer-streams provides a curated list of developer streams, offering real-time learning and community interaction, but doesn't provide a structured curriculum for interview preparation.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Awesome Developer Streams
A curated list of awesome developers who stream.
Inspired by the awesome list thing, focusing on developers + streaming. ðº
Meta stuff about this awesome list:
If you'd like to add a dev streamer to awesome-developer-streams
, be sure to read the contribution guidelines, make your change to this file and open a pull request!
Like awesome-developer-streams
? Reach out to @bitandbang on Twitter to say hi! ð
PROTIP: Search this page for subjects you'd be interested in watching live, like JavaScript, DataViz, IoT, Rust, and so on. You'll get an index of streamers relevant to your interestsâbe sure to follow them! â¤ï¸
NEW: Be sure to check out the Twitch directory listings at the end
Table of Contents
# - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - R - S - T - U - V - W - X - Y - Z
Numbers
- The 6 Figure Developer - streaming: Podcast by John Callway, Clayton Hunt and Jon Ash, .NET, C#, Blazor
A
- Aaron Schlesiner - streaming: Go/Golang, Python, Javascript, Kubernetes, Helm, Cloud Native
- AdamLearnsLive - streaming: Node.js, JavaScript, React, Full Stack Development, Game Development
- Adron Hall - streaming: Go/Golang, C#/dotnetcore, Node.js/JavaScript, Terraform/Infrastructure, System Hacks, Pair Programming, Heavy Metal, Systemic Development, IRL, and sometimes reports and tech news at conferences and such.
- Al Sweigart - streaming: Python
- Albérico Dias Barreto Filho - streaming: Twitch Extension Development, Streams Tools Development, Alexa Skills, IRL, JavaScript
- Alemayhu - streaming: Web Development, Imba, JavaScript
- Alexander Simovic - streaming: Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS
- Amos - Fasterthanlime - streaming: Rust, Web development
- Andrew Courter - streaming: Web development, Vim, TypeScript, Kotlin
- Andrew Kelley - streaming: Zig programming language, Compiler, LLVM, ASM
- Andy Li - streaming: Haxe, Web Development, Linux packaging
- Angie Jones - streaming: Java, Web Development, Test Automation
- Anthony Sottile - streaming: Python, linting, code formatting, testing, refactoring
- Anton Kuzmenko - streaming: Go/Golang, Ruby on Rails, Node.js, JavaScript, Terraform, Docker, Kubernetes, Helm, Bash, Vim.
- Antonio Maiorano - streaming: Emulator Development, C++
- Ardalis - Steve Smith - streaming: C#, ASP.NET Core, Clean Architecture, DDD, Design Patterns, TDD
- Armin Ronacher - streaming: Rust, maybe Python
B
- badcop - streaming: Bash, Game Development, Godot, Variety programming
- Baggers - streaming: GPU programming, Game Development, Common Lisp tutorials
- BarRaider - streaming: C#, Stream Deck plugins development, Game Development
- Beachcasts - streaming: Web Development with PHP, Python, and adjecent technologies. Also, AWS and Nexmo/Vonage content.
- Ben Greenier - streaming: Game Development, Unity3D, C#, Web Development, Node.js, JavaScript
- Benjamin Lannon - streaming: Javascript, GitHub Actions, Gatsby, React
- BG Web Agency - streaming: NextJS, Remix, React, Angular, JavaScript, SASS, HTML, CSS, WordPress
- Binary Solo - streaming: Game Development, C++
- Bobby Johnson - streaming: Node.js/Javascript, C#/dotnetcore, React, Docker, OSX, VSCode, Identity & Security, Full Stack Development
- Brad Garropy - streaming: JavaScript, Node.js, React, Gatsby, Next, Serverless, Web Development
- Brandon Satrom - streaming: IoT, C++, Node.js, JavaScript, Web Development, VueJS, Mobile Development
- Brent Schooley (HeccBrent) - streaming: Javascript, Python, C#, Swift, Twilio, TwilioQuest, Video Content Creation, Mobile Development, Web Development, Streaming Tech
- Brent Ozar - streaming: SQL Server, SQL Server optimisation and performance, Database concepts and best practices
- Brian Clark (Clarkio) - streaming: Node.js, JavaScript, IoT, Web Development, Swift
- Brian Douglas - streaming: Open Source, Node.js, Jamstack, React, Design Systems.
- Brian Lagunas - streaming: Design Patterns and practices, Prism, WPF, UWP, Xamarin Forms, Blazor, Flutter, Angular, React, Vue, geeky things.
- Brian McKenna - streaming: Haskell, Functional Programming
- britocoding - streaming: Node.js, JavaScript, TypeScript, React, ReactJS, Web Development
- Brookzerker - streaming: Rust
- btor - streaming: PHP (Symfony), Javascript, Java (Swing), Python ... Language: FRA,ENG
C
- Caidan Williams - streaming: Java, Python, Game Development, Game Networking, LibGDX, Digital Art
- Cailir - streaming: NodeJS, HTML, CSS, Javascript, Game Development
- Calvin Allen / Coding with Calvin - streaming: Microsoft Azure, C#, .NET, .NET Core, DevOps, OSS Development, Visual Studio Extensions
- CaptainKraft - streaming: C, C++, Rust
- Casey Muratori - streaming: C, C++, Game Development, Algorithms
- Catalin Miron - streaming: React, React Native, GraphQL, Javascript, Typescript, Mobile Development, Web Development, Animations
- ChaelCodes - streaming: React, Ruby on Rails, Coding Games
- Chiroptical - streaming: Haskell, Elm
- Chris Dieringer (cdaringe) - streaming: OCaml, Typescript, React, Node
- Chris Griffing (cmgriffing) - streaming: TypeScript, React, Astro, Rust, Go, Elixir
- Chrissy Lemaire - streaming: PowerShell, SQL
- Corey Weathers - streaming: C#, .NET Core, ASP.NET Core, Azure, Twilio, Hackerrank, Codewars, TwilioQuest
- Codebase Alpha (essenbee) - streaming: C#, .Net Core, ASP.Net Core
- Codephobia - streaming: Angular, Typescript, Javascript, Go/Golang, Node.js, Terraform, Devops, Docker, AWS, Lambda, Web Development, NativeScript
- CodeRushed - streaming: C#, .Net Core, ASP.Net Core, TypeScript, JavaScript, CodeRush dog-fooding
- Código Falado - streaming: HTML, CSS, Javascript, Laravel, Vue, Tailwind, Javascript, Typescript, Node.js, Vue.js, PHP, Laravel, Web Development, Portuguese
- Coding Garden with CJ - streaming: JavaScript, Vue.js, Node.js, React, Codewars problem solving
- Collin Henderson - streaming: JavaScript, PHP, Laravel, Vue.js
- Cory Knox - streaming: PowerShell, C#, TypeScript, VSCode extension development
- C0d3Spaghetti - streaming: JavaScript, Next.JS, React.js, Node.js, Azure, Serverless
D
- Daniel Jenkins - streaming: JavaScript, PHP, C#, Unity, Game Development, Web Development
- Daniel Reis - streaming: Laravel, Lumen, PHP, Backend, Web Development
- Daniel Shiffman - streaming: JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms
- Daniel Stenberg - streaming: C, Network Tools, Network Security
- Darko Meszaros - streaming: AWS, Cloud, Developer Tools, Architecture, Python, Vim, Linux
- David Pedersen - streaming: Rust, Ruby, Vim
- David Poindexter (roberttables) - streaming: Node.js, JavaScript, React, Docker, AWS, Terraform, DevOps, Developer Tooling
- DevChatter - streaming: C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming
- Developers Garage - streaming: C#, JavaScript, TypeScript, .NET Core, ASP.NET Core, OSS, Xamarin
- Dillon Pentz - streaming: OBS Development using C++. Also streams Python and JavaScript
- DJ Adams - streaming: SAP development - including integration and extension topics on SAP Business Technology Platform
- Dmitry Figol - streaming: Network programmability, Network automation, Python, NetDevOps, DevOps
- DrunkDevs - streaming: Game Development, Game Maker: Studio, Aseprite
- DwayneWritesCode - streaming: Open source development, JavaScript, TypeScript, WordPress
- Dylan Beattie - streaming: C#, .NET, JavaScript, Rockstar, SonicPi, live music
E
- Eddie Jaoude - streaming: Open Source, JavaScript, Angular, AWS, Serverless, Node, TypeScript, GitHub, Cucumber
- Ekaterina Sychenko - streaming: JavaScript, TypeScript, React, Redux, Node.js, PostgreSQL
- Emanuele Bartolesi - streaming: C#, .NET Core, ASP.NET, OSS, GitHub, Pair Programming
- Eralp Karaduman - streaming: iOS, Swift, Flutter, Dart, React Native, React, TypeScript, JavaScript, C#, Unity3D, Pixel Art, Aseprite
- Erik St. Martin - streaming: Rust, Go/Golang, Video Encoding, Kubernetes
- Eser Ozvataf - streaming: JavaScript, C#, .NET Core, React, OSS, GitHub, Serverless, node.js, TypeScript, Functional Programming, DevOps
- Exxjob - streaming: Kotlin, Solidity, Crystal, Rust, Flutter, Vlang
F
- Feross Aboukhadijeh - streaming: JavaScript, Node.js, Frameworks, Developer Tooling, Web Development
- Ferris - streaming: Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++
- Fletcher (IAmFletcher) - streaming: JavaScript, Node, Go
- Frank Boucher - streaming: Microsoft Azure, C#, .NET Core, DevOps, OSS Development
- Franziska Hinkelmann - streaming: JavaScript, Node.js, Interview Training, Pair Programming
- Freya Holmér - streaming: Game Development, Unity, C#, Shaders, Developer Tooling, LGBT+ discussion
G
- Gareth Hubball - streaming: F#, .NET, .NET Core, Functional Programming, Rust, Xamarin
- Gary Ewan Park - streaming: C#, .NET, .NET Core, Cake, Chocolatey, DevOps
- Gary Hockin - streaming: PHP, Twilio, TwilioQuest
- Gary Kramlich - streaming: Pidgin Development, Convey Development, OSS Development, C, Golang, Python, JavaScript, Docker, Containers
- Gavin Barron - streaming: Web Development, C#, TypeScript, Azure, DevOps
- Geoffrey Huntley - streaming: Haskell, Reactive Extensions, NixOS, OSS Development, C#, .NET, Xamarin, DevOps
- Giovanny Gongora - streaming: JavaScript, Node.js, Rust, C++, Performance, OS Development
- Go_Maestro_Go - streaming: JavaScript, Node.js, ReactJS, React Native, APIs, GraphQL, Web Development, Native Apps, Docker, Kubernetes, AWS, Oracle, Heroku, PostgresQL, Angular, Vue, Flutter, Dart, Open-Source, Full-Stack, DevOps
- Guy Royse - streaming: Redis, JavaScript, Software Development, Test Driven Development
- Gwen Frey - streaming: Game Development, Unreal Blueprint, Animation
- Gynvael Coldwind - streaming: Software development, Python, C, C++, ASM, Reverse engineering, Hacking, Security
H
- HardlyDifficult - streaming: Game Development (Unity3D, C#), C# Programming, Cryptocurrency
- Holden Karau - streaming: Scala, Python, Spark, PySpark, Open Source
- HowToCodeWell (Peter Fisher) - streaming: PHP, Symfony, Laravel, Lumen Python, Micro Python, Flask, Linux, Docker, JavaScript, HTML, CSS Full Stack
- Huntabyte - streaming: Web development
I
- Ian Lovett - streaming: JavaScript, React, Redux, Node.js, Express, ElasticSearch, CryptoCurrency Apps, Gaming
- iDevelopThings - streaming: PHP, JavaScript, Node.js, Full stack development, Web Development
- incompetent_ian - streaming: Python, JavaScript, React, FastAPI, Full Stack Development, Web Development
J
- Jack Mott - streaming: Teaching Programming, Gamedev, Golang, SDL2, OpenGL
- Jason Lengstorf - streaming: GatsbyJS (React) development
- Jeff and Dom Make a Game - streaming: Game development, pair programming, Unity, TypeScript/JavaScript, programming first principles, witty banter
- Jeff Fritz - streaming: C#, .NET, ASP.NET, OSS and Pair Programming
- Jeff Lindsay - streaming: Open Source, Game Development, C#, Golang, Docker, Unity3D, JavaScript, Developer Tooling
- Jeff Panici - streaming: C, C++, Assembly, C#, Rust, JavaScript, Basecode, Programming Language Development, Compiler Development, Web Development, Game Development
- Jen Tong - streaming: Python, JavaScript, NodeBots, Astronomy
- Jesse Skinner - streaming: Full stack web development, JavaScript, CSS, HTML, React, Node.js, PHP, Lua
- Jesse Weigel - streaming: React, Node.js, CSS, Next.js, Wordpress
- Jessica Mak - streaming: C++, OpenGL, Game Development
- Jochen Lillich - streaming: Ruby, Chef, DevOps, SRE, Docker, Kubernetes
- Joe Bew - streaming: Practices of computer programming, Clean Code, TDD, Refactoring, Open Source projects
- Jon Gjengset - streaming: Rust
- Jonatas "Jojo" Baldin - streaming: Programming, Infrastructure, Serverless, Golang, Python, Knative, OpenFaaS, AWS, GCP, Azure
- Jonathan Blow - streaming: Programming, Gamedev, Jai, C++, OpenGL
- Jordan Lewis - streaming: Databases, Database Programming
- Jorge Cano - streaming: Angular, Javascript, Programming, Web development
- Joseph Guadagno - streaming: C#, .NET, ASP.NET, OSS, Azure, Ionic, and React
- Josh Hawkins - streaming: JavaScript, Node.js, C++, Elixir, Python, OSS Projects, Gaming
- Josh Justice - streaming: JavaScript, Rails, Ember, React Native
- Josh Kupka - streaming: JavaScript, Building custom streaming service
- Josh Medeski - streaming: Web developer teaching how to better use the terminal, neovim, tmux, macOS, and more
- Josh Wulf - streaming: TypeScript, NestJS, Microservices, Zeebe, Minecraft programming in JS
- Julian Duque - streaming: JavaScript, Node.js, Frameworks, Developer Tooling, Web Development
K
- KalleHallden - streaming: Python, Flutter, Dart, Java
- KensoDev - streaming: Advanced Devops - Python, Terraform, React
- Kent C. Dodds - streaming: JavaScript, React, Web Development, Open Source, Node.js
- Keraf - streaming: JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev
- Kevin Griffin - streaming: C#, .NET, ASP.NET, 3D Printing, Conference Planning, and more!
- KeyFramers - streaming: CSS, Javascript, UI Animation, Web Development
- Kris Nova - streaming: Go, Rust, Backend, Linux, Distributed Systems, Kubernetes, Containers, and more!
- Krzysztof Cieslak - streaming: F#, .Net, Functional Programming, Web Development
- Kyle Shevlin - streaming: React, JavaScript, Functional Programming, Web Development
L
- Laur Spilca - streaming: Java, Spring
- Layla Porter - streaming: C#, Javascript, .NET Core, ASP.NET Core, Azure, Twilio
- Lazar Nikolov - streaming: JavaScript, TypeScript, Blitz JS, Next JS, Chakra UI
- Leomendesm - streaming: Javascript, Web Development, React, Elixir
- Liz Phillips (Illuminated Space) - streaming: JavaScript, Gatsby, React, Web Development, Data Structures, Playing Video Games
- Lizzie Siegle - streaming: JavaScript, Swift, Web Development, Node.js, cool libraries and projects
- Lucas Montano - streaming: - Android, Node.js, Twitch extensions, Typescript, Open Source, Flutter, React.
- Luke Gorrie - streaming: C, Lua, RaptorJIT, R, Nix, Network drivers
M
- Mark Kraus - streaming: PowerShell, C#, Azure Functions, CI/CD Pipelines, OSS
- Mark Mandel - streaming: Game Development, Kubernetes, Go, OSS
- Mark Rendle - streaming: C#, Blazor, MAUI, .NET Previews, beginner lessons
- Marko Pavlovic - streaming: Python, C++, C#, Game Development, Android, OSS
- Masood Sadri - streaming: Web Development, JavaScript, Node.js, React
- Matt Cowley - streaming: Maintaing Open Source Projects, Node.js, JavaScript, CSS, HTML, Vue, Web Development
- Matt Groves - streaming: Databases, Couchbase, SQL/NoSQL/SQL++, .NET, C#, ASP.NET, soldering kits, VR, podcasting
- Matt Layman - streaming: Python, Django, Software as a Service (SaaS), Web Development
- Matt Podwysocki - streaming: JavaScript, Reactive Extensions, Node.js, C#, .NET Core, React-Native, React, Functional Programming, Open Source Stuff
- Matthew Brandt - streaming: JavaScript, Databases, SQL, Data Analytics edutainment (education & entertainment)
- Mattias Petter Johansson - streaming: JavaScript, Node.js, Programming in general
- MechJack - streaming: Java, JavaScript, React, Framework development, Programming in general
- Micah Elizabeth Scott - streaming: Reverse Engineering, Rust, C++, Hardware
- Michael Crump - streaming: Azure, Software Development, C#, .NET Core
- Michael Henderson - streaming: Fullstack development
- Michael Jolley - streaming: C#, JavaScript, .Net Core, IoT
- Mike Conley - streaming: Firefox Development, JavaScript, C++, CSS, Rust
- MishManners - streaming: Game dev, Python, JavaScript, C#, programming, other random coding things (ie. AWS Deep Racer), Ruby, DevOps, GitHub
- mmatt - streaming: Python, Discord bots, programming in general.
- Mohamed Elsherif - streaming: Software Engineering topics and discussions, podcast and some times video tutorials.
N
- Nicholas Brochu - streaming: Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision
- Nick Busey - streaming: PHP, NodeJS, Docker, Ansible, DevOps, React, MeteorJS and occasionally I'll brew a beer!
- Nicolai Parlog - streaming: Java, occasionally JavaScript, Kotlin, or even weirder stuff
- Ninjabunny9000 - streaming: Python, C#, Ninja, Programming in general
- nmarulo - streaming: JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS
- nullpointer128 - streaming: Javascript, flutter, Dart, Spring, Vue.js, Web development, App development
P
- Patrick Prémartin - streaming: Delphi, PHP, JavaScript, Desktop Development, Web Development, Game Development
- Pavithra Kodmad - streaming: JavaScript, CSS, Open Source Stuff
- Pearly_Owl - streaming: iOS, Swift, Uni Assignments
- Per Vognsen - streaming: Software/Hardware low-level development, C, Python, Ion
- Phil Nash - streaming: JavaScript, Ruby, Twilio, Open Source, Web Development
- Pirate Software (Jason Thor Hall) - streaming: Game Maker Studio, Game Development, Development Advice
- PixelogicDev - streaming: iOS, Swift, JavaScript, Node.js, Angular, APIs, Web Development
- Plaintextnerds - streaming: Python, C++, C#, Go, APIs, Web Development, NetCode, Networking, Startups, Open Source
R
- Rachael Tatman - streaming: Data Science Livecoding (mostly R) and scientic paper journal club
- RadicalFishGames - streaming: Game Development (JavaScript, WebGL) (Game: CrossCode)
- Ragnar Thor - streaming: JavaScript, React, Web Development, Open Source, Node.js
- Randall Hunt - streaming: AWS, Web Development, Hardware Hacking, Python, Serverless, AI
- Ricardo Tavares - streaming: Angular 6+, SCSS, LUA, Node.js, Python, SQL, Typescript, WASM, Web Development
- Robin Pokorny - streaming: JavaScript, Functional Programming, Node.js
- Robin Thomas - streaming: FOSS, JavaScript Frameworks, Linux, Arduino, Raspberry Pi
- Rúben Gomes - streaming: Node.js, JavaScript, Vue, ES6/ES7, Full Stack Development
- Russell Hay - streaming: Rust, Functional Programming, Hardware, Generative Art
- Ryan Warner - streaming: Web design and development, JavaScript, Gatsby, React, Firebase, Node, CSS, UI/UX Design
S
- Sallar Kaboli - streaming: JavaScript, Node.js, Electron, React, OSS Projects, APIs
- Sch3lpSC2 - streaming: Kotlin, VueJS, CQRS, Web Development
- Sean Larkin - streaming: Webpack, OSS, JavaScript, Gaming
- Sebastian Krzyżanowski - streaming: JavaScript, React, Redux + redux-saga, Firebase, Node.js
- Sébastien Rancoud - streaming: JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development
- Sergio Cinos - streaming: JavaScript, React, Node.js, Full stack development
- Silent_Coyote - streaming: C++, Node.js, PHP, JavaScript, Angular, Full Stack Web Development
- Shinmera - streaming: Game Development, Common Lisp
- Shirley Wu - streaming: Data Visualisation (DataViz), JavaScript, React
- Simeon Vincent - streaming: JavaScript, CSS, Web Development, Twitch extensions
- SirLynixVanFrietjes - streaming: C++, Lua, Game Development (in french)
- Siva - streaming: ML, IoT, Node.js, JavaScript, GraphQL
- SkillVid - streaming: Javascript, Adobe Illustrator
- Sorskoot - streaming: JavaScript, Node.js, WebVR/WebAR/WebXR, Progressive web apps, IoT, Microsoft Azure
- Stan Daniels-Roth - streaming: Web Development, AdminSys, JavaScript, CSS, PHP (Laravel), 3D Printing
- Suz Hinton - streaming: IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript
- Swizec Teller - streaming: JavaScript, React, D3
- Syanoks - streaming: Operating System Development, C, Assembly, Shell, Python
T
- Tae'lur Alexis - streaming: JavaScript, Web Development
- Talk2MeGooseman (Erik Guzman) - streaming: JavaScript, Node.js, ReactJS, React Native, APIs, Web Development
- Tanya Janca - streaming: Web Security, Azure, Cloud Security
- Ted M. Young - streaming: Java, Spring Boot, Spring MVC, Spring Data, Spring Cloud, TDD, JUnit, Web Development, Design Patterns, DDD, Hexagonal Architecture, IntelliJ IDEA
- TJ DeVries - streaming: Rust, Ruby, Nvim, Vim, Open Source, Memes
- tek256 - streaming: Game Engine Development, C
- Theo - streaming: JavaScript, TypeScript, Web Development
- ThePrimeagen - streaming: Golang, JavaScript, ReactJS, Memes, Amazingness.
- Thomas Soerensen - streaming: Golang, PHP (Laravel), JavaScript
- Thorsten Lorenz - streaming: Node.js, Module Development, Developer Tooling, Web Development, JavaScript
- Tim Ermilov - streaming: OSS, building things with JavaScript, React
- Tim Yuen - streaming: Game development, Godot, Rust, Music Composition
- Tierney Cyren - streaming: Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects
- Tracy and Matt - streaming: Node.js, Javascript, Python, Golang, Ruby, Twitch Extensions, Twitch Apps, Twitch Chat Bots, Game Mods, Machine Learning, Serverless, Open Source
- Trezy streaming: JavaScript, Node.js, React.js, Next.js, Game Development, Web Development
- TrshPuppy streaming: Security, JavaScript, Python, Go
- Tsoding - streaming: Game Development, Functional Programming, Programming Language Design, Artificial Intelligence, C, C++, Haskell, Rust, Scala
- TutorExilius - streaming: C++, Python, Java, JavaScript, PHP
- Tyler Leonhardt - streaming: PowerShell, C#, TypeScript, VSCode extension development, Maintaining OSS Projects
U
- Unspecified (Clark Sell) - streaming: Svelte, React Node.js, GraphQL, Tailwind, Javascript, Web Development, Live Code Reviews
V
- Velopman - streaming: Game development, Godot
- Vogue and Code (April Speight) - streaming: Mixed Reality Toolkit, Mixed Reality, Virtual Reality, Augmented Reality, Basic programming concepts
W
- whitep4nth3r - streaming: JavaScript, TypeScript, HTML, CSS/Sass, React, Angular, Svelte, Next.js, NodeJS
- WindybeardGames - streaming: ClickTeam Fusion, PhotoShop, Spine, Game Art
- Shawn Wildermuth - streaming: JavaScript, TypeScript, Vue, Vite, TailwindCSS, ASP.NET Core, and VSCode
Y
- Yosh - streaming: OSS maintenance, Tooling Development, JavaScript, Node.js, Choo
Z
- Zorchenhimer streaming: 6502 NES Assembly, Golang
Developers That Stream
The 6 Figure Developer
What The 6 Figure Developer streams:
- The 6 Figure Developer podcast is a podcast by John Callway, Clayton Hunt and Jon Ash and in addition to streaming coding with .NET, C# and Blazor, they freqently stream their interviews with notable .NET advocates.
Links:
- Twitch Presenters:-
- John Callway
- Clayton Hunt
- Jon Ash
Arschles
What Aaron streams:
- Go/Golang, Python, Javascript, Kubernetes, Helm, Cloud Native
Streaming on:
Links:
AdamLearnsLive
What Adam streams:
- Node.js, JavaScript, React, Full Stack Development, Game Development
Streaming on:
Links:
Adron Hall
What Adron streams:
- Go/Golang, C#/dotnetcore, Node.js/JavaScript, Terraform/Infrastructure, System Hacks, Pair Programming, Heavy Metal, Systemic Development, IRL, and sometimes reports and tech news at conferences and such.
Streaming on:
Links:
Al Sweigart
What Al streams:
- Python
Streaming on:
Links:
Albérico Dias Barreto Filho
What Albérico streams:
- Twitch Extension Development, Streams Tools Development, Alexa Skills, IRL, JavaScript
Streaming on:
Links:
Alemayhu
What Alemayhu streams:
- Web Development, Imba, JavaScript
Streaming on:
Links:
Alexander Simovic
What Alex streams:
- Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS
Streaming on:
Links:
Amos - Fasterthanlime
What Amos streams:
- Rust, Web Development
Streaming on:
Links:
Andrew Courter
What Andrew streams:
- Web development, Vim, TypeScript, Kotlin
Streaming on:
Links:
Andrew Kelley
What Andrew Kelley streams:
- Zig programming language, Compiler, LLVM, ASM
Streaming on:
Links:
Andy Li
What Andy Li streams:
- Haxe, Web Development, Linux packaging
Streaming on:
Links:
Angie Jones
What Angie Jones streams:
- Java, Web Development, Test Automation
Streaming on:
Links:
Anthony Sottile
What Anthony streams:
- Python, linting, code formatting, testing, refactoring
Streaming on:
Links:
Antonio Maiorano
What Antonio streams:
- Emulator Development, C++
Streaming on:
Links:
Anton Kuzmenko
What Anton (antonlabs/solomakerlabs) Kuzmenko
- Go/Golang, Ruby on Rails, Node.js, JavaScript, Terraform, Docker, Kubernetes, Helm, Bash, Vim; I build profitable businesses live on Twitch while working a full-time job.
Streaming on:
Links:
Ardalis - Steve Smith
What Ardalis streams:
- C#, ASP.NET Core, Clean Architecture, DDD, Design Patterns, TDD
Streaming on:
Links:
Armin Ronacher
What Armin streams:
- Rust, maybe Python
Streaming on:
Links:
badcop
What badcop streams:
- Bash, Game Development, Godot, Variety programming
Streaming on:
Languages Spoken During Stream
- English
Links:
Baggers
What Baggers streams:
- Graphics Programming (GPU, OpenGL), Game Development, Common Lisp tutorials
Streaming on:
Languages Spoken During Stream
- English
Links:
BarRaider
What BarRaider streams:
- C#, Stream Deck plugins development, Game Development
Streaming on:
Languages Spoken During Stream
- English
Links:
Beachcasts
What Beachcasts streams:
- Web Development with PHP, Python, and adjecent technologies. Also, AWS and Nexmo/Vonage content.
Streaming on:
Languages Spoken During Stream
- English
Links:
Ben Greenier
What Ben streams:
- Game development with C#/Unity3D, web and service development with JavaScript/Node.js
Streaming on:
Languages Spoken During Stream
- English
Links:
Benjamin Lannon
What Benjamin streams:
- Javascript, GitHub Actions, Gatsby, React
Streaming on:
Links:
BG Web Agency
What BG Web Agency streams:
- NextJS, Remix, React, Angular, JavaScript, SASS, HTML, CSS, WordPress
Streaming on:
Links:
Binary Solo
What Binary Solo streams:
- Game Development, C++
Streaming on:
Links:
Bobby Johnson
What Bobby streams:
- Node.js/Javascript, C#/dotnetcore, React, Docker, OSX, VSCode, Identity & Security, Full Stack Development
Streaming on:
Links:
Brad Garropy
What Brad streams:
- JavaScript, Node.js, React, Gatsby, Next, Serverless, Web Development
Streaming on:
Links:
Brandon Satrom
What Brandon streams:
- IoT, C++, Node.js, JavaScript, Web Development, VueJS, Mobile Development
Streaming on:
Links:
Brent Schooley (HeccBrent)
What Brent Schooley streams:
- Javascript, Python, C#, Swift, Twilio, TwilioQuest, Video Content Creation, Mobile Development, Web Development, Streaming Tech
Streaming on:
Links:
Brent Ozar
What Brent Ozar streams:
- SQL Server, SQL Server optimisation and performance, Database concepts and best practices
Streaming on:
Links:
Brian Clark (Clarkio)
What Brian streams:
- Node.js, JavaScript, IoT, Web Development, Swift
Streaming on:
Links:
Brian Douglas (bdougie)
What Brian streams:
- Open Source, Node.js, Jamstack, React, Design Systems.
Streaming on:
Links:
Brian Lagunas
What Brian streams:
- Design Patterns and practices, Prism, WPF, UWP, Xamarin Forms, Blazor, Flutter, Angular, React, Vue, geeky things.
Streaming on:
Links:
Brian McKenna
What Brian streams:
- Haskell, Functional Programming
Streaming on:
Links:
britocoding
What britocoding
- Brazilian streamer who streams JavaScript, TypeScript, React and listen some weird musics.
Streaming on:
Links:
Brookzerker
What Brookzerker streams:
- Rust
Streaming on:
Links:
Btor
What Btor streams:
- French streamer who streams PHP (Symfony 2/3/4), Javascript (React, ReactNative) , Java, Python etc.
Streaming on:
Links:
Caidan Williams
What Caidan streams:
- Java, Python, Game Development, Game Networking, LibGDX, Digital Art
Streaming on:
Links:
Cailir
What Cailir streams:
- NodeJS, HTML, CSS, Javascript, Game Development
Streaming on:
Links:
Calvin Allen / Coding with Calvin
What Calvin streams:
- Microsoft Azure, C#, .NET, .NET Core, DevOps, OSS Development
Streaming on:
- (not currently streaming)
Links:
CaptainKraft
What CaptainKraft streams:
- C, C++, Rust
Streaming on:
Casey Muratori
What Casey streams:
- C, C++, Game Development, Algorithms
Streaming on:
Links:
Catalin Miron
What Catalin Miron streams:
- React, React Native, GraphQL, Javascript, Typescript, Mobile Development, Web Development, Animations
Streaming on:
Links:
ChaelCodes
What ChaelCodes streams:
- React, Ruby on Rails, Coding Games
Streaming on:
Links:
Chiroptical
What Chiroptical streams:
- Haskell, Elm
Streaming on:
Links:
Chris Dieringer (cdaringe)
What Chris Dieringer streams:
- OCaml, Typescript, React, Node, Rust
Streaming on:
Links:
Chris Griffing (cmgriffing)
What Chris streams:
- Full-stack web development and sometimes CLI tools. Open source projects, and some SaaS startup projects.
Streaming on:
Links:
Chrissy Lemaire
What Chrissy Lemaire streams:
- PowerShell, SQL
Streaming on:
Links:
Clayton Hunt
What Clayton streams:
- Podcast, Blazor, Test-Driven Development, Clean Code, Open Source projects
Streaming on:
Links:
Codebase Alpha (Essenbee)
What Codebase Alpha streams:
- C#, .Net Core, ASP.Net Core
Streaming on:
Links:
Codephobia
What Codephobia streams:
- Angular, Typescript, Javascript, Go/Golang, Node.js, Terraform, Devops, Docker, AWS, Lambda, Web Development, NativeScript
Streaming on:
Links:
CodeRushed (Mark Miller)
What CodeRushed streams:
- C#, .Net Core, ASP.Net Core, TypeScript, JavaScript, D&D Game development, CodeRush dog-fooding
Streaming on:
Links:
Código Falado
What Código Falado streams:
- HTML, CSS, Javascript, Vue, Tailwind, Javascript, Typescript, Node.js, Vue.js, PHP, Laravel, Web Development, Portuguese
Languages Spoken During Stream
- Portuguese
Streaming on:
Links:
Coding Garden with CJ
What CJ streams:
- JavaScript, Vue.js, Node.js, React, Codewars problem solving
Streaming on:
Links:
Collin Henderson
What Collin streams:
- JavaScript, PHP, Laravel, Vue.js
Streaming on:
Links:
Corey Weathers
What Corey Weathers streams:
- C#, .NET Core, ASP.NET Core, Azure, Twilio, Hackerrank, Codewars, TwilioQuest
Streaming on:
Links:
Cory knox
What Cory streams:
- PowerShell, C#, TypeScript, VSCode extension development
Streaming on:
Links:
C0d3Spaghetti (Ayush Chauhan)
What Ayush streams:
- JavaScript, Next.JS, React.js, Node.js, Azure, Serverless
Streaming on:
Links:
Daniel Jenkins
What Daniel (HonestDan) streams:
- JavasSript, PHP, C#, Unity, Game Development, Web Development; Often takes part in Ludum Dare
Streaming on:
Languages Spoken During Stream
- English
- Welsh
Links:
Daniel Reis
What Daniel Reis streams:
- Laravel, Lumen, PHP, Backend, Web Development
Streaming on:
Languages Spoken During Stream
- Portuguese
- English
Links:
Daniel Shiffman
What Daniel streams:
- JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms
Streaming on:
Links:
Daniel Stenberg
What Daniel streams:
- C, Network Tools, Network Security
- Primarily focuses on cURL, WolfSSH, WolfSSL, etc.
Streaming on:
Links:
Darko Meszaros
What (Name || Pref Handle) streams:
- AWS, Cloud, Developer Tools, Architecture, Python, Vim, Linux
Streaming on:
Links:
David Pedersen
What David streams:
- Rust, Ruby, Vim
Streaming On:
Links:
David Poindexter (roberttables)
What David streams:
- Node.js, JavaScript, React, Docker, AWS, Terraform, DevOps, Developer Tooling
Streaming On:
Links:
DevChatter
What DevChatter streams:
- C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming
Streaming on:
Languages Spoken During Stream
- English
Links:
Developers Garage
What Developers Garage streams:
- C#, JavaScript, TypeScript, .NET Core, ASP.NET Core, OSS, Xamarin
Streaming on:
Languages Spoken During Stream
- English
Links:
Dillon Pentz (DillonEA)
What Dillon Pentz streams:
- OBS Development using C++. Also streams Python and JavaScript
Streaming on:
Languages Spoken During Stream
- English
Links:
DJ Adams
What DJ Adams streams:
- SAP development - including integration and extension topics on SAP Business Technology Platform
Streaming on:
Languages Spoken During Stream
- English
Links:
Dmitry Figol
What Dmitry streams:
- Network programmability, Network automation, Python, NetDevOps, DevOps
Streaming on:
Languages Spoken During Stream
- English
Links:
DrunkDevs
What DrunkDevs streams:
- Game Development, Game Maker: Studio, Aseprite
Streaming on:
Links:
DwayneWritesCode
What DwayneWritesCode streams:
- Open source development, JavaScript, TypeScript, WordPress
Streaming on:
Links:
Dylan Beattie
What Dylan Beattie streams:
- C#, .NET, JavaScript, Rockstar, Sonic Pi, music, SQL
Streaming on:
Links:
Eddie Jaoude
What Eddie streams:
- Open Source, JavaScript, Angular, AWS, Serverless, TypeScript, GitHub, Cucumber
Streaming on:
Languages Spoken During Stream
- English
Links:
Ekaterina Sychenko
What Kate streams:
- JavaScript, TypeScript, React, Redux, Node.js, PostgreSQL
Streaming on:
Languages Spoken During Stream
- English/Russian (primary)
Links:
Emanuele Bartolesi
What Emanuele streams:
- C#, .NET Core, ASP.NET, OSS, GitHub, Pair Programming
Streaming on:
Languages Spoken During Stream
- English/Italian
Links:
Eralp Karaduman
What Eralp streams:
- Mobile App Development: iOS, Swift, Flutter, Dart, React Native, TypeScript
- Web Development: React, JavaScript
- Game Development: C#, Unity3D, Pixel Art, Aseprite
Streaming on:
Languages Spoken During Stream
- English / Turkish
Links
Erik St. Martin
What Erik streams:
- Rust, Go/Golang, Video Encoding, Kubernetes, Helm, Cloud Native
Streaming on:
Links:
Eser Ozvataf
What Eser streams:
- JavaScript, C#, .NET Core, React, OSS, GitHub, Serverless, node.js, TypeScript, Functional Programming, DevOps
Streaming on:
Languages Spoken During Stream
- Turkish
Links:
Exxjob
What Exxjob streams:
- Kotlin, Solidity, Crystal, Rust, Flutter, Vlang
Streaming on:
Links:
Feross Aboukhadijeh
What Feross streams:
- JavaScript, Node.js, Frameworks, Developer Tooling, Web Development
Streaming on:
Links:
Ferris
What Ferris streams:
- Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++
Streaming on:
Links:
Fletcher (IAmFletcher)
What Fletcher (IAmFletcher) streams:
- JavaScript, Node, Go
Streaming on:
Links:
Frank Boucher
What Frank Boucher streams:
- Microsoft Azure, C#, .NET Core, DevOps, OSS Development
Streaming on:
Languages Spoken During Stream
- English
- French
Links:
Franziska Hinkelmann
What Franziska (fhinkel) streams:
- JavaScript, Node.js, Interview Training, Pair Programming
Streaming on:
Languages Spoken During Stream
- English
Links:
Freya Holmér
What Freya (Acegikmo) streams:
- Game Development, Unity, C#, Shaders, Developer Tooling, LGBT+ discussion
Streaming on:
Languages Spoken During Stream
- English
Links:
Gary Ewan Park
What Gary streams:
- C#, .NET, .NET Core, Cake, Chocolatey, DevOps
Streaming on:
Links:
Gary Hockin
What Gary streams:
- PHP, Twilio, TwilioQuest
Streaming on:
Links:
Gary Kramlich
What RW_Grim streams:
- Pidgin Development, Convey Development, Open Source Development, C, Golang, Python, JavaScript, Docker, Containers
Streaming on:
Links:
Gavin Barron
What Gavin streams:
- Web Development, C#, TypeScript, Azure, DevOps
Streaming on:
Links:
Geoffrey Huntley
What Geoff streams:
- Haskell, Reactive Extensions, NixOS, OSS Development, C#, .NET, Xamarin, DevOps
Streaming on:
Links:
Giovanny Gongora
What Giovanny Gongora streams:
- JavaScript, Node.js, Rust, C++
- Performance
- OS Development
Streaming on:
Links:
Go_Maestro_Go
What Go_Maestro_Go (Christian) streams:
- JavaScript, Node.js, ReactJS, React Native, External APIs, GraphQL, Web Assembly, Oracle JavaScript Extension Toolkit (OJET), Native Apps, Docker, Kubernetes, Cloud Infrastructure, OCI, GCP, AWS, Azure, Heroku, PostgresQL, Open-Source, Full-Stack, DevOps, Machine Learning, Relational Database Design, Google Sheets Automations, Raspberry Pi, IoT, Integrations, BoseAR, Elgato Stream Deck, Trello, Scrum Management
Streaming on:
Links:
Guy Royse
What Guy Royse streams:
- Redis, JavaScript, Software Development, Test Driven Development
Streaming on:
Links:
Gwen Frey
What Gwen streams:
- Game Development, Unreal Blueprint, Animation
Streaming on:
Links:
Gynvael Coldwind
What Gynvael Coldwind streams:
- Software development - Python, C, C++, ASM
- Reverse engineering
- Hacking
- Security
Streaming on:
Links:
HardlyDifficult
What HardlyDifficult streams:
- Game Development (Unity3D, C#), C# Programming, Cryptocurrency
Streaming on:
Links:
Holden Karau
What Holden Karau streams:
Scala, Python, Spark, PySpark, Open Source
Streaming on:
Languages Spoken During Stream
- English
Links:
HowToCodeWell (Peter Fisher)
What HowToCodeWell streams:
PHP, Symfony, Laravel, Lumen Python, Micro Python, Flask, Linux, Docker, JavaScript, HTML, CSS Full Stack
Streaming on:
Languages Spoken During Stream
- English
Links:
Huntabyte
What Huntabyte streams:
Web development
Streaming on:
Languages Spoken During Stream
- English
Links:
Ian Lovett
What Ian Lovett streams:
- JavaScript UI - Angular, React, React Native, Redux
- JavaScript API - Node.js, Express
- Elastic Search
- CryptoCurrency Web Apps
- Gaming - Overwatch, Fortnite, CS:GO
Streaming on:
Languages Spoken During Stream
- English
Links:
iDevelopThings
What iDevelopThings streams:
- PHP, JavaScript, Node.js, Full stack development, Web Development
Streaming on:
incompetent_ian
What incompetent_ian streams:
- Python, JavaScript, React, FastAPI, Full Stack Development, Web Development
Languages Spoken During Stream
- English
Streaming on:
Links:
Jack Mott
What Jack streams:
- Teaching programming basics, data structures, algorithms, fun gamedev projects, Golang, SDL2, OpenGL
Streaming on:
Jason Lengstorf
What Jason Lengstorf streams:
- GatsbyJS (React) development
Streaming on:
Links:
Jeff and Dom Make a Game
What Jeff and Dom stream:
- Game development, pair programming, Unity, TypeScript/JavaScript, programming first principles, witty banter
Streaming on:
Links:
Jeff Fritz
What Jeff streams:
- C#, .NET, ASP.NET, OSS and Pair Programming
Streaming on:
Languages Spoken During Stream
- English
Links:
Jeff Lindsay
What Jeff streams:
- Open Source, Game Development, C#, Golang, Docker, Unity3D, JavaScript, Developer Tooling
Streaming on:
Links:
Jeff Panici
What Jeff streams:
- C, C++, Assembly, C#, Rust, JavaScript, Basecode, Programming Language Development, Compiler Development, Web Development, Game Development
Streaming on:
Languages Spoken During Stream
- English
Links:
Jen Tong
What Jen streams:
- Python, JavaScript, NodeBots, Astronomy
Streaming on:
Links:
Jesse Skinner
What Jesse Skinner streams:
- Full stack web development, JavaScript, CSS, HTML, React, Node.js, PHP, Lua
Streaming on:
Languages Spoken During Stream
- English
Links:
Jesse Weigel
What Jesse streams:
Web Development, React, Node.js, CSS, Next.js, Wordpress
Streaming on:
Languages Spoken During Stream
- English
Links:
Jessica Mak
What Jessica streams:
- C++, OpenGL, Game Development
Streaming on:
Languages Spoken During Stream
- English
Links:
Jochen Lillich
What Jochen Lillich streams:
- DevOps/SRE - Chef, Docker, Kubernetes
- Ruby programming
Streaming on:
Languages Spoken During Stream
- English
Links:
Joe Bew
What Joe streams:
- Test-Driven Development, Clean Code, Refactoring, Open Source projects
Streaming on:
Links:
John Callaway
What John streams:
- Podcast, Test-Driven Development, Clean Code, Open Source projects
Streaming on:
Links:
Jon Ash
What Jon streams:
- Podcast, Kubernetes, Blazor, Test-Driven Development, Clean Code, Open Source projects
Streaming on:
Links:
Jon Gjengset
What Jon Gjenset streams:
- Rust
Streaming on:
Links:
Jonathan Blow
What Jonathan Blow streams:
- Game Development, Language Developement, Jai, C++, OpenGL
Streaming on:
Links:
Jordan Lewis
What Jordan Lewis streams:
- Databases, Database Programming
Streaming on:
Links:
Jorge Cano
What Jorge Cano streams:
- Angular, Javascript, Programming, Web development
Streaming on:
Links:
Joseph Guadagno
What Joseph Guadagno streams:
- C#, .NET, ASP.NET, OSS, Azure, Ionic, and React
Streaming on:
Links:
(top)
Josh Hawkins
What Hawkins streams:
- JavaScript, Node.js, C++, Elixir, Python, OSS Projects, Gaming
Streaming on:
Links:
Josh Medeski
What Josh streams:
- Web developer teaching how to better use the terminal, neovim, tmux, macOS, and more
Streaming on:
Links:
Josh Kupka
What Josh streams:
- JavaScript, Building a custom streaming service
Streaming on:
Links:
Josh Justice
What Josh (codingitwrong) streams:
- JavaScript, Rails, Ember, React Native
Streaming on:
Links:
Josh Wulf
What Josh Wulf streams
- TypeScript, NestJS, Microservices, Zeebe, Minecraft programming in JS
Streaming on:
Links:
Julian Duque
What Julian Duque streams:
- JavaScript, Node.js, Frameworks
- Developer Tooling
- Web Development
Streaming on:
Links:
KalleHallden
What KalleHallden streams:
- Python, Flutter, Dart, Java
Streaming on:
Links:
KensoDev
What KensoDev streams:
- Advanced Devops - Python, Terraform, React
Streaming on:
Links:
Kent C. Dodds
What Kent streams:
- JavaScript, React, Web Development, Open Source, Node.js
Streaming on:
Links:
Keraf
What Keraf streams:
- JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev
Streaming on:
Links:
Kevin Griffin
What Kevin streams:
- C#, .NET, ASP.NET, 3D Printing, Conference Planning, and more!
Streaming on:
Links:
KeyFramers
What KeyFramers Stream
- UI, Animation, JavaScript, CSS, Web Development
Streaming on:
Links:
Kris Nova
What Kris streams:
- Go, Rust, Backend, Linux, Distributed Systems, Kubernetes, Containers.
Streaming on:
Links:
Krzysztof 'Chris' Cieslak
What Chris streams:
- F#, .Net, Functional Programming, WebDevelopment
Streaming on:
Links:
Kyle Shevlin
What Kyle streams:
- React, JavaScript, Functional Programming, Web Development
Streaming on:
Links:
Laur Spilca
What Laur streams:
- Java, Spring
Languages Spoken During Stream
- English
Streaming on:
Links:
Layla Porter
What Layla streams:
- C#, Javascript, .NET Core, ASP.NET Core, Azure, Twilio
Streaming on:
Links:
Lazar Nikolov
What Lazar streams:
- JavaScript, TypeScript, Blitz JS, Next JS, Chakra UI
Streaming on:
Links:
Leomendesm
What Leo streams:
- Javascript, Web Development, React, Elixir
Languages Spoken During Stream
- Portuguese
- English
Streaming on:
Links:
Liz Phillips (Illuminated Space)
What Liz streams:
- JavaScript, Gatsby, React, Web Development, Data Structures, Playing Video Games
Languages Spoken During Stream
- English
Streaming on:
Links:
Lizzie Siegle
What Lizzie streams:
- JavaScript, Swift, Web Development, Node.js, cool libraries and projects
Languages Spoken During Stream
- English
Streaming on:
Links:
Lucas Montano
What Lucas streams:
- Android, Node.js, Twitch extensions, Typescript, Open Source, Flutter, React.
Streaming on:
Links:
Luke Gorrie
What Luke streams:
- C, Lua, RaptorJIT, R, Nix, Network drivers
Streaming on:
Links:
Mark Kraus
What Mark streams:
- PowerShell, C#, Azure Functions, CI/CD Pipelines, OSS
Streaming on:
Languages Spoken During Stream
- English
Links:
Mark Mandel
What Mark streams:
- Game Development, Kubernetes, Golang, mostly working on Agones
Streaming on:
Languages Spoken During Stream
- English
Links:
Mark Rendle
What Mark streams:
- C#, Blazor, MAUI, .NET Previews, lessons for beginners
Streaming on:
Languages Spoken During Stream
- English
Links:
Marko Pavlovic
What Marko streams:
- Web Development. Python, C++, C#, Unity, Game Development, Android Development, OSS - Open Source Software
Languages Spoken During Stream
- English
- Ocassionaly spoken Serbian
Streaming on:
Links:
Masood Sadri
What Masood streams:
- Web Development, JavaScript, Node.js, React
Languages Spoken During Stream
- Persian
Streaming on:
Links:
Matt Cowley
What Matt streams:
- Maintaing Open Source Projects, Node.js, JavaScript, CSS, HTML, Vue, Web Development
Streaming on:
Languages Spoken During Stream
- English
Links:
Matt Groves
What Matt streams:
- Databases, Couchbase, SQL/NoSQL/SQL++, .NET, C#, ASP.NET, soldering kits, VR, podcasting
Streaming on:
Languages Spoken During Stream
- English
Links:
Matt Layman
What Matt streams:
- Building Software as a Service (SaaS) with Python and Django
Streaming on:
Languages Spoken During Stream
- English
Links:
Matt Podwysocki
What Matt aka BluerThanBlue Falcon aka λ Calrissian streams:
- JavaScript, Reactive Extensions, Node.js, C#, .NET Core, React-Native, React, Functional Programming, Open Source Stuff
Streaming on:
Languages Spoken During Stream
- English
Links:
Matthew Brandt (mattytwoshoes)
Also known as Matty
What Matty streams:
- JavaScript, Databases, SQL, Data Analytics edutainment (education & entertainment)
Streaming on:
Languages Spoken During Stream
- English
- German (occasionally)
- French (occasionally)
Links:
Mattias Petter Johansson
Also known as MPJ from Fun Fun Function
What MPJ streams:
- JavaScript, Node.js, Programming in general
Streaming on:
Languages Spoken During Stream
- English
Links:
MechJack
What MechJack streams:
- Java, JavaScript, React, Framework development, Programming in general
Streaming on:
Languages Spoken During Stream
- English
Links:
Micah Elizabeth Scott (scanlime)
What Micah streams:
- Reverse Engineering, Rust, C++, Hardware
Streaming on:
Links:
Michael Crump
What Michael Crump streams:
- Azure, Software Development, C#, .NET Core
Streaming on:
Links:
Michael Henderson (robedcoder / leadcoder)
What Michael Henderson streams:
- Full stack development
Streaming on:
Links:
Michael Jolley (BaldBeardedBuilder)
What Michael Jolley streams:
- C#, JavaScript, .Net Core, IoT
Streaming on:
Links:
Mike Conley
What Mike streams:
- Firefox Development, JavaScript, C++, CSS, Rust
Streaming on:
Links:
MishManners
What Mish streams:
- Hackathons, conference news, C#, Unity, Twilio Quest, JavaScript, GitHub, Python, Ruby, Machine Learning, AWS, DevOps
Streaming on:
Links:
Nicholas Brochu
What Nicholas streams:
- Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision
Streaming on:
Links:
mmatt
What mmatt streams:
- Python, Discord bots, Discord.py, general programming.
Streaming on:
Links:
Mohamed Elsherif
What Mohamed streams:
- Software Engineering topics and discussions, podcast and some times video tutorials.
Streaming on:
Links:
Nick Busey
What Nick streams:
- PHP, NodeJS, Docker, Ansible, DevOps, React, MeteorJS and occasionally I'll brew a beer!
Streaming on:
Links:
Nicolai Parlog
What Nicolai streams:
- Java, occasionally JavaScript, Kotlin, or even weirder stuff
Streaming on:
Links:
Ninjabunny9000
What Ninjabunny9000 Stream
- Python, C#, Ninja, Programming in general
Languages Spoken During Stream
- English
- Ninjago
Streaming on:
Links:
nmarulo
What nmarulo streams:
- JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS
Streaming on:
Links:
nullpointer128
What nullpointer streams:
- Javascript, flutter, Dart, Spring, Vue.js, Web development, App development
Streaming on:
Links:
Patrick Prémartin
What Patrick Prémartin streams:
- Delphi, PHP, JavaScript, Desktop Development, Web Development, Game Development
Streaming on:
Links:
Pavithra Kodmad
What PK streams:
- JavaScript, CSS, Open Source Stuff
Streaming on:
Links:
Pearly Owl
What PK streams:
- iOS, Swift, Sometimes Uni Assignments
Streaming on:
Links:
Per Vognsen
What Per Vognsen streams:
- Building system from scratch, C, Python, HDL, Ion
Streaming on:
Languages Spoken During Stream
- English
Links:
Phil Nash
What Phil Nash streams:
- IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript
Streaming on:
Links:
Pirate Software (Jason Thor Hall)
What Thor streams:
- Game Maker Studio, Game Development, Development Advice
Streaming on:
Links:
PixelogicDev
What PixelogicDev streams:
- iOS, Swift, JavaScript, Node.js, Angular, APIs, Web Development
Streaming on:
Links:
Plaintextnerds
What PixelogicDev streams:
- Python, C++, C#, Go, APIs, Web Development, NetCode, Networking, Startups, Open Source
Streaming on:
Links:
Rachael Tatman
What rachaeltatman streams:
- data science
- journal club
Streaming on:
Links:
RadicalFishGames
What RadicalFishGames streams:
- Game Development (JavaScript, WebGL) (Game: CrossCode)
Streaming on:
Links:
Ragnar Thor
What Ragnar Thor streams:
- JavaScript, React, Web Development, Open Source, Node.js
Streaming on:
Links:
Randall Hunt
What Randall streams:
AWS, Web Development, Python, Serverless, AI
Streaming on:
Links:
Ricardo Tavares
What Ricardo streams:
Angular 6+, SCSS, LUA, Node.js, Python, SQL, Typescript, WASM, Web Development
Streaming on:
Links:
Robin Pokorny
What Robin Pokorny streams:
- JavaScript, Functional Programming, Node.js
Streaming on:
Languages Spoken During Stream
- English
Links:
Robin Thomas
What Robin Pokorny streams:
- FOSS, JavaScript Frameworks, Linux, Arduino, Raspberry Pi
Streaming on:
Languages Spoken During Stream
- English
Links:
Rúben Gomes
What Rúben streams:
- Node.js, JavaScript, Vue, ES6/ES7, Full Stack Development
Streaming on:
Languages Spoken During Stream
- English, Portuguese
Links:
Russell Hay
What Russell streams:
- Rust, Functional Programming, Hardware, Generative Art
Streaming on:
Links:
RyanWarnerCodes
What Ryan streams:
- Web design and development, JavaScript, Gatsby, React, Firebase, Node, CSS, UI/UX Design
Streaming on:
Links:
Sallar Kaboli
What Sallar streams:
- JavaScript, Node.js, Electron, React, OSS Projects, APIs
Streaming on:
Languages Spoken During Stream
- English
- Persian (Farsi)
Links:
Sch3lpSC2
What Sch3lpSC2 streams:
- Kotlin, VueJS, CQRS, Web Development
Streaming on:
Links:
Sean Larkin
What Sean streams:
- Webpack, OSS, JavaScript, Gaming
Streaming on:
Links:
Sébastien Rancoud
What Sébastien streams:
- JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development
Streaming on:
Languages Spoken During Stream
- French
- English
Links:
Sebastian Krzyżanowski
What Sebastian Krzyżanowski streams:
- JavaScript, React, Redux + redux-saga, Firebase, Node.js
Streaming on:
Languages Spoken During Stream
- English
- Polish
Links:
Sergio Cinos
What Sergio Cinos streams:
- Node.js, React, MobX, Docker, DevOps, Full Stack Development
Streaming on:
Languages Spoken During Stream
- Spanish
Links:
Silent_Coyote
What Silent "Ky" Coyote streams:
- C++, Game Development, Node.js, PHP, JavaScript, Angular, Docker, DevOps, Full Stack Web Development
Streaming on:
Languages Spoken During Stream
- English
Links:
Shinmera
What Shinmera streams:
- Game Development, Common Lisp, Lisp projects demos
Streaming On:
Links:
Shirley Wu
What Shirley streams:
- Data Visualisation (DataViz), JavaScript, React
Streaming on:
Links:
Simeon Vincent
What Simeon Vincent streams:
- JavaScript, CSS, Web Development, Twitch extensions
Streaming on:
Languages Spoken During Stream
- English
Links:
Sir Lynix Van Frietjes
What Sir Lynix van Friejtes streams:
- C++, Lua, Game Development
Streaming on:
Languages Spoken During Stream
- French
- English (only when asked)
Links:
Siva
What Siva streams:
- ML, IoT, Node.js, JavaScript, GraphQL
Streaming on:
Links:
SkillVid
What SkillVid streams:
- Javascript, Adobe Illustrator
Languages Spoken During Stream
- Persian
Streaming on:
Links:
Sorskoot
What Sorskoot streams:
- JavaScript, Node.js, WebVR/WebAR/WebXR, Progressive web apps, IoT, Microsoft Azure
Streaming on:
Links:
Stan Daniels-Roth
What Stan streams:
- Web Development, JavaScript, CSS, PHP (Laravel)
Streaming on:
Languages Spoken During Stream
- French (Native)
- English
Links:
Suz Hinton
What Suz streams:
- IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript
Streaming on:
Links:
Swizec Teller
What Swizec streams:
- JavaScript, React, D3
Streaming on:
Languages Spoken During Stream
- English
Links:
Syanoks
What Syanoks streams:
- Operating System Development, C, Assembly, Shell, Python
Streaming on:
Tae'lur Alexis
What Tae'lur streams:
- JavaScript
Streaming on:
Links:
Talk2MeGooseman (Erik Guzman)
What Talk2MeGooseman streams:
- JavaScript, Node.js, ReactJS, React Native, APIs, Web Development
Streaming on:
Links:
Tanya Janca
What Tanya streams:
- Web Security, Azure, Cloud Security
Streaming on:
Links:
Ted M. Young
What Ted (JitterTed) streams:
- Java, Spring Boot, Spring MVC, Spring Data, Spring Cloud, TDD, JUnit, Web Development, Design Patterns, DDD, Hexagonal Architecture, IntelliJ IDEA
Streaming on:
Links:
teej_dev
He is Neovim Core contributor, Creator of Neovim telescope plugin and contribute to many others. Lately spending most of time in Rust.
What TJ DeVries (teej_dev) streams:
- Rust, Ruby, Neovim, Vim, Open Source, Memes
Streaming on:
Links:
tek256
What tek256 streams:
- Game Engine Development, C, Programming
Streaming on:
Links:
Theo
What Theo streams:
- JavaScript, TypeScript, Web Development
Streaming on:
Links:
ThePrimeagen
What ThePrimeagen streams:
- Golang, JavaScript, ReactJS, Memes, Amazingness
Streaming on:
Links:
Thomas Soerensen
What Thomas streams:
- Golang, PHP (Laravel), JavaScript
Streaming on:
Links:
Thorsten Lorenz
What Thorsten streams:
- Node.js, Module Development, Developer Tooling, Web Development, JavaScript
Streaming on:
Links:
Tierney Cyren
What Tierney streams:
- Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects
Streaming on:
Links:
Tim Ermilov
What Tim streams:
- OSS, building things with JavaScript, React
Streaming on:
Links:
Tim Yuen
What Tim streams:
- Game development, Godot, Rust, Music Composition
Streaming on:
Links:
Tracy and Matt
What Tracy and Matt stream:
- Node.js, Javascript, Python, Golang, Ruby, Twitch Extensions, Twitch Apps, Twitch Chat Bots, Game Mods, Machine Learning, Serverless, Open Source
Streaming on:
Links:
Trezy
What Trezy streams:
- JavaScript, Node.js, React.js, Next.js, Game Development, Web Development
Streaming on:
Links
TrshPuppy
What TrshPuppy streams:
- Security, JavaScript, Python, Go
Streaming on:
Links
Tsoding
What Tsoding streams:
- Game Development, Functional Programming, Programming Language Design, Artificial Intelligence, C, C++, Haskell, Rust, Scala
Streaming on:
Links:
TutorExilius
What TutorExilius streams:
- C++, Python, Java, JavaScript, PHP
Streaming on:
Languages spoken on stream
- German
- English is understood, and English is used for variable names
Links:
Tyler Leonhardt
What Tyler streams:
- PowerShell, C#, TypeScript, VSCode extension development, Maintaining OSS Projects
Streaming on:
Links:
Unspecified (Clark Sell)
What Unspecified streams:
- Svelte, React Node.js, GraphQL, Tailwind, Javascript, Web Development, Live Code Reviews
Streaming on:
Links:
Velopman
What Velopman streams:
- Game development, Godot
Languages Spoken During Stream
- English
Streaming on:
Links:
Vogue and Code (April Speight)
What April streams:
- Mixed Reality Toolkit, Mixed Reality, Virtual Reality, Augmented Reality, Basic programming concepts
Languages Spoken During Stream
- English
Streaming on:
Links:
whitep4nth3r
What whitep4nth3r streams:
- JavaScript, TypeScript, HTML, CSS/Sass, React, Angular, Svelte, Next.js, NodeJS
Streaming on:
Languages Spoken During Stream
- English
Links:
WindybeardGames
What Windy streams:
- ClickTeam Fusion, PhotoShop, Spine, Game Art
Languages Spoken During Stream
- English
- Wincy
Streaming on:
Links:
Shawn Wildermuth
What Shawn streams:
- Vue, TailwindCSS, Web Development, ASP.NET Core: Using Visual Studio/Code
Languages Spoken During Stream
- English
Streaming on:
Links:
Yosh
What Yosh streams:
- OSS maintenance, Tooling Development, JavaScript, Node.js, Choo
Streaming on:
Links:
Zorchenhimer
What Zorchenhimer streams:
- 6502 NES Assembly, Golang
Streaming on:
Links:
Twitch
As well as the awesome developers listed, there are a some team links and category links that will help you find active coders that are currently streaming on the Twitch platform.
Teams
Live Coders - https://www.twitch.tv/team/livecoders
Categories
Top Related Projects
😎 Awesome lists about all kinds of interesting topics
:books: Freely available programming books
Interactive roadmaps, guides and other educational content to help developers grow in their careers.
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
A complete computer science study plan to become a software engineer.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot