├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | script: 7 | - awesome_bot README.md --allow-dupe --allow-redirect 8 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hello@bnb.im. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. 4 | 5 | 6 | ## Important! 7 | > The pull request should have a useful title. Pull requests with `Update readme.md` as title will be closed right away because I'm so tired of nobody reading this document. Please carefully read everything in `Adding to this list`. 8 | 9 | ## Table of Contents 10 | 11 | - [Adding to this list](#adding-to-this-list) 12 | - [Adding something to an awesome list](#how-to-add-a-developer-stream-to-awesome-developer-streams) 13 | - [Updating your Pull Request](#updating-your-pull-request) 14 | 15 | ## Adding to this list 16 | 17 | Please ensure your pull request adheres to the following guidelines: 18 | 19 | - Search previous requests for additions to `awesome-developer-streams` before making a new one - your request may be a duplicate. 20 | - Make an individual pull request for each new streamer you'd like to add to `awesome-developer-streams`. 21 | - Please include a streamer's preferred social media in every new PR to `awesome-developer-streams` - share the ❤️ 22 | - Suggestions for improvements to the awesome list are _always_ welcome. 23 | - Check your spelling and grammar. 24 | - Pull requests and commits should have descriptive titles. 25 | - Add new developer streams alphabetically by the streamer's name or stream name. 26 | 27 | Suggestions for ammendments to these guidelines are always welcome - feel free to submit an issue or pull request. 28 | 29 | ## How to: Add a developer stream to awesome-developer-streams 30 | 31 | If you have something awesome to contribute to awesome-developer-streams list, this is how you can do it. 32 | 33 | You'll need to have a GitHub account - you can [register here](https://github.com/join)! 34 | 35 | 1. Access awesome-developer-streams's GitHub page [here](https://github.com/bnb/awesome-developer-streams) 36 | 2. Click on the `README.md` file: ![Step 2 Click on Readme.md](https://cloud.githubusercontent.com/assets/170270/9402920/53a7e3ea-480c-11e5-9d81-aecf64be55eb.png) 37 | 3. Now click on the edit icon. ![Step 3 - Click on Edit](https://cloud.githubusercontent.com/assets/170270/9402927/6506af22-480c-11e5-8c18-7ea823530099.png) 38 | 4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) 39 | 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](https://cloud.githubusercontent.com/assets/170270/9402937/7dd0652a-480c-11e5-9138-bd14244593d5.png) 40 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! 41 | 42 | ## Updating your Pull Request 43 | 44 | Sometimes, the maintainers of awesome-developer-streams will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-developer-streams list guidelines. We're always happy to help in any way we can. 45 | 46 | [Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that. 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Developer Streams [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | > A curated list of awesome developers who stream. 4 | 5 | *Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing, focusing on developers + streaming. 📺* 6 | 7 | #### Meta stuff about this awesome list: 8 | If you'd like to add a dev streamer to `awesome-developer-streams`, be sure to read the [contribution guidelines](CONTRIBUTING.md), make your change to this file and [open a pull request](https://opensource.guide/how-to-contribute/#opening-a-pull-request)! 9 | 10 | Like `awesome-developer-streams`? Reach out to [@bitandbang](https://twitter.com/bitandbang) on Twitter to say *hi*! 👋 11 | 12 | 28 | 29 | **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! ❤️ 30 | 31 | --- 32 | NEW: Be sure to check out the [Twitch directory listings](#twitch) at the end 33 | 34 | --- 35 | ## Table of Contents 36 | 37 | [#](#Numbers) - [A](#A) - [B](#B) - [C](#C) - [D](#D) - [E](#E) - [F](#F) - [G](#G) - [H](#H) - [I](#I) - [J](#J) - [K](#K) - [L](#L) - [M](#M) - [N](#N) - [O](#O) - [P](#P) - [R](#R) - [S](#S) - [T](#T) - [U](#U) - [V](#V) - [W](#W) - [X](#X) - [Y](#Y) - [Z](#Z) 38 | 39 | --- 40 | ## Numbers 41 | - [The 6 Figure Developer](#john-callaway) - **streaming:** Podcast by [John Callway](#john-callaway), [Clayton Hunt](#clayton-hunt) and [Jon Ash](#jon-ash), .NET, C#, Blazor 42 | 43 | --- 44 | ## A 45 | 46 | - [Aaron Schlesiner](#arschles) - **streaming:** Go/Golang, Python, Javascript, Kubernetes, Helm, Cloud Native 47 | - [AdamLearnsLive](#AdamLearnsLive) - **streaming:** Node.js, JavaScript, React, Full Stack Development, Game Development 48 | - [Adron Hall](#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. 49 | - [Al Sweigart](#al-sweigart) - **streaming:** Python 50 | - [Albérico Dias Barreto Filho](#albérico-dias-barreto-filho) - **streaming:** Twitch Extension Development, Streams Tools Development, Alexa Skills, IRL, JavaScript 51 | - [Alemayhu](#alemayhu) - **streaming:** Web Development, Imba, JavaScript 52 | - [Alexander Simovic](#alexander-simovic) - **streaming:** Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS 53 | - [Amos - Fasterthanlime](#amos---fasterthanlime) - **streaming:** Rust, Web development 54 | - [Andrew Courter](#acourter) - **streaming:** Web development, Vim, TypeScript, Kotlin 55 | - [Andrew Kelley](#andrew-kelley) - **streaming:** Zig programming language, Compiler, LLVM, ASM 56 | - [Andy Li](#andy-li) - **streaming:** Haxe, Web Development, Linux packaging 57 | - [Angie Jones](#angie-jones) - **streaming:** Java, Web Development, Test Automation 58 | - [Anthony Sottile](#anthony-sottile) - **streaming:** Python, linting, code formatting, testing, refactoring 59 | - [Anton Kuzmenko](#anton-kuzmenko) - **streaming:** Go/Golang, Ruby on Rails, Node.js, JavaScript, Terraform, Docker, Kubernetes, Helm, Bash, Vim. 60 | - [Antonio Maiorano](#antonio-maiorano) - **streaming:** Emulator Development, C++ 61 | - [Ardalis - Steve Smith](#ardalis---steve-smith) - **streaming:** C#, ASP.NET Core, Clean Architecture, DDD, Design Patterns, TDD 62 | - [Armin Ronacher](#armin-ronacher) - **streaming:** Rust, maybe Python 63 | 64 | [(top)](#table-of-contents) 65 | 66 | --- 67 | ## B 68 | - [badcop](#badcop) - **streaming:** Bash, Game Development, Godot, Variety programming 69 | - [Baggers](#baggers) - **streaming:** GPU programming, Game Development, Common Lisp tutorials 70 | - [BarRaider](#barraider) - **streaming:** C#, Stream Deck plugins development, Game Development 71 | - [Beachcasts](#beachcasts) - **streaming:** Web Development with PHP, Python, and adjecent technologies. Also, AWS and Nexmo/Vonage content. 72 | - [Ben Greenier](#ben-greenier) - **streaming:** Game Development, Unity3D, C#, Web Development, Node.js, JavaScript 73 | - [Benjamin Lannon](#benjamin-lannon) - **streaming:** Javascript, GitHub Actions, Gatsby, React 74 | - [BG Web Agency](#bg-web-agency) - **streaming:** NextJS, Remix, React, Angular, JavaScript, SASS, HTML, CSS, WordPress 75 | - [Binary Solo](#binary-solo) - **streaming:** Game Development, C++ 76 | - [Bobby Johnson](#bobby-johnson) - **streaming:** Node.js/Javascript, C#/dotnetcore, React, Docker, OSX, VSCode, Identity & Security, Full Stack Development 77 | - [Brad Garropy](#brad-garropy) - **streaming:** JavaScript, Node.js, React, Gatsby, Next, Serverless, Web Development 78 | - [Brandon Satrom](#brandon-satrom) - **streaming:** IoT, C++, Node.js, JavaScript, Web Development, VueJS, Mobile Development 79 | - [Brent Schooley (HeccBrent)](#brent-schooley-heccbrent) - **streaming:** Javascript, Python, C#, Swift, Twilio, TwilioQuest, Video Content Creation, Mobile Development, Web Development, Streaming Tech 80 | - [Brent Ozar](#brent-ozar) - **streaming:** SQL Server, SQL Server optimisation and performance, Database concepts and best practices 81 | - [Brian Clark (Clarkio)](#brian-clark-clarkio) - **streaming:** Node.js, JavaScript, IoT, Web Development, Swift 82 | - [Brian Douglas](#brian-douglas-bdougie) - **streaming:** Open Source, Node.js, Jamstack, React, Design Systems. 83 | - [Brian Lagunas](#brian-lagunas) - **streaming:** Design Patterns and practices, Prism, WPF, UWP, Xamarin Forms, Blazor, Flutter, Angular, React, Vue, geeky things. 84 | - [Brian McKenna](#brian-mckenna) - **streaming:** Haskell, Functional Programming 85 | - [britocoding](#britocoding) - **streaming:** Node.js, JavaScript, TypeScript, React, ReactJS, Web Development 86 | - [Brookzerker](#brookzerker) - **streaming:** Rust 87 | - [btor](#btor) - **streaming:** PHP (Symfony), Javascript, Java (Swing), Python ... Language: FRA,ENG 88 | 89 | [(top)](#table-of-contents) 90 | 91 | --- 92 | ## C 93 | - [Caidan Williams](#caidan-williams) - **streaming:** Java, Python, Game Development, Game Networking, LibGDX, Digital Art 94 | - [Cailir](#cailir) - **streaming:** NodeJS, HTML, CSS, Javascript, Game Development 95 | - [Calvin Allen / Coding with Calvin](#calvin-allen--coding-with-calvin) - **streaming:** Microsoft Azure, C#, .NET, .NET Core, DevOps, OSS Development, Visual Studio Extensions 96 | - [CaptainKraft](#captainkraft) - **streaming:** C, C++, Rust 97 | - [Casey Muratori](#casey-muratori) - **streaming:** C, C++, Game Development, Algorithms 98 | - [Catalin Miron](#catalin-miron) - **streaming:** React, React Native, GraphQL, Javascript, Typescript, Mobile Development, Web Development, Animations 99 | - [ChaelCodes](#chaelcodes) - **streaming:** React, Ruby on Rails, Coding Games 100 | - [Chiroptical](#chiroptical) - **streaming:** Haskell, Elm 101 | - [Chris Dieringer (cdaringe)](#chris-dieringer-cdaringe) - **streaming:** OCaml, Typescript, React, Node 102 | - [Chris Griffing (cmgriffing)](#cmgriffing) - **streaming:** TypeScript, React, Astro, Rust, Go, Elixir 103 | - [Chrissy Lemaire](#chrissy-lemaire) - **streaming:** PowerShell, SQL 104 | - [Corey Weathers](#corey-weathers) - **streaming:** C#, .NET Core, ASP.NET Core, Azure, Twilio, Hackerrank, Codewars, TwilioQuest 105 | - [Codebase Alpha (essenbee)](#codebase-alpha-essenbee) - **streaming:** C#, .Net Core, ASP.Net Core 106 | - [Codephobia](#codephobia) - **streaming:** Angular, Typescript, Javascript, Go/Golang, Node.js, Terraform, Devops, Docker, AWS, Lambda, Web Development, NativeScript 107 | - [CodeRushed](#coderushed-mark-miller) - **streaming:** C#, .Net Core, ASP.Net Core, TypeScript, JavaScript, CodeRush dog-fooding 108 | - [Código Falado](#código-falado) - **streaming:** HTML, CSS, Javascript, Laravel, Vue, Tailwind, Javascript, Typescript, Node.js, Vue.js, PHP, Laravel, Web Development, Portuguese 109 | - [Coding Garden with CJ](#coding-garden-with-cj) - **streaming:** JavaScript, Vue.js, Node.js, React, Codewars problem solving 110 | - [Collin Henderson](#collin-henderson) - **streaming:** JavaScript, PHP, Laravel, Vue.js 111 | - [Cory Knox](#cory-knox) - **streaming:** PowerShell, C#, TypeScript, VSCode extension development 112 | - [C0d3Spaghetti](#code-sphagetti-ayush-chauhan) - **streaming:** JavaScript, Next.JS, React.js, Node.js, Azure, Serverless 113 | 114 | [(top)](#table-of-contents) 115 | 116 | --- 117 | ## D 118 | - [Daniel Jenkins](#daniel-jenkins) - **streaming:** JavaScript, PHP, C#, Unity, Game Development, Web Development 119 | - [Daniel Reis](#daniel-reis) - **streaming:** Laravel, Lumen, PHP, Backend, Web Development 120 | - [Daniel Shiffman](#daniel-shiffman) - **streaming:** JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms 121 | - [Daniel Stenberg](#daniel-stenberg) - **streaming:** C, Network Tools, Network Security 122 | - [Darko Meszaros](#darko-meszaros) - **streaming:** AWS, Cloud, Developer Tools, Architecture, Python, Vim, Linux 123 | - [David Pedersen](#david-pedersen) - **streaming:** Rust, Ruby, Vim 124 | - [David Poindexter (roberttables)](#david-poindexter-roberttables) - **streaming:** Node.js, JavaScript, React, Docker, AWS, Terraform, DevOps, Developer Tooling 125 | - [DevChatter](#DevChatter) - **streaming:** C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming 126 | - [Developers Garage](#developers-garage) - **streaming:** C#, JavaScript, TypeScript, .NET Core, ASP.NET Core, OSS, Xamarin 127 | - [Dillon Pentz](#dillon-pentz-dillonea) - **streaming:** OBS Development using C++. Also streams Python and JavaScript 128 | - [DJ Adams](#dj-adams) - **streaming:** SAP development - including integration and extension topics on SAP Business Technology Platform 129 | - [Dmitry Figol](#dmitry-figol) - **streaming:** Network programmability, Network automation, Python, NetDevOps, DevOps 130 | - [DrunkDevs](#drunkdevs) - **streaming:** Game Development, Game Maker: Studio, Aseprite 131 | - [DwayneWritesCode](#dwaynewritescode) - **streaming:** Open source development, JavaScript, TypeScript, WordPress 132 | - [Dylan Beattie](#dylan-beattie) - **streaming:** C#, .NET, JavaScript, Rockstar, SonicPi, live music 133 | 134 | [(top)](#table-of-contents) 135 | 136 | --- 137 | ## E 138 | - [Eddie Jaoude](#eddie-jaoude) - **streaming:** Open Source, JavaScript, Angular, AWS, Serverless, Node, TypeScript, GitHub, Cucumber 139 | - [Ekaterina Sychenko](#ekaterina-sychenko) - **streaming:** JavaScript, TypeScript, React, Redux, Node.js, PostgreSQL 140 | - [Emanuele Bartolesi](#emanuele-bartolesi) - **streaming:** C#, .NET Core, ASP.NET, OSS, GitHub, Pair Programming 141 | - [Eralp Karaduman](#eralp-karaduman) - **streaming:** iOS, Swift, Flutter, Dart, React Native, React, TypeScript, JavaScript, C#, Unity3D, Pixel Art, Aseprite 142 | - [Erik St. Martin](#erik-st-martin) - **streaming:** Rust, Go/Golang, Video Encoding, Kubernetes 143 | - [Eser Ozvataf](#eser-ozvataf) - **streaming:** JavaScript, C#, .NET Core, React, OSS, GitHub, Serverless, node.js, TypeScript, Functional Programming, DevOps 144 | - [Exxjob](#exxjob) - **streaming:** Kotlin, Solidity, Crystal, Rust, Flutter, Vlang 145 | 146 | [(top)](#table-of-contents) 147 | 148 | --- 149 | ## F 150 | - [Feross Aboukhadijeh](#feross-aboukhadijeh) - **streaming:** JavaScript, Node.js, Frameworks, Developer Tooling, Web Development 151 | - [Ferris](#ferris) - **streaming:** Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++ 152 | - [Fletcher (IAmFletcher)](#fletcher-iamfletcher) - **streaming:** JavaScript, Node, Go 153 | - [Frank Boucher](#frank-boucher) - **streaming:** Microsoft Azure, C#, .NET Core, DevOps, OSS Development 154 | - [Franziska Hinkelmann](#franziska-hinkelmann) - **streaming:** JavaScript, Node.js, Interview Training, Pair Programming 155 | - [Freya Holmér](#freya-holmér) - **streaming:** Game Development, Unity, C#, Shaders, Developer Tooling, LGBT+ discussion 156 | 157 | [(top)](#table-of-contents) 158 | 159 | --- 160 | ## G 161 | - [Gareth Hubball](#gareth-hubball) - **streaming:** F#, .NET, .NET Core, Functional Programming, Rust, Xamarin 162 | - [Gary Ewan Park](#gary-ewan-park) - **streaming:** C#, .NET, .NET Core, Cake, Chocolatey, DevOps 163 | - [Gary Hockin](#gary-hockin) - **streaming:** PHP, Twilio, TwilioQuest 164 | - [Gary Kramlich](#gary-kramlich) - **streaming:** Pidgin Development, Convey Development, OSS Development, C, Golang, Python, JavaScript, Docker, Containers 165 | - [Gavin Barron](#gavin-barron) - **streaming:** Web Development, C#, TypeScript, Azure, DevOps 166 | - [Geoffrey Huntley](#geoffrey-huntley) - **streaming:** Haskell, Reactive Extensions, NixOS, OSS Development, C#, .NET, Xamarin, DevOps 167 | - [Giovanny Gongora](#giovanny-gongora) - **streaming:** JavaScript, Node.js, Rust, C++, Performance, OS Development 168 | - [Go_Maestro_Go](#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 169 | - [Guy Royse](#guy-royse) - **streaming:** Redis, JavaScript, Software Development, Test Driven Development 170 | - [Gwen Frey](#gwen-frey) - **streaming:** Game Development, Unreal Blueprint, Animation 171 | - [Gynvael Coldwind](#gynvael-coldwind) - **streaming:** Software development, Python, C, C++, ASM, Reverse engineering, Hacking, Security 172 | 173 | [(top)](#table-of-contents) 174 | 175 | --- 176 | ## H 177 | - [HardlyDifficult](#hardlydifficult) - **streaming:** Game Development (Unity3D, C#), C# Programming, Cryptocurrency 178 | - [Holden Karau](#holden-karau) - **streaming:** Scala, Python, Spark, PySpark, Open Source 179 | - [HowToCodeWell (Peter Fisher)](#howtocodewell-peter-fisher) - **streaming:** PHP, Symfony, Laravel, Lumen Python, Micro Python, Flask, Linux, Docker, JavaScript, HTML, CSS Full Stack 180 | - [Huntabyte](#huntabyte) - **streaming:** Web development 181 | 182 | [(top)](#table-of-contents) 183 | 184 | --- 185 | ## I 186 | - [Ian Lovett](#ian-lovett) - **streaming:** JavaScript, React, Redux, Node.js, Express, ElasticSearch, CryptoCurrency Apps, Gaming 187 | - [iDevelopThings](#idevelopthings) - **streaming:** PHP, JavaScript, Node.js, Full stack development, Web Development 188 | - [incompetent_ian](#incompetent_ian) - **streaming:** Python, JavaScript, React, FastAPI, Full Stack Development, Web Development 189 | 190 | [(top)](#table-of-contents) 191 | 192 | --- 193 | ## J 194 | - [Jack Mott](#jack-mott) - **streaming:** Teaching Programming, Gamedev, Golang, SDL2, OpenGL 195 | - [Jason Lengstorf](#jlengstorf) - **streaming:** GatsbyJS (React) development 196 | - [Jeff and Dom Make a Game](#jeff-and-dom-make-a-game) - **streaming:** Game development, pair programming, Unity, TypeScript/JavaScript, programming first principles, witty banter 197 | - [Jeff Fritz](#jeff-fritz) - **streaming:** C#, .NET, ASP.NET, OSS and Pair Programming 198 | - [Jeff Lindsay](#jeff-lindsay) - **streaming:** Open Source, Game Development, C#, Golang, Docker, Unity3D, JavaScript, Developer Tooling 199 | - [Jeff Panici](#jeff-panici) - **streaming:** C, C++, Assembly, C#, Rust, JavaScript, Basecode, Programming Language Development, Compiler Development, Web Development, Game Development 200 | - [Jen Tong](#jen-tong) - **streaming:** Python, JavaScript, NodeBots, Astronomy 201 | - [Jesse Skinner](#jesse-skinner) - **streaming:** Full stack web development, JavaScript, CSS, HTML, React, Node.js, PHP, Lua 202 | - [Jesse Weigel](#jweigel) - **streaming:** React, Node.js, CSS, Next.js, Wordpress 203 | - [Jessica Mak](#jessica-mak) - **streaming:** C++, OpenGL, Game Development 204 | - [Jochen Lillich](#jochen-lillich) - **streaming:** Ruby, Chef, DevOps, SRE, Docker, Kubernetes 205 | - [Joe Bew](#joe-bew) - **streaming:** Practices of computer programming, Clean Code, TDD, Refactoring, Open Source projects 206 | - [Jon Gjengset](#jon-gjengset) - **streaming:** Rust 207 | - [Jonatas "Jojo" Baldin](#jonatas-jojo-baldin) - **streaming:** Programming, Infrastructure, Serverless, Golang, Python, Knative, OpenFaaS, AWS, GCP, Azure 208 | - [Jonathan Blow](#jonathan-blow) - **streaming:** Programming, Gamedev, Jai, C++, OpenGL 209 | - [Jordan Lewis](#jordan-lewis) - **streaming:** Databases, Database Programming 210 | - [Jorge Cano](#jorge-cano) - **streaming:** Angular, Javascript, Programming, Web development 211 | - [Joseph Guadagno](#joseph-guadagno) - **streaming:** C#, .NET, ASP.NET, OSS, Azure, Ionic, and React 212 | - [Josh Hawkins](#josh-hawkins) - **streaming:** JavaScript, Node.js, C++, Elixir, Python, OSS Projects, Gaming 213 | - [Josh Justice](#josh-justice) - **streaming:** JavaScript, Rails, Ember, React Native 214 | - [Josh Kupka](#josh-kupka) - **streaming:** JavaScript, Building custom streaming service 215 | - [Josh Medeski](#josh-medeski) - **streaming:** Web developer teaching how to better use the terminal, neovim, tmux, macOS, and more 216 | - [Josh Wulf](#josh-wulf) - **streaming:** TypeScript, NestJS, Microservices, Zeebe, Minecraft programming in JS 217 | - [Julian Duque](#julian-duque) - **streaming:** JavaScript, Node.js, Frameworks, Developer Tooling, Web Development 218 | 219 | [(top)](#table-of-contents) 220 | 221 | --- 222 | ## K 223 | - [KalleHallden](#kallehallden) - **streaming:** Python, Flutter, Dart, Java 224 | - [KensoDev](#kensodev) - **streaming:** Advanced Devops - Python, Terraform, React 225 | - [Kent C. Dodds](#kent-c-dodds) - **streaming:** JavaScript, React, Web Development, Open Source, Node.js 226 | - [Keraf](#keraf) - **streaming:** JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev 227 | - [Kevin Griffin](#kevin-griffin) - **streaming:** C#, .NET, ASP.NET, 3D Printing, Conference Planning, and more! 228 | - [KeyFramers](#KeyFramers) - **streaming:** CSS, Javascript, UI Animation, Web Development 229 | - [Kris Nova](#kris-nova) - **streaming:** Go, Rust, Backend, Linux, Distributed Systems, Kubernetes, Containers, and more! 230 | - [Krzysztof Cieslak](#Krzysztof-Chris-Cieslak) - **streaming:** F#, .Net, Functional Programming, Web Development 231 | - [Kyle Shevlin](#kyle-shevlin) - **streaming:** React, JavaScript, Functional Programming, Web Development 232 | 233 | [(top)](#table-of-contents) 234 | 235 | --- 236 | ## L 237 | - [Laur Spilca](#laur-spilca) - **streaming:** Java, Spring 238 | - [Layla Porter](#layla-porter) - **streaming:** C#, Javascript, .NET Core, ASP.NET Core, Azure, Twilio 239 | - [Lazar Nikolov](#lazar-nikolov) - **streaming:** JavaScript, TypeScript, Blitz JS, Next JS, Chakra UI 240 | - [Leomendesm](#leomendesm) - **streaming:** Javascript, Web Development, React, Elixir 241 | - [Liz Phillips (Illuminated Space)](#liz-phillips-illuminated-space) - **streaming:** JavaScript, Gatsby, React, Web Development, Data Structures, Playing Video Games 242 | - [Lizzie Siegle](#lizzie-siegle) - **streaming:** JavaScript, Swift, Web Development, Node.js, cool libraries and projects 243 | - [Lucas Montano](#lucas-montano) - **streaming:** - Android, Node.js, Twitch extensions, Typescript, Open Source, Flutter, React. 244 | - [Luke Gorrie](#luke-gorrie) - **streaming:** C, Lua, RaptorJIT, R, Nix, Network drivers 245 | 246 | [(top)](#table-of-contents) 247 | 248 | --- 249 | ## M 250 | - [Marek Rogalski](#marek-rogalski) - **streaming:** C++, Python, Maintaing Open Source Projects, JavaScript, programming in general, Desktop Development, Web Development 251 | - [Mark Kraus](#mark-kraus) - **streaming:** PowerShell, C#, Azure Functions, CI/CD Pipelines, OSS 252 | - [Mark Mandel](#mark-mandel) - **streaming:** Game Development, Kubernetes, Go, OSS 253 | - [Mark Rendle](#mark-rendle) - **streaming:** C#, Blazor, MAUI, .NET Previews, beginner lessons 254 | - [Marko Pavlovic](#marko-pavlovic) - **streaming:** Python, C++, C#, Game Development, Android, OSS 255 | - [Masood Sadri](#masood-sadri) - **streaming:** Web Development, JavaScript, Node.js, React 256 | - [Matt Cowley](#matt-cowley) - **streaming:** Maintaing Open Source Projects, Node.js, JavaScript, CSS, HTML, Vue, Web Development 257 | - [Matt Groves](#matt-groves) - **streaming:** Databases, Couchbase, SQL/NoSQL/SQL++, .NET, C#, ASP.NET, soldering kits, VR, podcasting 258 | - [Matt Layman](#matt-layman) - **streaming:** Python, Django, Software as a Service (SaaS), Web Development 259 | - [Matt Podwysocki](#matt-podwysocki) - **streaming:** JavaScript, Reactive Extensions, Node.js, C#, .NET Core, React-Native, React, Functional Programming, Open Source Stuff 260 | - [Matthew Brandt](#matthew-brandt-mattytwoshoes) - **streaming:** JavaScript, Databases, SQL, Data Analytics edutainment (education & entertainment) 261 | - [Mattias Petter Johansson](#mattias-petter-johansson) - **streaming:** JavaScript, Node.js, Programming in general 262 | - [MechJack](#mechjack) - **streaming:** Java, JavaScript, React, Framework development, Programming in general 263 | - [Micah Elizabeth Scott](#micah-elizabeth-scott-scanlime) - **streaming:** Reverse Engineering, Rust, C++, Hardware 264 | - [Michael Crump](#michael-crump) - **streaming:** Azure, Software Development, C#, .NET Core 265 | - [Michael Henderson](#michael-henderson-robedcoder--leadcoder) - **streaming:** Fullstack development 266 | - [Michael Jolley](#michael-jolley-baldbeardedbuilder) - **streaming:** C#, JavaScript, .Net Core, IoT 267 | - [Mike Conley](#mike-conley) - **streaming:** Firefox Development, JavaScript, C++, CSS, Rust 268 | - [MishManners](#MishManners) - **streaming:** Game dev, Python, JavaScript, C#, programming, other random coding things (ie. AWS Deep Racer), Ruby, DevOps, GitHub 269 | - [mmatt](#mmatt) - **streaming:** Python, Discord bots, programming in general. 270 | - [Mohamed Elsherif](#mohamed-elsherif) - **streaming:** Software Engineering topics and discussions, podcast and some times video tutorials. 271 | 272 | [(top)](#table-of-contents) 273 | 274 | --- 275 | ## N 276 | - [Nathan Baggs](#nathan-baggs) - **streaming:** C++, Game development, Reverse engineering, Low level development 277 | - [Nicholas Brochu](#nicholas-brochu) - **streaming:** Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision 278 | - [Nick Busey](#nick-busey) - **streaming:** PHP, NodeJS, Docker, Ansible, DevOps, React, MeteorJS and occasionally I'll brew a beer! 279 | - [Nicolai Parlog](#nicolai-parlog) - **streaming:** Java, occasionally JavaScript, Kotlin, or even weirder stuff 280 | - [Ninjabunny9000](#ninjabunny9000) - **streaming:** Python, C#, Ninja, Programming in general 281 | - [nmarulo](#nmarulo) - **streaming:** JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS 282 | - [nullpointer128](#nullpointer128) - **streaming:** Javascript, flutter, Dart, Spring, Vue.js, Web development, App development 283 | 284 | [(top)](#table-of-contents) 285 | 286 | --- 287 | ## P 288 | - [Patrick Prémartin](#patrick-premartin) - **streaming:** Delphi, PHP, JavaScript, Desktop Development, Web Development, Game Development 289 | - [Pavithra Kodmad](#pavithra-kodmad) - **streaming:** JavaScript, CSS, Open Source Stuff 290 | - [Pearly_Owl](#Pearly_Owl) - **streaming:** iOS, Swift, Uni Assignments 291 | - [Per Vognsen](#per-vognsen) - **streaming:** Software/Hardware low-level development, C, Python, Ion 292 | - [Phil Nash](#Phil-Nash) - **streaming:** JavaScript, Ruby, Twilio, Open Source, Web Development 293 | - [Pirate Software (Jason Thor Hall)](#pirate-software-jason-thor-hall) - **streaming:** Game Maker Studio, Game Development, Development Advice 294 | - [PixelogicDev](#PixelogicDev) - **streaming:** iOS, Swift, JavaScript, Node.js, Angular, APIs, Web Development 295 | - [Plaintextnerds](#Plaintextnerds) - **streaming:** Python, C++, C#, Go, APIs, Web Development, NetCode, Networking, Startups, Open Source 296 | 297 | [(top)](#table-of-contents) 298 | 299 | --- 300 | ## R 301 | - [Rachael Tatman](#rachael-tatman) - **streaming:** Data Science Livecoding (mostly R) and scientic paper journal club 302 | - [RadicalFishGames](#radicalfishgames) - **streaming:** Game Development (JavaScript, WebGL) (Game: CrossCode) 303 | - [Ragnar Thor](#ragnar-thor) - **streaming:** JavaScript, React, Web Development, Open Source, Node.js 304 | - [Randall Hunt](#randall-hunt) - **streaming:** AWS, Web Development, Hardware Hacking, Python, Serverless, AI 305 | - [Ricardo Tavares](#ricardo-tavares) - **streaming:** Angular 6+, SCSS, LUA, Node.js, Python, SQL, Typescript, WASM, Web Development 306 | - [Robin Pokorny](#robin-pokorny) - **streaming:** JavaScript, Functional Programming, Node.js 307 | - [Robin Thomas](#teknicus) - **streaming:** FOSS, JavaScript Frameworks, Linux, Arduino, Raspberry Pi 308 | - [Rúben Gomes](#rúben-gomes) - **streaming:** Node.js, JavaScript, Vue, ES6/ES7, Full Stack Development 309 | - [Russell Hay](#russell-hay) - **streaming:** Rust, Functional Programming, Hardware, Generative Art 310 | - [Ryan Warner](#ryan-warner) - **streaming:** Web design and development, JavaScript, Gatsby, React, Firebase, Node, CSS, UI/UX Design 311 | 312 | [(top)](#table-of-contents) 313 | 314 | --- 315 | ## S 316 | - [Sallar Kaboli](#sallar-kaboli) - **streaming:** JavaScript, Node.js, Electron, React, OSS Projects, APIs 317 | - [Sch3lpSC2](#sch3lpsc2) - **streaming:** Kotlin, VueJS, CQRS, Web Development 318 | - [Sean Larkin](#sean-larkin) - **streaming:** Webpack, OSS, JavaScript, Gaming 319 | - [Sebastian Krzyżanowski](#sebastian-krzyżanowski) - **streaming:** JavaScript, React, Redux + redux-saga, Firebase, Node.js 320 | - [Sébastien Rancoud](#sébastien-rancoud) - **streaming:** JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development 321 | - [Sergio Cinos](#sergio-cinos) - **streaming:** JavaScript, React, Node.js, Full stack development 322 | - [Silent_Coyote](#silent_coyote) - **streaming:** C++, Node.js, PHP, JavaScript, Angular, Full Stack Web Development 323 | - [Shinmera](#shinmera) - **streaming:** Game Development, Common Lisp 324 | - [Shirley Wu](#shirley-wu) - **streaming:** Data Visualisation (DataViz), JavaScript, React 325 | - [Simeon Vincent](#simeon-vincent) - **streaming:** JavaScript, CSS, Web Development, Twitch extensions 326 | - [SirLynixVanFrietjes](#sir-lynix-van-frietjes) - **streaming:** C++, Lua, Game Development (in french) 327 | - [Siva](#siva) - **streaming:** ML, IoT, Node.js, JavaScript, GraphQL 328 | - [SkillVid](#skillvid) - **streaming:** Javascript, Adobe Illustrator 329 | - [Sorskoot](#sorskoot) - **streaming:** JavaScript, Node.js, WebVR/WebAR/WebXR, Progressive web apps, IoT, Microsoft Azure 330 | - [Stan Daniels-Roth](#stan-daniels-roth) - **streaming:** Web Development, AdminSys, JavaScript, CSS, PHP (Laravel), 3D Printing 331 | - [Suz Hinton](#suz-hinton) - **streaming:** IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript 332 | - [Swizec Teller](#swizec-teller) - **streaming:** JavaScript, React, D3 333 | - [Syanoks](#syanoks) - **streaming:** Operating System Development, C, Assembly, Shell, Python 334 | 335 | [(top)](#table-of-contents) 336 | 337 | --- 338 | ## T 339 | - [Tae'lur Alexis](#taelur-alexis) - **streaming:** JavaScript, Web Development 340 | - [Talk2MeGooseman (Erik Guzman)](#Talk2MeGooseman-erik-guzman) - **streaming:** JavaScript, Node.js, ReactJS, React Native, APIs, Web Development 341 | - [Tanya Janca](#tanya-janca) - **streaming:** Web Security, Azure, Cloud Security 342 | - [Ted M. Young](#ted-m-young) - **streaming:** Java, Spring Boot, Spring MVC, Spring Data, Spring Cloud, TDD, JUnit, Web Development, Design Patterns, DDD, Hexagonal Architecture, IntelliJ IDEA 343 | - [TJ DeVries](#teej_dev) - **streaming:** Rust, Ruby, Nvim, Vim, Open Source, Memes 344 | - [tek256](#tek256) - **streaming:** Game Engine Development, C 345 | - [Theo](#theo) - **streaming:** JavaScript, TypeScript, Web Development 346 | - [ThePrimeagen](#theprimeagen) - **streaming:** Golang, JavaScript, ReactJS, Memes, Amazingness. 347 | - [Thomas Soerensen](#thomas-soerensen) - **streaming:** Golang, PHP (Laravel), JavaScript 348 | - [Thorsten Lorenz](#thorsten-lorenz) - **streaming:** Node.js, Module Development, Developer Tooling, Web Development, JavaScript 349 | - [Tim Ermilov](#tim-ermilov) - **streaming:** OSS, building things with JavaScript, React 350 | - [Tim Yuen](#tim-yuen) - **streaming:** Game development, Godot, Rust, Music Composition 351 | - [Tierney Cyren](#tierney-cyren) - **streaming:** Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects 352 | - [Tracy and Matt](#tracy-and-matt) - **streaming:** Node.js, Javascript, Python, Golang, Ruby, Twitch Extensions, Twitch Apps, Twitch Chat Bots, Game Mods, Machine Learning, Serverless, Open Source 353 | - [Trezy](#trezy) **streaming:** JavaScript, Node.js, React.js, Next.js, Game Development, Web Development 354 | - [TrshPuppy](#trshpuppy) **streaming:** Security, JavaScript, Python, Go 355 | - [Tsoding](#tsoding) - **streaming:** Game Development, Functional Programming, Programming Language Design, Artificial Intelligence, C, C++, Haskell, Rust, Scala 356 | - [TutorExilius](#TutorExilius) - **streaming:** C++, Python, Java, JavaScript, PHP 357 | - [Tyler Leonhardt](#tyler-leonhardt) - **streaming:** PowerShell, C#, TypeScript, VSCode extension development, Maintaining OSS Projects 358 | 359 | 360 | [(top)](#table-of-contents) 361 | 362 | --- 363 | ## U 364 | - [Unspecified (Clark Sell)](#unspecified-clark-sell) - **streaming:** Svelte, React Node.js, GraphQL, Tailwind, Javascript, Web Development, Live Code Reviews 365 | 366 | --- 367 | ## V 368 | - [Velopman](#velopman) - **streaming:** Game development, Godot 369 | - [Vogue and Code (April Speight)](#vogue-and-code-april-speight) - **streaming:** Mixed Reality Toolkit, Mixed Reality, Virtual Reality, Augmented Reality, Basic programming concepts 370 | 371 | [(top)](#table-of-contents) 372 | 373 | --- 374 | ## W 375 | - [whitep4nth3r](#whitep4nth3r) - **streaming:** JavaScript, TypeScript, HTML, CSS/Sass, React, Angular, Svelte, Next.js, NodeJS 376 | - [WindybeardGames](#windybeardgames) - **streaming:** ClickTeam Fusion, PhotoShop, Spine, Game Art 377 | - [Shawn Wildermuth](#shawnwildermuth) - **streaming:** JavaScript, TypeScript, Vue, Vite, TailwindCSS, ASP.NET Core, and VSCode 378 | 379 | [(top)](#table-of-contents) 380 | 381 | --- 382 | ## Y 383 | - [Yosh](#yosh) - **streaming:** OSS maintenance, Tooling Development, JavaScript, Node.js, Choo 384 | 385 | [(top)](#table-of-contents) 386 | 387 | --- 388 | ## Z 389 | - [Zorchenhimer](#zorchenhimer) **streaming:** 6502 NES Assembly, Golang 390 | 391 | [(top)](#table-of-contents) 392 | 393 | ---- 394 | # Developers That Stream 395 | 396 | ### The 6 Figure Developer 397 | #### What The 6 Figure Developer streams: 398 | - The 6 Figure Developer podcast is a podcast by [John Callway](#john-callaway), [Clayton Hunt](#clayton-hunt) and [Jon Ash](#jon-ash) and in addition to streaming coding with .NET, C# and Blazor, they freqently stream their interviews with notable .NET advocates. 399 | #### Links: 400 | - [Twitch](https://twitch.tv/6figuredev) 401 | Presenters:- 402 | - [John Callway](#john-callaway) 403 | - [Clayton Hunt](#clayton-hunt) 404 | - [Jon Ash](#jon-ash) 405 | 406 | --- 407 | 408 | ### Arschles 409 | #### What Aaron streams: 410 | - Go/Golang, Python, Javascript, Kubernetes, Helm, Cloud Native 411 | #### Streaming on: 412 | - [Twitch](https://twitch.tv/arschles) 413 | #### Links: 414 | - [Twitter](https://twitter.com/arschles) 415 | - [GitHub](https://github.com/arschles) 416 | - [Website](https://arschles.com) 417 | 418 | [(top)](#table-of-contents) 419 | 420 | --- 421 | ### AdamLearnsLive 422 | #### What Adam streams: 423 | - Node.js, JavaScript, React, Full Stack Development, Game Development 424 | #### Streaming on: 425 | - [Twitch](https://www.twitch.tv/adamlearnslive) 426 | #### Links: 427 | - [Discord](https://discord.gg/AdamLearns) 428 | - [Twitter](https://twitter.com/AdamLearnsLive) 429 | - [YouTube](https://youtube.com/c/AdamLearns) 430 | - [Website](https://adamlearns.com) 431 | 432 | [(top)](#table-of-contents) 433 | 434 | --- 435 | ### Adron Hall 436 | #### What Adron streams: 437 | - 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. 438 | #### Streaming on: 439 | - [Twitch](https://www.twitch.tv/thrashingcode/) 440 | - [YouTube](https://www.youtube.com/channel/UCHSCXYCMOOS-VSUdRsn13GQ) 441 | #### Links: 442 | - [Twitter](https://twitter.com/adron) 443 | - [Discord](https://discord.gg/gASJah) 444 | - [Blog](https://compositecode.blog/) 445 | 446 | [(top)](#table-of-contents) 447 | 448 | --- 449 | ### Al Sweigart 450 | #### What Al streams: 451 | - Python 452 | #### Streaming on: 453 | - [Twitch](https://www.twitch.tv/AlSweigart/) 454 | - [YouTube](https://www.youtube.com/albert10110) 455 | #### Links: 456 | - [Twitter](https://twitter.com/AlSweigart) 457 | - [GitHub](https://github.com/asweigart) 458 | - [Website](https://inventwithpython.com/) 459 | - [Website](http://alsweigart.com/) 460 | 461 | [(top)](#table-of-contents) 462 | 463 | --- 464 | ### Albérico Dias Barreto Filho 465 | #### What Albérico streams: 466 | - Twitch Extension Development, Streams Tools Development, Alexa Skills, IRL, JavaScript 467 | #### Streaming on: 468 | - [Twitch](https://www.twitch.tv/albericod) 469 | #### Links: 470 | - [Twitter](https://twitter.com/bekoslove) 471 | - [GitHub](https://github.com/AlbericoD) 472 | - [Website](https://albericod.github.io/project/#/) 473 | 474 | [(top)](#table-of-contents) 475 | 476 | --- 477 | ### Alemayhu 478 | #### What Alemayhu streams: 479 | - Web Development, Imba, JavaScript 480 | #### Streaming on: 481 | - [Twitch](https://www.twitch.tv/alemayhu) 482 | #### Links: 483 | - [Twitter](https://twitter.com/AAlemayhu) 484 | - [GitHub](https://github.com/aalemayhu) 485 | - [Website](https://alemayhu.com) 486 | 487 | [(top)](#table-of-contents) 488 | 489 | --- 490 | ### Alexander Simovic 491 | #### What Alex streams: 492 | - Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS 493 | #### Streaming on: 494 | - [Twitch](https://www.twitch.tv/simalexan) 495 | #### Links: 496 | - [Twitter](https://twitter.com/simalexan) 497 | - [GitHub](https://github.com/simalexan) 498 | - [Medium](https://medium.com/@simalexan) 499 | 500 | [(top)](#table-of-contents) 501 | 502 | --- 503 | ### Amos - Fasterthanlime 504 | #### What Amos streams: 505 | - Rust, Web Development 506 | #### Streaming on: 507 | - [Youtube](https://www.youtube.com/@fasterthanlime) 508 | #### Links: 509 | - [Twitter](https://twitter.com/fasterthanlime) 510 | - [GitHub](https://github.com/fasterthanlime) 511 | - [Patreon](https://fasterthanli.me/donate) 512 | - [Website](https://fasterthanli.me/) 513 | 514 | [(top)](#table-of-contents) 515 | 516 | --- 517 | 518 | ### Andrew Courter 519 | #### What Andrew streams: 520 | - Web development, Vim, TypeScript, Kotlin 521 | #### Streaming on: 522 | - [Twitch](https://www.twitch.tv/exosyphon) 523 | #### Links: 524 | - [Youtube](https://www.youtube.com/@ascourter) 525 | - [Twitter](twitter.com/exosyphon) 526 | - [GitHub](https://github.com/exosyphon) 527 | - [Website](https://andrewcourter.com/) 528 | 529 | [(top)](#table-of-contents) 530 | 531 | --- 532 | ### Andrew Kelley 533 | #### What Andrew Kelley streams: 534 | - Zig programming language, Compiler, LLVM, ASM 535 | #### Streaming on: 536 | - [Twitch](https://www.twitch.tv/andrewrok) 537 | - [YouTube](https://www.youtube.com/user/superjoe30/) 538 | #### Links: 539 | - [Twitter](https://mobile.twitter.com/andy_kelley) 540 | - [GitHub](https://github.com/andrewrk/) 541 | - [Blog](https://andrewkelley.me/) 542 | - [Patreon](https://www.patreon.com/andrewrk) 543 | - [Website](https://ziglang.org/) 544 | 545 | [(top)](#table-of-contents) 546 | 547 | --- 548 | ### Andy Li 549 | #### What Andy Li streams: 550 | - Haxe, Web Development, Linux packaging 551 | #### Streaming on: 552 | - [Twitch](https://www.twitch.tv/andyonthewings) 553 | #### Links: 554 | - [Twitter](https://twitter.com/andy_li) 555 | - [GitHub](https://github.com/andyli) 556 | - [Blog](https://blog.onthewings.net/) 557 | - [Giffon](https://giffon.io/andyli) 558 | 559 | [(top)](#table-of-contents) 560 | 561 | --- 562 | ### Angie Jones 563 | #### What Angie Jones streams: 564 | - Java, Web Development, Test Automation 565 | #### Streaming on: 566 | - [Youtube](https://www.youtube.com/user/angieluvboo) 567 | #### Links: 568 | - [Twitter](https://twitter.com/techgirl1908) 569 | - [GitHub](https://github.com/angiejones) 570 | - [LinkedIn](https://www.linkedin.com/in/angiejones) 571 | - [Website](https://angiejones.tech) 572 | 573 | [(top)](#table-of-contents) 574 | 575 | --- 576 | ### Anthony Sottile 577 | #### What Anthony streams: 578 | - Python, linting, code formatting, testing, refactoring 579 | #### Streaming on: 580 | - [Twitch](https://www.twitch.tv/anthonywritescode) 581 | #### Links: 582 | - [Twitter](https://twitter.com/codewithanthony) 583 | - [GitHub](https://github.com/asottile) 584 | - [YouTube](https://www.youtube.com/anthonywritescode) 585 | 586 | [(top)](#table-of-contents) 587 | 588 | --- 589 | ### Antonio Maiorano 590 | #### What Antonio streams: 591 | - Emulator Development, C++ 592 | #### Streaming on: 593 | - [Twitch](https://www.twitch.tv/daroou2) 594 | #### Links: 595 | - [Twitter](https://twitter.com/antoniomaiorano) 596 | - [GitHub](https://github.com/amaiorano) 597 | - [YouTube](https://www.youtube.com/channel/UCvGInSOEQnf2ms4n4Q9dXdQ) 598 | - [LinkedIn](https://www.linkedin.com/in/amaiorano/) 599 | 600 | [(top)](#table-of-contents) 601 | 602 | --- 603 | ### Anton Kuzmenko 604 | #### What Anton (antonlabs/solomakerlabs) Kuzmenko 605 | - 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. 606 | #### Streaming on: 607 | - [Twitch](https://twitch.tv/solomakerlabs) 608 | #### Links: 609 | - [Twitter](https://twitter.com/solomakerlabs) 610 | - [Patreon](https://www.patreon.com/AntonLabs) 611 | - [Buy Anton Kuzmenko a coffee](https://www.buymeacoffee.com/antonlabs) 612 | - [GitHub](https://www.github.com/antonlabs) 613 | - [Telegram](https://t.me/anton_dev) 614 | 615 | [(top)](#table-of-contents) 616 | 617 | --- 618 | ### Ardalis - Steve Smith 619 | #### What Ardalis streams: 620 | - C#, ASP.NET Core, Clean Architecture, DDD, Design Patterns, TDD 621 | #### Streaming on: 622 | - [Twitch](https://www.twitch.tv/ardalis) 623 | - [YouTube](https://www.youtube.com/channel/UCkvBKVrZ_RepwX7UgfnFIUA) 624 | #### Links: 625 | - [Twitter](https://twitter.com/ardalis) 626 | - [Blog](https://ardalis.com) 627 | - [Weekly Dev Tips Podcast](http://www.weeklydevtips.com/) 628 | - [GitHub](https://github.com/ardalis) 629 | 630 | [(top)](#table-of-contents) 631 | 632 | --- 633 | ### Armin Ronacher 634 | #### What Armin streams: 635 | - Rust, maybe Python 636 | #### Streaming on: 637 | - [Twitch](https://www.twitch.tv/themitsuhiko) 638 | #### Links: 639 | - [Twitter](https://twitter.com/mitsuhiko) 640 | - [GitHub](https://github.com/mitsuhiko) 641 | 642 | [(top)](#table-of-contents) 643 | 644 | --- 645 | ### badcop 646 | #### What badcop streams: 647 | - Bash, Game Development, Godot, Variety programming 648 | #### Streaming on: 649 | - [Twitch](https://twitch.tv/badcop_) 650 | #### Languages Spoken During Stream 651 | - English 652 | #### Links: 653 | - [Twitter](https://twitter.com/badcop_) 654 | - [GitHub](https://github.com/cgsdev0) 655 | - [Youtube](https://www.youtube.com/@bashcop) 656 | 657 | [(top)](#table-of-contents) 658 | 659 | --- 660 | ### Baggers 661 | #### What Baggers streams: 662 | - Graphics Programming (GPU, OpenGL), Game Development, Common Lisp tutorials 663 | #### Streaming on: 664 | - [Twitch](https://twitch.tv/baggers___) 665 | #### Languages Spoken During Stream 666 | - English 667 | #### Links: 668 | - [Twitter](https://twitter.com/TheBaggers) 669 | - [GitHub](https://github.com/cbaggers/) 670 | - [Youtube](https://www.youtube.com/channel/UCMV8p6Lb-bd6UZtTc_QD4zA) 671 | 672 | [(top)](#table-of-contents) 673 | 674 | --- 675 | ### BarRaider 676 | #### What BarRaider streams: 677 | - C#, Stream Deck plugins development, Game Development 678 | #### Streaming on: 679 | - [Twitch](https://twitch.tv/barraider) 680 | #### Languages Spoken During Stream 681 | - English 682 | #### Links: 683 | - [Twitter](https://twitter.com/realBarRaider) 684 | - [Projects](https://barraider.com) 685 | - [GitHub](https://github.com/barraider) 686 | 687 | [(top)](#table-of-contents) 688 | 689 | --- 690 | ### Beachcasts 691 | #### What Beachcasts streams: 692 | - Web Development with PHP, Python, and adjecent technologies. Also, AWS and Nexmo/Vonage content. 693 | #### Streaming on: 694 | - [Twitch](https://www.twitch.tv/beachcasts) 695 | #### Languages Spoken During Stream 696 | - English 697 | #### Links: 698 | - [Twitter](https://twitter.com/Beachcasts) 699 | - [YouTube](https://youtube.com/c/beachcasts) 700 | - [GitHub](https://github.com/Beachcasts/) 701 | - [Website](https://beachcasts.com) 702 | 703 | [(top)](#table-of-contents) 704 | 705 | --- 706 | ### Ben Greenier 707 | #### What Ben streams: 708 | - Game development with C#/Unity3D, web and service development with JavaScript/Node.js 709 | #### Streaming on: 710 | - [Twitch](https://twitch.tv/ben_greenier) 711 | #### Languages Spoken During Stream 712 | - English 713 | #### Links: 714 | - [Twitter](https://twitter.com/bengreenier) 715 | - [GitHub](https://github.com/bengreenier) 716 | - [Website](http://bengreenier.com) 717 | 718 | [(top)](#table-of-contents) 719 | 720 | --- 721 | ### Benjamin Lannon 722 | #### What Benjamin streams: 723 | - Javascript, GitHub Actions, Gatsby, React 724 | #### Streaming on: 725 | - [Twitch](https://www.twitch.tv/lannonbr) 726 | #### Links: 727 | - [Twitter](https://twitter.com/lannonbr) 728 | - [GitHub](https://github.com/lannonbr) 729 | - [Website](https://lannonbr.com/) 730 | 731 | [(top)](#table-of-contents) 732 | 733 | --- 734 | ### BG Web Agency 735 | #### What BG Web Agency streams: 736 | - NextJS, Remix, React, Angular, JavaScript, SASS, HTML, CSS, WordPress 737 | #### Streaming on: 738 | - [YouTube](https://www.youtube.com/@bgwebagency) 739 | - [Twitch](https://www.twitch.tv/bgwebagency) 740 | #### Links: 741 | - [Twitter](https://twitter.com/kirankdash) 742 | - [GitHub](https://github.com/bgwebagency) 743 | - [Website](https://bgwebagency.in) 744 | - [Discord](https://discord.gg/62VR3MMCVm) 745 | - [YouTube](https://www.youtube.com/@bgwebagency) 746 | - [StackOverflow](https://stackoverflow.com/users/5010106/kiran-dash) 747 | - [TikTok](https://www.tiktok.com/@bgwebagency) 748 | - [Instagram](https://www.instagram.com/bgwebagency/) 749 | - [LinkedIn](https://www.linkedin.com/in/kiran-dash/) 750 | 751 | [(top)](#table-of-contents) 752 | 753 | --- 754 | ### Binary Solo 755 | #### What Binary Solo streams: 756 | - Game Development, C++ 757 | #### Streaming on: 758 | - [Twitch](https://www.twitch.tv/binarysologames) 759 | #### Links: 760 | - [Twitter](https://twitter.com/binarysologames) 761 | - [Facebook](https://facebook.com/binarysologames) 762 | - [Website](http://www.binarysolo.com/) 763 | 764 | [(top)](#table-of-contents) 765 | 766 | --- 767 | ### Bobby Johnson 768 | #### What Bobby streams: 769 | - Node.js/Javascript, C#/dotnetcore, React, Docker, OSX, VSCode, Identity & Security, Full Stack Development 770 | #### Streaming on: 771 | - [Twitch](https://www.twitch.tv/iamnotmyself) 772 | #### Links: 773 | - [Twitter](https://twitter.com/NotMyself) 774 | - [GitHub](https://github.com/NotMyself) 775 | - [Website](https://iamnotmyself.com/) 776 | 777 | [(top)](#table-of-contents) 778 | 779 | --- 780 | ### Brad Garropy 781 | #### What Brad streams: 782 | - JavaScript, Node.js, React, Gatsby, Next, Serverless, Web Development 783 | #### Streaming on: 784 | - [YouTube](https://youtube.com/bradgarropy) 785 | #### Links: 786 | - [AMA](https://bradgarropy.com/ama) 787 | - [Twitter](https://twitter.com/bradgarropy) 788 | - [GitHub](https://github.com/bradgarropy) 789 | - [Website](https://bradgarropy.com) 790 | - [Instagram](https://instagram.com/bradgarropy) 791 | 792 | [(top)](#table-of-contents) 793 | 794 | --- 795 | ### Brandon Satrom 796 | #### What Brandon streams: 797 | - IoT, C++, Node.js, JavaScript, Web Development, VueJS, Mobile Development 798 | #### Streaming on: 799 | - [Twitch](https://twitch.tv/brandonsatrom) 800 | #### Links: 801 | - [Twitter](https://twitter.com/brandonsatrom) 802 | - [GitHub](https://github.com/bsatrom) 803 | - [YouTube](https://www.youtube.com/channel/UCAS6I-NFh25eBhwMX2KCxqQ) 804 | - [Instagram](https://www.instagram.com/bsatrom/) 805 | 806 | [(top)](#table-of-contents) 807 | 808 | --- 809 | ### Brent Schooley (HeccBrent) 810 | #### What Brent Schooley streams: 811 | - Javascript, Python, C#, Swift, Twilio, TwilioQuest, Video Content Creation, Mobile Development, Web Development, Streaming Tech 812 | #### Streaming on: 813 | - [Twitch](https://twitch.tv/chefbrent) 814 | #### Links: 815 | - [Twitter:Brent Schooley](https://twitter.com/brentschooley) or [Twitter:HeccBrent](https://twitter.com/heccbrent) 816 | - [GitHub](https://github.com/brentschooley) 817 | - [YouTube:Twilio](https://www.youtube.com/twilio) or [YouTube:ChefBrent](https://www.youtube.com/chefbrent) 818 | - [Instagram](https://www.instagram.com/heccbrent/) 819 | 820 | [(top)](#table-of-contents) 821 | 822 | --- 823 | ### Brent Ozar 824 | #### What Brent Ozar streams: 825 | - SQL Server, SQL Server optimisation and performance, Database concepts and best practices 826 | #### Streaming on: 827 | - [Twitch](https://twitch.tv/BrentOzar) 828 | - [YouTube](https://youtube.com/user/BrentOzar) 829 | - [Facebook](https://www.facebook.com/BrentOzar) 830 | #### Links: 831 | - [Twitter](https://twitter.com/BrentOzarULTD) 832 | - [GitHub](https://github.com/brentozar) 833 | 834 | [(top)](#table-of-contents) 835 | 836 | --- 837 | ### Brian Clark (Clarkio) 838 | #### What Brian streams: 839 | - Node.js, JavaScript, IoT, Web Development, Swift 840 | #### Streaming on: 841 | - [Twitch](https://www.twitch.tv/clarkio) 842 | - [Mixer](https://mixer.com/clarkio) 843 | #### Links: 844 | - [Twitter](https://twitter.com/_clarkio) 845 | - [GitHub](https://github.com/clarkio) 846 | - [YouTube](https://www.youtube.com/channel/UCID02LhTNYYhWbok3zyggOw) 847 | - [Instagram](https://www.instagram.com/_clarkio/) 848 | - [Website](https://www.clarkio.com/) 849 | 850 | [(top)](#table-of-contents) 851 | 852 | --- 853 | ### Brian Douglas (bdougie) 854 | #### What Brian streams: 855 | - Open Source, Node.js, Jamstack, React, Design Systems. 856 | #### Streaming on: 857 | - [Twitch](https://www.twitch.tv/bdougieyo) 858 | - [YouTube](https://www.youtube.com/ilikerobot) 859 | 860 | #### Links: 861 | - [Twitter](https://twitter.com/bdougieyo) 862 | - [GitHub](https://github.com/bdougie) 863 | - [YouTube](https://www.youtube.com/ilikerobot) 864 | - [Instagram](https://www.instagram.com/bdougieyo/) 865 | - [Website](https://www.bdougie.live/) 866 | 867 | [(top)](#table-of-contents) 868 | 869 | --- 870 | ### Brian Lagunas 871 | #### What Brian streams: 872 | - Design Patterns and practices, Prism, WPF, UWP, Xamarin Forms, Blazor, Flutter, Angular, React, Vue, geeky things. 873 | #### Streaming on: 874 | - [Twitch](https://www.twitch.tv/brianlagunas) 875 | #### Links: 876 | - [Twitter](https://twitter.com/brianlagunas) 877 | - [GitHub](https://github.com/brianlagunas) 878 | - [YouTube](https://youtube.com/brianlagunas) 879 | 880 | [(top)](#table-of-contents) 881 | 882 | --- 883 | ### Brian McKenna 884 | #### What Brian streams: 885 | - Haskell, Functional Programming 886 | #### Streaming on: 887 | - [Twitch](https://www.twitch.tv/puffnfresh) 888 | #### Links: 889 | - [Twitter](https://twitter.com/puffnfresh) 890 | - [GitHub](https://github.com/puffnfresh) 891 | - [Website](https://brianmckenna.org) 892 | 893 | [(top)](#table-of-contents) 894 | 895 | --- 896 | 897 | ### britocoding 898 | #### What britocoding 899 | - Brazilian streamer who streams JavaScript, TypeScript, React and listen some weird musics. 900 | #### Streaming on: 901 | - [Twitch](https://www.twitch.tv/britocoding) 902 | #### Links: 903 | - [Twitter](https://twitter.com/edusantosbrito) 904 | - [GitHub](https://github.com/EduSantosBrito) 905 | 906 | [(top)](#table-of-contents) 907 | 908 | --- 909 | ### Brookzerker 910 | #### What Brookzerker streams: 911 | - Rust 912 | #### Streaming on: 913 | - [Twitch](https://www.twitch.tv/brookzerker) 914 | #### Links: 915 | - [Twitter](https://twitter.com/brooks_patton) 916 | - [GitHub](https://github.com/BrooksPatton) 917 | 918 | [(top)](#table-of-contents) 919 | 920 | --- 921 | ### Btor 922 | #### What Btor streams: 923 | - French streamer who streams PHP (Symfony 2/3/4), Javascript (React, ReactNative) , Java, Python etc. 924 | #### Streaming on: 925 | - [Twitch](https://www.twitch.tv/bt0r) 926 | #### Links: 927 | - [Twitter](https://twitter.com/biiitor) 928 | - [GitHub](https://github.com/bt0r) 929 | - [Website](http://btor.fr/) 930 | 931 | [(top)](#table-of-contents) 932 | 933 | --- 934 | ### Caidan Williams 935 | #### What Caidan streams: 936 | - Java, Python, Game Development, Game Networking, LibGDX, Digital Art 937 | #### Streaming on: 938 | - [Twitch](https://www.twitch.tv/moderatemelon) 939 | #### Links: 940 | - [YouTube](https://www.youtube.com/channel/UC3_483wgxDsJIJTz8nZI-uA) 941 | - [Discord](https://discord.gg/CNVSePd) 942 | 943 | [(top)](#table-of-contents) 944 | 945 | --- 946 | ### Cailir 947 | #### What Cailir streams: 948 | - NodeJS, HTML, CSS, Javascript, Game Development 949 | #### Streaming on: 950 | - [Twitch](https://www.twitch.tv/cailir) 951 | #### Links: 952 | - [GitHub](https://github.com/cailir) 953 | 954 | [(top)](#table-of-contents) 955 | 956 | --- 957 | ### Calvin Allen / Coding with Calvin 958 | #### What Calvin streams: 959 | - Microsoft Azure, C#, .NET, .NET Core, DevOps, OSS Development 960 | #### Streaming on: 961 | - (not currently streaming) 962 | #### Links: 963 | - [GitHub](https://github.com/CalvinAllen) 964 | - [Twitter](https://www.twitter.com/_CalvinAllen) 965 | - [LinkedIn](https://www.linkedin.com/in/calvin-allen/) 966 | - [Website](https://www.codingwithcalvin.net/) 967 | 968 | [(top)](#table-of-contents) 969 | 970 | --- 971 | ### CaptainKraft 972 | #### What CaptainKraft streams: 973 | - C, C++, Rust 974 | #### Streaming on: 975 | - [Twitch](https://www.twitch.tv/captainkraft) 976 | 977 | [(top)](#table-of-contents) 978 | 979 | --- 980 | ### Casey Muratori 981 | #### What Casey streams: 982 | - C, C++, Game Development, Algorithms 983 | #### Streaming on: 984 | - [Twitch](https://www.twitch.tv/handmade_hero) 985 | #### Links: 986 | - [YouTube](https://www.youtube.com/c/MollyRocket) 987 | - [Twitter](https://twitter.com/cmuratori) 988 | - [Website](https://handmadehero.org/) 989 | 990 | [(top)](#table-of-contents) 991 | 992 | --- 993 | ### Catalin Miron 994 | #### What Catalin Miron streams: 995 | - React, React Native, GraphQL, Javascript, Typescript, Mobile Development, Web Development, Animations 996 | #### Streaming on: 997 | - [Twitch](https://www.twitch.tv/batmancodes) 998 | - [YouTube](https://www.youtube.com/c/catalinmirondev) 999 | #### Links: 1000 | - [Twitter](https://twitter.com/mironcatalin) 1001 | - [GitHub](https://github.com/catalinmiron) 1002 | - [Website](https://batman.codes) 1003 | 1004 | [(top)](#table-of-contents) 1005 | 1006 | --- 1007 | ### ChaelCodes 1008 | #### What ChaelCodes streams: 1009 | - React, Ruby on Rails, Coding Games 1010 | #### Streaming on: 1011 | - [Twitch](https://www.twitch.tv/chaelcodes) 1012 | #### Links: 1013 | - [Twitter](https://twitter.com/ChaelCodes) 1014 | - [GitHub](https://github.com/ChaelCodes) 1015 | - [YouTube](https://www.youtube.com/channel/UCTO-84Lb1C18XmQ2AWMN3Kg) 1016 | 1017 | [(top)](#table-of-contents) 1018 | 1019 | --- 1020 | ### Chiroptical 1021 | #### What Chiroptical streams: 1022 | - Haskell, Elm 1023 | #### Streaming on: 1024 | - [Twitch](https://www.twitch.tv/chiroptical) 1025 | #### Links: 1026 | - [Twitter](https://twitter.com/BarryMooreII) 1027 | - [YouTube](https://www.youtube.com/channel/UCndlCtPeYygdGZ9UUKdehbw) 1028 | 1029 | [(top)](#table-of-contents) 1030 | 1031 | --- 1032 | ### Chris Dieringer (cdaringe) 1033 | #### What Chris Dieringer streams: 1034 | - OCaml, Typescript, React, Node, Rust 1035 | #### Streaming on: 1036 | - [Twitch](https://www.twitch.tv/cdaringe) 1037 | #### Links: 1038 | - [GitHub](https://github.com/cdaringe) 1039 | - [Website](https://cdaringe.com) 1040 | - [YouTube](https://www.youtube.com/cdaringe) 1041 | 1042 | [(top)](#table-of-contents) 1043 | 1044 | --- 1045 | ### Chris Griffing (cmgriffing) 1046 | #### What Chris streams: 1047 | - Full-stack web development and sometimes CLI tools. Open source projects, and some SaaS startup projects. 1048 | #### Streaming on: 1049 | - [Twitch](https://www.twitch.tv/cmgriffing) 1050 | - [YouTube](https://www.youtube.com/@cmgriffing) 1051 | #### Links: 1052 | - [Twitter](https://twitter.com/cmgriffing) 1053 | - [GitHub](https://github.com/cmgriffing) 1054 | - [Website](https://chrisgriffing.com) 1055 | 1056 | [(top)](#table-of-contents) 1057 | 1058 | --- 1059 | ### Chrissy Lemaire 1060 | #### What Chrissy Lemaire streams: 1061 | - PowerShell, SQL 1062 | #### Streaming on: 1063 | - [Twitch](https://www.twitch.tv/potatoqualitee) 1064 | #### Links: 1065 | - [Twitter](https://twitter.com/cl) 1066 | - [GitHub](https://github.com/potatoqualitee) 1067 | 1068 | [(top)](#table-of-contents) 1069 | 1070 | --- 1071 | ### Clayton Hunt 1072 | #### What Clayton streams: 1073 | - Podcast, Blazor, Test-Driven Development, Clean Code, Open Source projects 1074 | #### Streaming on: 1075 | - [Twitch](https://www.twitch.tv/6figuredev) 1076 | #### Links: 1077 | - [Twitter](https://twitter.com/ClaytonHunt_104) 1078 | - [GitHub](https://github.com/ClaytonHunt) 1079 | - [Website](https://6figuredev.com/) 1080 | 1081 | [(top)](#table-of-contents) 1082 | 1083 | --- 1084 | ### Codebase Alpha (Essenbee) 1085 | #### What Codebase Alpha streams: 1086 | - C#, .Net Core, ASP.Net Core 1087 | #### Streaming on: 1088 | - [Twitch](https://www.twitch.tv/codebasealpha) 1089 | #### Links: 1090 | - [Twitter](https://twitter.com/codebasealpha) 1091 | - [GitHub](https://github.com/essenbee) 1092 | - [YouTube](https://www.youtube.com/channel/UCFFtfkaWjMb9UMDpPVnC1Sg) 1093 | 1094 | [(top)](#table-of-contents) 1095 | 1096 | --- 1097 | ### Codephobia 1098 | #### What Codephobia streams: 1099 | - Angular, Typescript, Javascript, Go/Golang, Node.js, Terraform, Devops, Docker, AWS, Lambda, Web Development, NativeScript 1100 | #### Streaming on: 1101 | - [Twitch](https://www.twitch.tv/codephobia) 1102 | #### Links: 1103 | - [Twitter](https://twitter.com/codephobia) 1104 | - [GitHub](https://github.com/codephobia) 1105 | - [Website](https://codephobia.com/) 1106 | 1107 | [(top)](#table-of-contents) 1108 | 1109 | --- 1110 | ### CodeRushed (Mark Miller) 1111 | #### What CodeRushed streams: 1112 | - C#, .Net Core, ASP.Net Core, TypeScript, JavaScript, D&D Game development, CodeRush dog-fooding 1113 | #### Streaming on: 1114 | - [Twitch](https://www.twitch.tv/coderushed) 1115 | #### Links: 1116 | - [Twitter](https://twitter.com/millermark) 1117 | - [GitHub](https://github.com/millermark) 1118 | - [CodeRush feature of the week (YouTube)](https://www.youtube.com/playlist?list=PL8h4jt35t1wgawacCN9wmxq1EN36CNUGk) 1119 | 1120 | [(top)](#table-of-contents) 1121 | 1122 | --- 1123 | ### Código Falado 1124 | #### What Código Falado streams: 1125 | - HTML, CSS, Javascript, Vue, Tailwind, Javascript, Typescript, Node.js, Vue.js, PHP, Laravel, Web Development, Portuguese 1126 | #### Languages Spoken During Stream 1127 | - Portuguese 1128 | #### Streaming on: 1129 | - [Twitch](https://www.twitch.tv/codigofalado) 1130 | - [YouTube](https://www.youtube.com/channel/UCtwkSRuugeCF1Bh8kxE55qQ) 1131 | - [Facebook](https://www.facebook.com/codigofalado/videos/) 1132 | 1133 | #### Links: 1134 | - [Twitter](https://twitter.com/codigofalado) 1135 | - [GitHub](https://github.com/codigofalado) 1136 | 1137 | [(top)](#table-of-contents) 1138 | 1139 | --- 1140 | ### Coding Garden with CJ 1141 | #### What CJ streams: 1142 | - JavaScript, Vue.js, Node.js, React, Codewars problem solving 1143 | #### Streaming on: 1144 | - [Youtube](https://www.youtube.com/channel/UCLNgu_OupwoeESgtab33CCw) 1145 | #### Links: 1146 | - [Twitter](https://twitter.com/coding_garden) 1147 | - [GitHub](https://github.com/w3cj) 1148 | - [Website](https://w3cj.sh/) 1149 | 1150 | [(top)](#table-of-contents) 1151 | 1152 | --- 1153 | ### Collin Henderson 1154 | #### What Collin streams: 1155 | - JavaScript, PHP, Laravel, Vue.js 1156 | #### Streaming on: 1157 | - [Twitch](https://www.twitch.tv/syropian) 1158 | #### Links: 1159 | - [Twitter](https://twitter.com/syropian) 1160 | - [GitHub](https://github.com/syropian) 1161 | - [Website](https://syropia.net/) 1162 | 1163 | [(top)](#table-of-contents) 1164 | 1165 | --- 1166 | ### Corey Weathers 1167 | #### What Corey Weathers streams: 1168 | - C#, .NET Core, ASP.NET Core, Azure, Twilio, Hackerrank, Codewars, TwilioQuest 1169 | #### Streaming on: 1170 | - [Twitch](https://www.twitch.tv/cldubya) 1171 | #### Links: 1172 | - [Twitter](https://twitter.com/coreylweathers) 1173 | - [GitHub](https://github.com/clw895) 1174 | 1175 | [(top)](#table-of-contents) 1176 | 1177 | --- 1178 | ### Cory knox 1179 | #### What Cory streams: 1180 | - PowerShell, C#, TypeScript, VSCode extension development 1181 | #### Streaming on: 1182 | - [Twitch](https://www.twitch.tv/corbob) 1183 | #### Links: 1184 | - [Twitter](https://twitter.com/coryknox) 1185 | - [GitHub](https://github.com/corbob) 1186 | - [Website](https://knoxy.ca) 1187 | 1188 | [(top)](#table-of-contents) 1189 | 1190 | --- 1191 | ### C0d3Spaghetti (Ayush Chauhan) 1192 | #### What Ayush streams: 1193 | - JavaScript, Next.JS, React.js, Node.js, Azure, Serverless 1194 | #### Streaming on: 1195 | - [Twitch](https://www.twitch.tv/C0d3Spaghetti) 1196 | #### Links: 1197 | - [Twitter](https://twitter.com/heyayushh) 1198 | - [GitHub](https://github.com/heyayushh) 1199 | - [Website](https://heyayush.live) 1200 | 1201 | [(top)](#table-of-contents) 1202 | 1203 | --- 1204 | ### Daniel Jenkins 1205 | #### What Daniel (HonestDan) streams: 1206 | - JavasSript, PHP, C#, Unity, Game Development, Web Development; Often takes part in Ludum Dare 1207 | #### Streaming on: 1208 | - [Twitch](https://twitch.tv/honestdangames) 1209 | #### Languages Spoken During Stream 1210 | - English 1211 | - Welsh 1212 | #### Links: 1213 | - [Twitter](https://www.twitter.com/honestdangames) 1214 | - [itch.io](https://honestdan.itch.io/) 1215 | - [Discord](https://discord.gg/t2ESzmr) 1216 | - [YouTube](https://www.youtube.com/channel/UCx1TRVOz6HbgwVgXxiK7WKQ) 1217 | 1218 | [(top)](#table-of-contents) 1219 | 1220 | --- 1221 | ### Daniel Reis 1222 | #### What Daniel Reis streams: 1223 | - Laravel, Lumen, PHP, Backend, Web Development 1224 | #### Streaming on: 1225 | - [Twitch](https://twitch.tv/danielhe4rt) 1226 | #### Languages Spoken During Stream 1227 | - Portuguese 1228 | - English 1229 | #### Links: 1230 | - [Twitter](https://www.twitter.com/danielhe4rt) 1231 | - [Discord](https://discord.gg/NUbMSb4) 1232 | 1233 | [(top)](#table-of-contents) 1234 | 1235 | --- 1236 | ### Daniel Shiffman 1237 | #### What Daniel streams: 1238 | - JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms 1239 | #### Streaming on: 1240 | - [Youtube](https://www.youtube.com/user/shiffman) 1241 | #### Links: 1242 | - [Twitter](https://twitter.com/shiffman) 1243 | - [GitHub](https://github.com/shiffman) 1244 | - [Website](http://shiffman.net/) 1245 | 1246 | [(top)](#table-of-contents) 1247 | 1248 | --- 1249 | ### Daniel Stenberg 1250 | #### What Daniel streams: 1251 | - C, Network Tools, Network Security 1252 | - Primarily focuses on cURL, WolfSSH, WolfSSL, etc. 1253 | #### Streaming on: 1254 | - [Twitch](https://www.twitch.tv/curlhacker) 1255 | #### Links: 1256 | - [Youtube](https://www.youtube.com/channel/UCD5eL38hFtSLiVFP9cCUJEA) 1257 | - [Twitter](https://twitter.com/bagder) 1258 | - [GitHub](https://github.com/bagder) 1259 | - [Website](https://daniel.haxx.se/) 1260 | 1261 | [(top)](#table-of-contents) 1262 | 1263 | --- 1264 | ### Darko Meszaros 1265 | #### What (Name || Pref Handle) streams: 1266 | - AWS, Cloud, Developer Tools, Architecture, Python, Vim, Linux 1267 | #### Streaming on: 1268 | - [Twitch](https://twitch.tv/ruptwelve) 1269 | #### Links: 1270 | - [Twitter](https://twitter.com/darkosubotica) 1271 | - [GitHub](https://github.com/darko-mesaros) 1272 | - [Website](https://www.rup12.net/) 1273 | 1274 | [(top)](#table-of-contents) 1275 | 1276 | --- 1277 | ### David Pedersen 1278 | #### What David streams: 1279 | - Rust, Ruby, Vim 1280 | #### Streaming On: 1281 | - [Twitch](https://twitch.tv/davidpdrsn) 1282 | #### Links: 1283 | - [GitHub](https://github.com/davidpdrsn) 1284 | - [Twitter](https://twitter.com/davidpdrsn) 1285 | - [YouTube](https://www.youtube.com/channel/UCDmSWx6SK0zCU2NqPJ0VmDQ) 1286 | 1287 | [(top)](#table-of-contents) 1288 | 1289 | --- 1290 | ### David Poindexter (roberttables) 1291 | #### What David streams: 1292 | - Node.js, JavaScript, React, Docker, AWS, Terraform, DevOps, Developer Tooling 1293 | #### Streaming On: 1294 | - [Twitch](https://twitch.tv/roberttables) 1295 | #### Links: 1296 | - [GitHub](https://github.com/mtheoryx) 1297 | - [Docker Hub](https://hub.docker.com/u/mtheoryx) 1298 | - [NPM](https://npmjs.com/~drpoindexter) 1299 | - [Twitter](https://twitter.com/drpoindexter) 1300 | - [Website](https://drp3.me) 1301 | - [npx card](https://github.com/mtheoryx/npx-drpoindexter) `npx drpoindexter` 1302 | 1303 | [(top)](#table-of-contents) 1304 | 1305 | --- 1306 | ### DevChatter 1307 | #### What DevChatter streams: 1308 | - C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming 1309 | #### Streaming on: 1310 | - [Twitch](https://twitch.tv/devchatter) 1311 | #### Languages Spoken During Stream 1312 | - English 1313 | #### Links: 1314 | - [Twitter](https://twitter.com/DevChatter_) 1315 | - [GitHub](https://github.com/DevChatter) 1316 | - [YouTube](https://www.youtube.com/channel/UCA8TsqMrOdFBv66iIuU6efA) 1317 | 1318 | [(top)](#table-of-contents) 1319 | 1320 | --- 1321 | ### Developers Garage 1322 | #### What Developers Garage streams: 1323 | - C#, JavaScript, TypeScript, .NET Core, ASP.NET Core, OSS, Xamarin 1324 | #### Streaming on: 1325 | - [Twitch](https://twitch.tv/developersgarage) 1326 | #### Languages Spoken During Stream 1327 | - English 1328 | #### Links: 1329 | - [Twitter](https://twitter.com/ryano9791) 1330 | - [GitHub](https://github.com/devsgarage) 1331 | - [YouTube](https://www.youtube.com/channel/UCp7TjW2p43aNzkMEBYJ8inw) 1332 | - [Website](https://onyxprime.github.io) 1333 | 1334 | [(top)](#table-of-contents) 1335 | 1336 | --- 1337 | 1338 | ### Dillon Pentz (DillonEA) 1339 | #### What Dillon Pentz streams: 1340 | - OBS Development using C++. Also streams Python and JavaScript 1341 | #### Streaming on: 1342 | - [Twitch](https://twitch.tv/dillonea) 1343 | #### Languages Spoken During Stream 1344 | - English 1345 | #### Links: 1346 | - [Twitter](https://twitter.com/VodBox_IO) 1347 | - [GitHub](https://github.com/VodBox) 1348 | - [Discord](https://discord.gg/YMAaerQ) 1349 | 1350 | [(top)](#table-of-contents) 1351 | 1352 | --- 1353 | 1354 | ### DJ Adams 1355 | #### What DJ Adams streams: 1356 | - SAP development - including integration and extension topics on SAP Business Technology Platform 1357 | #### Streaming on: 1358 | - [YouTube](https://youtube.com/djadams-qmacro) 1359 | #### Languages Spoken During Stream 1360 | - English 1361 | #### Links: 1362 | - [Twitter](https://twitter.com/qmacro) 1363 | - [GitHub](https://github.com/qmacro) 1364 | - [YouTube](https://youtube.com/djadams-qmacro) 1365 | - [Homepage & main blog](https://qmacro.org) 1366 | 1367 | [(top)](#table-of-contents) 1368 | 1369 | --- 1370 | ### Dmitry Figol 1371 | #### What Dmitry streams: 1372 | - Network programmability, Network automation, Python, NetDevOps, DevOps 1373 | #### Streaming on: 1374 | - [Twitch](https://twitch.tv/dmfigol) 1375 | #### Languages Spoken During Stream 1376 | - English 1377 | #### Links: 1378 | - [Twitter](https://twitter.com/dmfigol) 1379 | - [GitHub](https://github.com/dmfigol) 1380 | - [LinkedIn](https://linkedin.com/in/dmfigol) 1381 | - [Website](https://dmfigol.me) 1382 | - [YouTube](https://www.youtube.com/dmfigol) 1383 | 1384 | [(top)](#table-of-contents) 1385 | 1386 | --- 1387 | ### DrunkDevs 1388 | #### What DrunkDevs streams: 1389 | - Game Development, Game Maker: Studio, Aseprite 1390 | #### Streaming on: 1391 | - [Twitch](https://www.twitch.tv/drunkdevs) 1392 | #### Links: 1393 | - [Twitter](https://twitter.com/drunkdevs) 1394 | - [Game Jolt](https://gamejolt.com/@Ink/games) 1395 | 1396 | --- 1397 | ### DwayneWritesCode 1398 | #### What DwayneWritesCode streams: 1399 | - Open source development, JavaScript, TypeScript, WordPress 1400 | #### Streaming on: 1401 | - [Twitch](https://twitch.tv/dwaynewritescode) 1402 | #### Links: 1403 | - [Twitter](https://twitter.com/AbolitionOf) 1404 | - [Website](https://ilikekillnerds.com) 1405 | - [GitHub](https://github.com/Vheissu) 1406 | 1407 | [(top)](#table-of-contents) 1408 | 1409 | --- 1410 | ### Dylan Beattie 1411 | #### What Dylan Beattie streams: 1412 | - C#, .NET, JavaScript, Rockstar, Sonic Pi, music, SQL 1413 | #### Streaming on: 1414 | - [Twitch](https://www.twitch.tv/dylanbeattie) 1415 | #### Links: 1416 | - [Facebook](https://facebook.com/dylanbeattie) 1417 | - [Twitter](https://twitter.com/dylanbeattie) 1418 | - [Website](https://dylanbeattie.net/) 1419 | - [YouTube](https://youtube.com/dylanbeattie/) 1420 | 1421 | [(top)](#table-of-contents) 1422 | 1423 | --- 1424 | ### Eddie Jaoude 1425 | #### What Eddie streams: 1426 | - Open Source, JavaScript, Angular, AWS, Serverless, TypeScript, GitHub, Cucumber 1427 | #### Streaming on: 1428 | - [YouTube](http://youtube.com/eddiejaoude) 1429 | #### Languages Spoken During Stream 1430 | - English 1431 | #### Links: 1432 | - [Twitter](https://twitter.com/eddiejaoude) 1433 | - [Github](https://github.com/eddiejaoude) 1434 | - [Discord](https://discordapp.com/invite/jVwPDFd) 1435 | - [YouTube](http://youtube.com/eddiejaoude) 1436 | - [Instagram](https://www.instagram.com/eddiejaoude/) 1437 | 1438 | [(top)](#table-of-contents) 1439 | 1440 | --- 1441 | ### Ekaterina Sychenko 1442 | #### What Kate streams: 1443 | - JavaScript, TypeScript, React, Redux, Node.js, PostgreSQL 1444 | #### Streaming on: 1445 | - [Twitch](https://twitch.tv/duckate) 1446 | #### Languages Spoken During Stream 1447 | - English/Russian (primary) 1448 | #### Links: 1449 | - [GitHub](https://github.com/visiongirles) 1450 | - [YouTube](https://www.youtube.com/user/duckate/videos) 1451 | 1452 | [(top)](#table-of-contents) 1453 | 1454 | --- 1455 | ### Emanuele Bartolesi 1456 | #### What Emanuele streams: 1457 | - C#, .NET Core, ASP.NET, OSS, GitHub, Pair Programming 1458 | #### Streaming on: 1459 | - [Twitch](https://twitch.tv/kasuken) 1460 | #### Languages Spoken During Stream 1461 | - English/Italian 1462 | #### Links: 1463 | - [Twitter](https://twitter.com/kasuken) 1464 | - [GitHub](https://github.com/kasuken) 1465 | - [Website](http://dev.to/kasuken) 1466 | - [YouTube](https://www.youtube.com/user/emanuelebartolesi/videos) 1467 | 1468 | [(top)](#table-of-contents) 1469 | 1470 | --- 1471 | 1472 | ### Eralp Karaduman 1473 | #### What Eralp streams: 1474 | - Mobile App Development: iOS, Swift, Flutter, Dart, React Native, TypeScript 1475 | - Web Development: React, JavaScript 1476 | - Game Development: C#, Unity3D, Pixel Art, Aseprite 1477 | #### Streaming on: 1478 | - [Twitch](https://twitch.tv/eralpkaraduman) 1479 | #### Languages Spoken During Stream 1480 | - English / Turkish 1481 | #### Links 1482 | - [Twitch](https://twitch.tv/eralpkaraduman) 1483 | - [GitHub](https://github.com/eralpkaraduman) 1484 | - [Website](https://eralpkaraduman.com) 1485 | - [Youtube](https://youtube.com/user/eralpkaraduman) 1486 | 1487 | ### Erik St. Martin 1488 | #### What Erik streams: 1489 | - Rust, Go/Golang, Video Encoding, Kubernetes, Helm, Cloud Native 1490 | #### Streaming on: 1491 | - [Twitch](https://twitch.tv/erikdotdev) 1492 | #### Links: 1493 | - [Twitter](https://twitter.com/erikstmartin) 1494 | - [GitHub](https://github.com/erikstmartin) 1495 | - [Website](https://erik.dev/) 1496 | 1497 | 1498 | [(top)](#table-of-contents) 1499 | 1500 | --- 1501 | 1502 | ### Eser Ozvataf 1503 | #### What Eser streams: 1504 | - JavaScript, C#, .NET Core, React, OSS, GitHub, Serverless, node.js, TypeScript, Functional Programming, DevOps 1505 | #### Streaming on: 1506 | - [Twitch](https://twitch.tv/laroux) 1507 | #### Languages Spoken During Stream 1508 | - Turkish 1509 | #### Links: 1510 | - [Twitter](https://twitter.com/eserozvataf) 1511 | - [GitHub](https://github.com/eserozvataf) 1512 | - [Website](https://eser.ozvataf.com) 1513 | - [YouTube](https://www.youtube.com/c/EserOzvataf) 1514 | 1515 | [(top)](#table-of-contents) 1516 | 1517 | --- 1518 | 1519 | ### Exxjob 1520 | #### What Exxjob streams: 1521 | - Kotlin, Solidity, Crystal, Rust, Flutter, Vlang 1522 | #### Streaming on: 1523 | - [Twitch](https://twitch.tv/exxjob) 1524 | #### Links: 1525 | - [Twitter](https://twitter.com/exxjob) 1526 | - [GitHub](https://github.com/exxjob) 1527 | 1528 | [(top)](#table-of-contents) 1529 | 1530 | --- 1531 | 1532 | ### Feross Aboukhadijeh 1533 | #### What Feross streams: 1534 | - JavaScript, Node.js, Frameworks, Developer Tooling, Web Development 1535 | #### Streaming on: 1536 | - [Twitch](https://www.twitch.tv/ferossity) 1537 | #### Links: 1538 | - [Twitter](https://twitter.com/feross) 1539 | - [GitHub](https://github.com/feross) 1540 | - [Website](https://feross.org/) 1541 | - [Patreon](https://www.patreon.com/feross) 1542 | 1543 | [(top)](#table-of-contents) 1544 | 1545 | --- 1546 | ### Ferris 1547 | #### What Ferris streams: 1548 | - Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++ 1549 | #### Streaming on: 1550 | - [Twitch](https://www.twitch.tv/ferrisstreamsstuff) 1551 | #### Links: 1552 | - [Twitter](https://twitter.com/ferristweetsnow) 1553 | - [GitHub](https://github.com/yupferris) 1554 | - [Website](http://iamferris.com/) 1555 | - [Youtube](https://www.youtube.com/channel/UC4mpLlHn0FOekNg05yCnkzQ) 1556 | - [Pouet](http://www.pouet.net/user.php?who=16820) 1557 | - [Patreon](https://www.patreon.com/ferrisstreamsstuff) 1558 | 1559 | [(top)](#table-of-contents) 1560 | 1561 | --- 1562 | ### Fletcher (IAmFletcher) 1563 | #### What Fletcher (IAmFletcher) streams: 1564 | - JavaScript, Node, Go 1565 | #### Streaming on: 1566 | - [Twitch](https://www.twitch.tv/iamfletcher_) 1567 | #### Links: 1568 | - [Twitter](https://twitter.com/IAmFletcher_) 1569 | - [GitHub](https://github.com/IAmFletcher) 1570 | - [Discord](https://discord.gg/5A3NKHJ) 1571 | 1572 | [(top)](#table-of-contents) 1573 | 1574 | ---- 1575 | ### Frank Boucher 1576 | #### What Frank Boucher streams: 1577 | - Microsoft Azure, C#, .NET Core, DevOps, OSS Development 1578 | #### Streaming on: 1579 | - [Twitch](https://www.twitch.tv/fboucheros) 1580 | #### Languages Spoken During Stream 1581 | - English 1582 | - French 1583 | #### Links: 1584 | - [Twitter](https://twitter.com/fboucheros) 1585 | - [GitHub](https://github.com/fboucher) 1586 | - [Website](http://frankysnotes.com/) 1587 | - [Youtube](https://www.youtube.com/fboucheros) 1588 | - [Blog - FR](http://www.cloudenfrancais.com/) 1589 | - [Instagram](https://www.instagram.com/frankysnotes/) 1590 | - [Patreon](https://www.patreon.com/fboucheros) 1591 | 1592 | [(top)](#table-of-contents) 1593 | 1594 | --- 1595 | ### Franziska Hinkelmann 1596 | #### What Franziska (fhinkel) streams: 1597 | - JavaScript, Node.js, Interview Training, Pair Programming 1598 | #### Streaming on: 1599 | - [Twitch](https://www.twitch.tv/fhinkel) 1600 | #### Languages Spoken During Stream 1601 | - English 1602 | #### Links: 1603 | - [Twitter](https://twitter.com/fhinkel) 1604 | - [YouTube](https://www.youtube.com/channel/UCRVQQJtsbCBF0tL7j0fEGpg) 1605 | 1606 | [(top)](#table-of-contents) 1607 | 1608 | --- 1609 | ### Freya Holmér 1610 | #### What Freya (Acegikmo) streams: 1611 | - Game Development, Unity, C#, Shaders, Developer Tooling, LGBT+ discussion 1612 | #### Streaming on: 1613 | - [Twitch](https://www.twitch.tv/acegikmo) 1614 | #### Languages Spoken During Stream 1615 | - English 1616 | #### Links: 1617 | - [Website](http://acegikmo.com/) 1618 | - [YouTube](https://www.youtube.com/channel/UC7M-Wz4zK8oikt6ATcoTwBA) 1619 | - [Twitter](https://twitter.com/FreyaHolmer) 1620 | - [Discord](https://discord.gg/v5VWuga) 1621 | - [Instagram](https://www.instagram.com/freya_holmer/) 1622 | - [Patreon](https://www.patreon.com/acegikmo) 1623 | 1624 | [(top)](#table-of-contents) 1625 | 1626 | --- 1627 | ### Gary Ewan Park 1628 | #### What Gary streams: 1629 | - C#, .NET, .NET Core, Cake, Chocolatey, DevOps 1630 | #### Streaming on: 1631 | - [Twitch](https://www.twitch.tv/gep13) 1632 | #### Links: 1633 | - [Twitter](https://twitter.com/gep13) 1634 | - [GitHub](https://github.com/gep13) 1635 | - [Blog](https://gep13.co.uk) 1636 | - [YouTube](https://www.youtube.com/channel/UCO72yJoksHHEDfFJyxTDnqQ) 1637 | 1638 | [(top)](#table-of-contents) 1639 | 1640 | --- 1641 | ### Gary Hockin 1642 | #### What Gary streams: 1643 | - PHP, Twilio, TwilioQuest 1644 | #### Streaming on: 1645 | - [Twitch](https://www.twitch.tv/spabby) 1646 | #### Links: 1647 | - [Twitter](https://twitter.com/geeh) 1648 | - [GitHub](https://github.com/geeh) 1649 | - [Blog](https://blog.hock.in/) 1650 | 1651 | [(top)](#table-of-contents) 1652 | 1653 | --- 1654 | ### Gary Kramlich 1655 | #### What RW_Grim streams: 1656 | - Pidgin Development, Convey Development, Open Source Development, C, Golang, Python, JavaScript, Docker, Containers 1657 | #### Streaming on: 1658 | - [Twitch](https://www.twitch.tv/rw_grim) 1659 | #### Links: 1660 | - [Twitter](https://twitter.com/rw_grim) 1661 | - [GitHub](https://github.com/grimmy) 1662 | - [Website](https://www.reaperworld.com) 1663 | - [Blog](https://garykramlich.blogspot.com/) 1664 | - [YouTube](https://www.youtube.com/c/garykramlich) 1665 | - [Discord](https://discord.gg/gqWBRDW) 1666 | - [Patreon](https://www.patreon.com/rw_grim) 1667 | - [Pidgin](https://www.pidgin.im) 1668 | 1669 | [(top)](#table-of-contents) 1670 | 1671 | --- 1672 | ### Gavin Barron 1673 | #### What Gavin streams: 1674 | - Web Development, C#, TypeScript, Azure, DevOps 1675 | #### Streaming on: 1676 | - [Twitch](https://www.twitch.tv/gavinbarron) 1677 | #### Links: 1678 | - [Twitter](https://twitter.com/gavinbarron) 1679 | - [GitHub](https://github.com/gavinbarron) 1680 | - [Website](https://gavinb.net) 1681 | 1682 | [(top)](#table-of-contents) 1683 | 1684 | --- 1685 | ### Geoffrey Huntley 1686 | #### What Geoff streams: 1687 | - Haskell, Reactive Extensions, NixOS, OSS Development, C#, .NET, Xamarin, DevOps 1688 | #### Streaming on: 1689 | - [Twitch](https://www.twitch.tv/geoffreyhuntley) 1690 | - [Twitter](https://twitter.com/geoffreyhuntley) 1691 | - [YouTube](https://www.youtube.com/c/geoffreyhuntley) 1692 | #### Links: 1693 | - [Website](https://www.ghuntley.com) 1694 | - [GitHub](https://github.com/ghuntley) 1695 | - [Patreon](https://www.patreon.com/ghuntley) 1696 | 1697 | [(top)](#table-of-contents) 1698 | 1699 | --- 1700 | ### Giovanny Gongora 1701 | #### What Giovanny Gongora streams: 1702 | - JavaScript, Node.js, Rust, C++ 1703 | - Performance 1704 | - OS Development 1705 | #### Streaming on: 1706 | - [Twitch](https://www.twitch.tv/gioyik) 1707 | #### Links: 1708 | - [Twitter](https://twitter.com/gioyik) 1709 | - [GitHub](https://github.com/gioyik) 1710 | - [Website](https://gioyik.com) 1711 | 1712 | [(top)](#table-of-contents) 1713 | 1714 | --- 1715 | ### Go_Maestro_Go 1716 | #### What Go_Maestro_Go (Christian) streams: 1717 | - 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 1718 | #### Streaming on: 1719 | - [Twitch](https://www.twitch.tv/go_maestro_go) 1720 | - [Twitter](https://twitter.com/gomaestrogo) 1721 | - [Facebook](https://facebook.com/gomaestrogo) 1722 | - [Instagram](https://instagram.com/go_maestro_go) 1723 | - [YouTube](https://youtube.com/channel/UC5kP9luOLJE9jiuKi9VQ9Yg) 1724 | #### Links: 1725 | - [Website](http://www.gomaestrogo.com) 1726 | - [GitHub](https://github.com/gueroso) 1727 | - [Personal Website](http://www.christiang.xyz) 1728 | - [Meditation Blog](http://www.christianmeditates.com) 1729 | - [Patreon](https://www.patreon.com/gomaestrogo) 1730 | - [StreamLabs](https://streamlabs.com/go_maestro_go) 1731 | 1732 | [(top)](#table-of-contents) 1733 | 1734 | --- 1735 | ### Guy Royse 1736 | #### What Guy Royse streams: 1737 | - Redis, JavaScript, Software Development, Test Driven Development 1738 | #### Streaming on: 1739 | - [Twitch](https://www.twitch.tv/guyroyse) 1740 | #### Links: 1741 | - [Twitter](https://twitter.com/guyroyse) 1742 | - [GitHub](https://github.com/guyroyse) 1743 | 1744 | --- 1745 | ### Gwen Frey 1746 | #### What Gwen streams: 1747 | - Game Development, Unreal Blueprint, Animation 1748 | #### Streaming on: 1749 | - [Twitch](https://www.twitch.tv/diregoldfish) 1750 | #### Links: 1751 | - [Twitter](https://twitter.com/diregoldfish) 1752 | 1753 | [(top)](#table-of-contents) 1754 | 1755 | --- 1756 | ### Gynvael Coldwind 1757 | #### What Gynvael Coldwind streams: 1758 | - Software development - Python, C, C++, ASM 1759 | - Reverse engineering 1760 | - Hacking 1761 | - Security 1762 | #### Streaming on: 1763 | - [Youtube EN](https://www.youtube.com/channel/UCCkVMojdBWS-JtH7TliWkVg) 1764 | - [Youtube PL](https://www.youtube.com/user/GynvaelColdwind) 1765 | #### Links: 1766 | - [Twitter](https://twitter.com/gynvael) 1767 | - [GitHub](https://github.com/gynvael) 1768 | - [Website](http://gynvael.coldwind.pl/) 1769 | - [Facebook](https://www.facebook.com/GynvaelPL/) 1770 | 1771 | [(top)](#table-of-contents) 1772 | 1773 | --- 1774 | ### HardlyDifficult 1775 | #### What HardlyDifficult streams: 1776 | - Game Development (Unity3D, C#), C# Programming, Cryptocurrency 1777 | #### Streaming on: 1778 | - [Twitch](https://www.twitch.tv/hardlydifficult) 1779 | #### Links: 1780 | - [Twitter](http://twitter.com/HardlyDifficult) 1781 | - [GitHub](https://github.com/hardlydifficult) 1782 | - [Website](http://hardlydifficult.com/) 1783 | - [Youtube](http://youtube.com/HardlyDifficult) 1784 | 1785 | [(top)](#table-of-contents) 1786 | 1787 | --- 1788 | ### Holden Karau 1789 | #### What Holden Karau streams: 1790 | Scala, Python, Spark, PySpark, Open Source 1791 | #### Streaming on: 1792 | - [Twitch](https://www.twitch.tv/holdenkarau) 1793 | #### Languages Spoken During Stream 1794 | - English 1795 | #### Links: 1796 | - [Twitter](https://twitter.com/holdenkarau) 1797 | - [Github](https://github.com/holdenk) 1798 | - [YouTube](https://www.youtube.com/channel/UCSrCrNswosZaD7-IufFp2AA) 1799 | 1800 | [(top)](#table-of-contents) 1801 | 1802 | --- 1803 | ### HowToCodeWell (Peter Fisher) 1804 | #### What HowToCodeWell streams: 1805 | PHP, Symfony, Laravel, Lumen Python, Micro Python, Flask, Linux, Docker, JavaScript, HTML, CSS Full Stack 1806 | #### Streaming on: 1807 | - [Twitch](https://www.twitch.tv/howtocodewell) 1808 | #### Languages Spoken During Stream 1809 | - English 1810 | #### Links: 1811 | - [GitHub](https://github.com/howToCodeWell) 1812 | - [Twitter](https://twitter.com/HowToCodeWell) 1813 | - [Website](https://howtocodewell.net) 1814 | - [Podcast](http://howtocodewell.fm) 1815 | - [YouTube](https://www.youtube.com/howtocodewell) 1816 | - [Facebook](https://www.facebook.com/howtocodewell) 1817 | - [Instagram](http://instagram.com/howtocodewell) 1818 | 1819 | [(top)](#table-of-contents) 1820 | 1821 | --- 1822 | 1823 | ### Huntabyte 1824 | 1825 | #### What Huntabyte streams: 1826 | 1827 | Web development 1828 | 1829 | #### Streaming on: 1830 | 1831 | - [YouTube](https://www.youtube.com/@Huntabyte) 1832 | 1833 | #### Languages Spoken During Stream 1834 | 1835 | - English 1836 | 1837 | #### Links: 1838 | 1839 | - [GitHub](https://github.com/huntabyte) 1840 | - [Twitter](https://twitter.com/huntabyte) 1841 | - [Website](https://huntabyte.com/) 1842 | - [Discord](discord.gg/4ywz6JhPF2) 1843 | 1844 | [(top)](#table-of-contents) 1845 | 1846 | --- 1847 | ### Ian Lovett 1848 | #### What Ian Lovett streams: 1849 | - JavaScript UI - Angular, React, React Native, Redux 1850 | - JavaScript API - Node.js, Express 1851 | - Elastic Search 1852 | - CryptoCurrency Web Apps 1853 | - Gaming - Overwatch, Fortnite, CS:GO 1854 | #### Streaming on: 1855 | - [Twitch](https://www.twitch.tv/ilovett) 1856 | #### Languages Spoken During Stream 1857 | - English 1858 | #### Links: 1859 | - [Twitter](https://www.twitter.com/_ilovett) 1860 | - [Github](https://github.com/ilovett) 1861 | 1862 | [(top)](#table-of-contents) 1863 | 1864 | --- 1865 | ### iDevelopThings 1866 | #### What iDevelopThings streams: 1867 | - PHP, JavaScript, Node.js, Full stack development, Web Development 1868 | #### Streaming on: 1869 | - [Twitch](https://www.twitch.tv/idevelopthings) 1870 | - [YouTube](https://youtube.com/idevelopthings) 1871 | 1872 | [(top)](#table-of-contents) 1873 | 1874 | --- 1875 | ### incompetent_ian 1876 | #### What incompetent_ian streams: 1877 | - Python, JavaScript, React, FastAPI, Full Stack Development, Web Development 1878 | #### Languages Spoken During Stream 1879 | - English 1880 | #### Streaming on: 1881 | - [Twitch](https://www.twitch.tv/incompetent_ian) 1882 | #### Links: 1883 | - [Twitter](https://twitter.com/ianrufus) 1884 | - [GitHub](https://github.com/ianrufus) 1885 | - [YouTube](https://www.youtube.com/channel/UCmRJyLjnQ035ng6XP295zXg) 1886 | 1887 | [(top)](#table-of-contents) 1888 | 1889 | --- 1890 | ### Jack Mott 1891 | #### What Jack streams: 1892 | - Teaching programming basics, data structures, algorithms, fun gamedev projects, Golang, SDL2, OpenGL 1893 | #### Streaming on: 1894 | - [Twitch](https://www.twitch.tv/jackmott42) 1895 | - [Website](https://gameswithgo.org/) 1896 | 1897 | [(top)](#table-of-contents) 1898 | 1899 | --- 1900 | ### Jason Lengstorf 1901 | #### What Jason Lengstorf streams: 1902 | - GatsbyJS (React) development 1903 | #### Streaming on: 1904 | - [Twitch](https://twitch.tv/jlengstorf) 1905 | #### Links: 1906 | - [Twitter](https://twitter.com/jlengstorf) 1907 | - [GitHub](https://github.com/jlengstorf) 1908 | - [Website](https://lengstorf.com) 1909 | - [Youtube](https://www.youtube.com/channel/UCnty0z0pNRDgnuoirYXnC5A) 1910 | 1911 | [(top)](#table-of-contents) 1912 | 1913 | ### Jeff and Dom Make a Game 1914 | #### What Jeff and Dom stream: 1915 | - Game development, pair programming, Unity, TypeScript/JavaScript, programming first principles, witty banter 1916 | #### Streaming on: 1917 | - [Twitch](https://www.twitch.tv/maingauchelive) 1918 | #### Links: 1919 | - [Twitter](https://twitter.com/maingauchegames) 1920 | - [YouTube](https://www.youtube.com/channel/UCPMLP_iuTLQWxCVYFNt40WA) 1921 | - [GitHub](https://github.com/jeffanddom) 1922 | 1923 | --- 1924 | ### Jeff Fritz 1925 | #### What Jeff streams: 1926 | - C#, .NET, ASP.NET, OSS and Pair Programming 1927 | #### Streaming on: 1928 | - [Twitch](https://twitch.tv/csharpfritz) 1929 | - [Mixer](https://mixer.com/csharpfritz) 1930 | #### Languages Spoken During Stream 1931 | - English 1932 | #### Links: 1933 | - [Twitter](https://twitter.com/csharpfritz) 1934 | - [GitHub](https://github.com/csharpfritz) 1935 | - [Website](http://jeffreyfritz.com/) 1936 | - [YouTube](https://www.youtube.com/channel/UCfvJirlbRTN-bU9sMWMb_ZQ) 1937 | 1938 | [(top)](#table-of-contents) 1939 | 1940 | --- 1941 | ### Jeff Lindsay 1942 | #### What Jeff streams: 1943 | - Open Source, Game Development, C#, Golang, Docker, Unity3D, JavaScript, Developer Tooling 1944 | #### Streaming on: 1945 | - [Twitch](https://www.twitch.tv/progrium) 1946 | #### Links: 1947 | - [Twitter](https://twitter.com/progrium) 1948 | - [GitHub](https://github.com/progrium) 1949 | 1950 | [(top)](#table-of-contents) 1951 | 1952 | --- 1953 | ### Jeff Panici 1954 | #### What Jeff streams: 1955 | - C, C++, Assembly, C#, Rust, JavaScript, Basecode, Programming Language Development, Compiler Development, Web Development, Game Development 1956 | #### Streaming on: 1957 | - [Twitch](https://www.twitch.tv/nybblesio) 1958 | #### Languages Spoken During Stream 1959 | - English 1960 | #### Links: 1961 | - [GitHub](https://github.com/nybblesio), [Basecode GitHub](https://github.com/basecode-lang), [Personal GitHub](https://github.com/jeffpanici75) 1962 | - [YouTube](https://www.youtube.com/channel/UCaV77OIv89qfsnncY5J2zvg) 1963 | - [Twitter](https://twitter.com/nybbles_io) 1964 | - [Discord](https://discord.gg/fdejMhU) 1965 | - [Website](https://nybbles.io/) 1966 | 1967 | [(top)](#table-of-contents) 1968 | 1969 | --- 1970 | ### Jen Tong 1971 | #### What Jen streams: 1972 | - Python, JavaScript, NodeBots, Astronomy 1973 | #### Streaming on: 1974 | - [Twitch](https://www.twitch.tv/MimmingCodes) 1975 | #### Links: 1976 | - [Twitter](https://twitter.com/MimmingCodes) 1977 | - [GitHub](https://github.com/mimming) 1978 | - [YouTube](https://www.youtube.com/c/mimming) 1979 | - [Website](https://mimming.com/) 1980 | 1981 | [(top)](#table-of-contents) 1982 | 1983 | --- 1984 | ### Jesse Skinner 1985 | #### What Jesse Skinner streams: 1986 | - Full stack web development, JavaScript, CSS, HTML, React, Node.js, PHP, Lua 1987 | #### Streaming on: 1988 | - [Twitch](https://www.twitch.tv/jesseskinner) 1989 | #### Languages Spoken During Stream 1990 | - English 1991 | #### Links: 1992 | - [YouTube](https://www.youtube.com/channel/UC6Ak0hMzttpQYAxzTe8kx7A) 1993 | - [Twitter](https://twitter.com/jesseskinner) 1994 | - [Github](https://github.com/jesseskinner) 1995 | - [Website](https://codingwithjesse.com) 1996 | 1997 | [(top)](#table-of-contents) 1998 | 1999 | --- 2000 | ### Jesse Weigel 2001 | #### What Jesse streams: 2002 | Web Development, React, Node.js, CSS, Next.js, Wordpress 2003 | #### Streaming on: 2004 | - [YouTube (FreeCodeCamp)](https://www.youtube.com/playlist?list=PLWKjhJtqVAbknyJ7hSrf1WKh_Xnv9RL1r) 2005 | - [YouTube (Personal)](https://www.youtube.com/channel/UCUGkNhK8IEUj8A0vbyJ1Bzw) 2006 | #### Languages Spoken During Stream 2007 | - English 2008 | #### Links: 2009 | - [Twitter](https://twitter.com/JesseRWeigel) 2010 | - [Instagram](https://www.instagram.com/jesse.weigel/) 2011 | - [Github (FreeCodeCamp)](https://github.com/fus-marcom/franciscan-react) 2012 | 2013 | [(top)](#table-of-contents) 2014 | 2015 | --- 2016 | ### Jessica Mak 2017 | #### What Jessica streams: 2018 | - C++, OpenGL, Game Development 2019 | #### Streaming on: 2020 | - [Twitch](https://www.twitch.tv/jessicamak) 2021 | #### Languages Spoken During Stream 2022 | - English 2023 | #### Links: 2024 | - [Twitter](https://twitter.com/mango_lychee) 2025 | - [Discord](https://discord.gg/AxR74yp) 2026 | - [Donations](https://streamlabs.com/jessicamak) 2027 | 2028 | [(top)](#table-of-contents) 2029 | 2030 | --- 2031 | ### Jochen Lillich 2032 | #### What Jochen Lillich streams: 2033 | - DevOps/SRE - Chef, Docker, Kubernetes 2034 | - Ruby programming 2035 | #### Streaming on: 2036 | - [Owncast (selfhosted)](https://watch.geewiz.dev) 2037 | - [Youtube](https://www.youtube.com/channel/UCyYSXGM9OpT4VvoIcYQIYhA/live) 2038 | #### Languages Spoken During Stream 2039 | - English 2040 | #### Links: 2041 | - [Mastodon](https://geekdom.social/@geewiz) 2042 | - [Github](https://github.com/geewiz) 2043 | - [Website](https://www.geewiz.dev) 2044 | 2045 | [(top)](#table-of-contents) 2046 | 2047 | --- 2048 | ### Joe Bew 2049 | #### What Joe streams: 2050 | - Test-Driven Development, Clean Code, Refactoring, Open Source projects 2051 | #### Streaming on: 2052 | - [Twitch](https://www.twitch.tv/joebew42) 2053 | #### Links: 2054 | - [Twitter](https://twitter.com/joebew42) 2055 | - [GitHub](https://github.com/joebew42) 2056 | - [Website](https://joebew42.github.io/twitch/) 2057 | 2058 | [(top)](#table-of-contents) 2059 | 2060 | --- 2061 | ### John Callaway 2062 | #### What John streams: 2063 | - Podcast, Test-Driven Development, Clean Code, Open Source projects 2064 | #### Streaming on: 2065 | - [Twitch](https://www.twitch.tv/6figuredev) 2066 | #### Links: 2067 | - [Twitter](https://twitter.com/matsubonsai) 2068 | - [GitHub](https://github.com/ovation22) 2069 | - [Website](https://6figuredev.com/) 2070 | 2071 | [(top)](#table-of-contents) 2072 | 2073 | --- 2074 | ### Jon Ash 2075 | #### What Jon streams: 2076 | - Podcast, Kubernetes, Blazor, Test-Driven Development, Clean Code, Open Source projects 2077 | #### Streaming on: 2078 | - [Twitch](https://www.twitch.tv/6figuredev) 2079 | #### Links: 2080 | - [Twitter](https://twitter.com/ashjonm) 2081 | - [GitHub](https://github.com/ashjonm) 2082 | - [Website](https://6figuredev.com/) 2083 | 2084 | [(top)](#table-of-contents) 2085 | 2086 | --- 2087 | ### Jon Gjengset 2088 | #### What Jon Gjenset streams: 2089 | - Rust 2090 | #### Streaming on: 2091 | - [Twitch](https://www.twitch.tv/jonfrg) 2092 | - [Youtube](https://www.youtube.com/channel/UC_iD0xppBwwsrM9DegC5cQQ) 2093 | #### Links: 2094 | - [Github](https://github.com/jonhoo) 2095 | - [Twitter](https://twitter.com/jonhoo) 2096 | - [Website](https://thesquareplanet.com) 2097 | 2098 | [(top)](#table-of-contents) 2099 | 2100 | --- 2101 | ### Jonathan Blow 2102 | #### What Jonathan Blow streams: 2103 | - Game Development, Language Developement, Jai, C++, OpenGL 2104 | #### Streaming on: 2105 | - [Youtube](https://www.youtube.com/channel/UCCuoqzrsHlwv1YyPKLuMDUQ) 2106 | #### Links: 2107 | - [Twitter](https://twitter.com/Jonathan_Blow) 2108 | 2109 | [(top)](#table-of-contents) 2110 | 2111 | --- 2112 | ### Jordan Lewis 2113 | #### What Jordan Lewis streams: 2114 | - Databases, Database Programming 2115 | #### Streaming on: 2116 | - [Twitch](https://www.twitch.tv/large__data__bank) 2117 | #### Links: 2118 | - [Youtube](https://www.youtube.com/largedatabank) 2119 | - [Twitter](https://twitter.com/largedatabank) 2120 | - [Discord](https://discord.com/invite/CzgHhgfzwS) 2121 | - [Website](https://largedatabank.com/) 2122 | - [GitHub](https://github.com/jordanlewis) 2123 | - [Instagram](https://instagram.com/jordanthelewis/) 2124 | - [LinkedIn](https://www.linkedin.com/in/jordanthelewis/) 2125 | - [Email](largedatabank@gmail.com) 2126 | 2127 | [(top)](#table-of-contents) 2128 | 2129 | --- 2130 | ### Jorge Cano 2131 | #### What Jorge Cano streams: 2132 | - Angular, Javascript, Programming, Web development 2133 | #### Streaming on: 2134 | - [Twitch](https://www.twitch.tv/jorgeucano) 2135 | #### Links: 2136 | - [Youtube](https://www.youtube.com/channel/UCdp9sM22GW5uIOaU9eZ7n6w) 2137 | - [Twitter](https://twitter.com/jorgeucano) 2138 | - [Medium](https://medium.com/@jorgeucano) 2139 | 2140 | [(top)](#table-of-contents) 2141 | 2142 | --- 2143 | ### Joseph Guadagno 2144 | #### What Joseph Guadagno streams: 2145 | - C#, .NET, ASP.NET, OSS, Azure, Ionic, and React 2146 | #### Streaming on: 2147 | - [Twitch](https://www.twitch.tv/jguadagno) 2148 | #### Links: 2149 | - [Youtube](https://jjg.me/youtube) 2150 | - [Twitter](https://twitter.com/jguadagno) 2151 | - [Website](https://www.josephguadagno.net) 2152 | - [GitHub](https://www.github.com/jguadagno) 2153 | 2154 | [(top)](#table-of-contents) 2155 | --- 2156 | ### Josh Hawkins 2157 | #### What Hawkins streams: 2158 | - JavaScript, Node.js, C++, Elixir, Python, OSS Projects, Gaming 2159 | #### Streaming on: 2160 | - [Twitch](https://twitch.tv/hawkinjs) 2161 | #### Links: 2162 | - [Twitter](https://twitter.com/hawkinjs) 2163 | - [GitHub](https://github.com/hawkins) 2164 | - [Website](https://hawkins.is) 2165 | 2166 | [(top)](#table-of-contents) 2167 | 2168 | --- 2169 | ### Josh Medeski 2170 | #### What Josh streams: 2171 | - Web developer teaching how to better use the terminal, neovim, tmux, macOS, and more 2172 | #### Streaming on: 2173 | - [Twitch](https://twitch.tv/joshmedeski) 2174 | #### Links: 2175 | - [GitHub](https://github.com/joshmedeski) 2176 | - [Website](https://joshmedeski.com) 2177 | - [YouTube](https://www.youtube.com/@JoshMedeski) 2178 | 2179 | [(top)](#table-of-contents) 2180 | 2181 | --- 2182 | ### Josh Kupka 2183 | #### What Josh streams: 2184 | - JavaScript, Building a custom streaming service 2185 | #### Streaming on: 2186 | - [Twitch](https://twitch.tv/joshkupka) 2187 | #### Links: 2188 | - [Twitter](https://twitter.com/joshkupka) 2189 | - [GitHub](https://github.com/JoshKupka) 2190 | - [Facebook](https://facebook.com/JoshKupkaTTV) 2191 | - [Discord](https://discord.gg/ZqmVHsr) 2192 | 2193 | [(top)](#table-of-contents) 2194 | 2195 | --- 2196 | ### Josh Justice 2197 | #### What Josh (codingitwrong) streams: 2198 | - JavaScript, Rails, Ember, React Native 2199 | #### Streaming on: 2200 | - [Twitch](https://twitch.tv/codingitwrong) 2201 | #### Links: 2202 | - [Twitter](https://twitter.com/codingitwrong) 2203 | - [GitHub](https://github.com/codingitwrong) 2204 | - [Website](https://codingitwrong.com) 2205 | 2206 | [(top)](#table-of-contents) 2207 | 2208 | --- 2209 | ### Josh Wulf 2210 | #### What Josh Wulf streams 2211 | - TypeScript, NestJS, Microservices, Zeebe, Minecraft programming in JS 2212 | #### Streaming on: 2213 | - [YouTube](https://www.youtube.com/channel/UCYT0zZ9ZJnyt8cvqO7e2p-w) 2214 | #### Links: 2215 | - [Twitter](https://twitter.com/sitapati) 2216 | - [GitHub](https://github.com/jwulf) 2217 | - [Website](https://www.magikcraft.io) 2218 | 2219 | [(top)](#table-of-contents) 2220 | 2221 | --- 2222 | ### Julian Duque 2223 | #### What Julian Duque streams: 2224 | - JavaScript, Node.js, Frameworks 2225 | - Developer Tooling 2226 | - Web Development 2227 | #### Streaming on: 2228 | - [Twitch](https://www.twitch.tv/julianduque/) 2229 | #### Links: 2230 | - [Twitter](https://twitter.com/julian_duque/) 2231 | - [GitHub](https://github.com/julianduque/) 2232 | 2233 | [(top)](#table-of-contents) 2234 | 2235 | --- 2236 | ### KalleHallden 2237 | #### What KalleHallden streams: 2238 | - Python, Flutter, Dart, Java 2239 | #### Streaming on: 2240 | - [Twitch](https://www.twitch.tv/kallehallden) 2241 | - [YouTube](https://www.youtube.com/kallehallden) 2242 | #### Links: 2243 | - [Twitter](https://twitter.com/KalleHallden) 2244 | - [Instagram](https://instagram.com/kallehallden) 2245 | 2246 | [(top)](#table-of-contents) 2247 | 2248 | --- 2249 | ### KensoDev 2250 | #### What KensoDev streams: 2251 | - Advanced Devops - Python, Terraform, React 2252 | #### Streaming on: 2253 | - [Twitch](https://www.twitch.tv/kensodev) 2254 | - [YouTube](https://www.youtube.com/channel/UCuFT6CtDnOGvcn9WdAvBusA) 2255 | #### Links: 2256 | - [Twitter](https://twitter.com/KensoDev) 2257 | - [GitHub](https://github.com/KensoDev) 2258 | 2259 | [(top)](#table-of-contents) 2260 | 2261 | --- 2262 | ### Kent C. Dodds 2263 | #### What Kent streams: 2264 | - JavaScript, React, Web Development, Open Source, Node.js 2265 | #### Streaming on: 2266 | - [Twitch](https://www.twitch.tv/kentcdodds) 2267 | #### Links: 2268 | - [Twitter](https://twitter.com/kentcdodds) 2269 | - [GitHub](https://github.com/kentcdodds) 2270 | - [Website](https://kentcdodds.com) 2271 | - [Newsletter](http://kcd.im/news) 2272 | - [Blog](https://blog.kentcdodds.com) 2273 | - [YouTube](https://www.youtube.com/c/kentcdodds-vids) 2274 | 2275 | [(top)](#table-of-contents) 2276 | 2277 | --- 2278 | ### Keraf 2279 | #### What Keraf streams: 2280 | - JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev 2281 | #### Streaming on: 2282 | - [Twitch](https://www.twitch.tv/iamkeraf) 2283 | #### Links: 2284 | - [Twitter](https://twitter.com/iamkeraf) 2285 | - [GitHub](https://github.com/keraf) 2286 | - [Website](https://ker.af/) 2287 | 2288 | [(top)](#table-of-contents) 2289 | 2290 | --- 2291 | ### Kevin Griffin 2292 | #### What Kevin streams: 2293 | - C#, .NET, ASP.NET, 3D Printing, Conference Planning, and more! 2294 | #### Streaming on: 2295 | - [Twitch](https://www.twitch.tv/1kevgriff) 2296 | #### Links: 2297 | - [Twitter](https://twitter.com/1kevgriff) 2298 | - [GitHub](https://github.com/1kevgriff) 2299 | - [Website](https://kevgriffin.com/) 2300 | 2301 | [(top)](#table-of-contents) 2302 | 2303 | --- 2304 | ### KeyFramers 2305 | #### What KeyFramers Stream 2306 | - UI, Animation, JavaScript, CSS, Web Development 2307 | #### Streaming on: 2308 | - [Twitch](https://www.twitch.tv/keyframers) 2309 | #### Links: 2310 | - [Twitter(@keyframers)](https://twitter.com/keyframers) 2311 | - [Twitter(@davidkpiano)](https://twitter.com/davidkpiano) 2312 | - [Twitter(@shshaw)](https://twitter.com/shshaw) 2313 | - [Patreon](https://www.patreon.com/keyframers) 2314 | 2315 | [(top)](#table-of-contents) 2316 | 2317 | --- 2318 | ### Kris Nova 2319 | #### What Kris streams: 2320 | - Go, Rust, Backend, Linux, Distributed Systems, Kubernetes, Containers. 2321 | #### Streaming on: 2322 | - [Twitch](https://www.twitch.tv/krisnova) 2323 | #### Links: 2324 | - [Mastodon](https://hachyderm.io/@nova) 2325 | - [GitHub](https://github.com/krisnova) 2326 | - [Website](https://nivenly.com/) 2327 | - [Discord](https://discord.com/invite/yqpEM494RP) 2328 | - [YouTube](https://www.youtube.com/@KrisNovaLive) 2329 | 2330 | [(top)](#table-of-contents) 2331 | 2332 | --- 2333 | ### Krzysztof 'Chris' Cieslak 2334 | #### What Chris streams: 2335 | - F#, .Net, Functional Programming, WebDevelopment 2336 | #### Streaming on: 2337 | - [Twitch](https://www.twitch.tv/k_cieslak) 2338 | #### Links: 2339 | - [Twitter](https://twitter.com/k_cieslak) 2340 | - [GitHub](https://github.com/Krzysztof-Cieslak) 2341 | - [Website](http://kcieslak.io/) 2342 | - [Website - Ionide](https://ionide.io/) 2343 | - [OpenCollective](https://opencollective.com/ionide) 2344 | 2345 | [(top)](#table-of-contents) 2346 | 2347 | --- 2348 | ### Kyle Shevlin 2349 | #### What Kyle streams: 2350 | - React, JavaScript, Functional Programming, Web Development 2351 | #### Streaming on: 2352 | - [Twitch](https://www.twitch.tv/kyleshevlin) 2353 | #### Links: 2354 | - [Twitter](https://twitter.com/kyleshevlin) 2355 | - [GitHub](https://github.com/kyleshevlin) 2356 | - [Website](https://kyleshevlin.com/) 2357 | 2358 | [(top)](#table-of-contents) 2359 | 2360 | --- 2361 | ### Laur Spilca 2362 | #### What Laur streams: 2363 | - Java, Spring 2364 | #### Languages Spoken During Stream 2365 | - English 2366 | #### Streaming on: 2367 | - [Youtube](https://www.youtube.com/@laurspilca) 2368 | #### Links: 2369 | - [Twitter](https://twitter.com/laurspilca) 2370 | - [GitHub](https://github.com/lspil) 2371 | - [LinkedIn](https://www.linkedin.com/in/lauren%C5%A3iu-spilc%C4%83-01a931107/) 2372 | 2373 | [(top)](#table-of-contents) 2374 | 2375 | --- 2376 | ### Layla Porter 2377 | #### What Layla streams: 2378 | - C#, Javascript, .NET Core, ASP.NET Core, Azure, Twilio 2379 | #### Streaming on: 2380 | - [Twitch](https://twitch.tv/laylacodesit) 2381 | #### Links: 2382 | - [Twitter](https://twitter.com/laylacodesit) 2383 | - [GitHub](https://github.com/laylacodesit) 2384 | 2385 | [(top)](#table-of-contents) 2386 | 2387 | --- 2388 | ### Lazar Nikolov 2389 | #### What Lazar streams: 2390 | - JavaScript, TypeScript, Blitz JS, Next JS, Chakra UI 2391 | #### Streaming on: 2392 | - [Twitch](https://twitch.tv/nikolovlazar) 2393 | #### Links: 2394 | - [Twitter](https://twitter.com/nikolovlazar) 2395 | - [Website](https://www.nikolovlazar.com/) 2396 | 2397 | [(top)](#table-of-contents) 2398 | 2399 | --- 2400 | ### Leomendesm 2401 | #### What Leo streams: 2402 | - Javascript, Web Development, React, Elixir 2403 | #### Languages Spoken During Stream 2404 | - Portuguese 2405 | - English 2406 | #### Streaming on: 2407 | - [Twitch](https://twitch.tv/leomendesm) 2408 | #### Links: 2409 | - [Twitter](https://twitter.com/_leomendesm) 2410 | - [GitHub](https://github.com/leomendesm) 2411 | - [Website](https://leomendesm.github.com/) 2412 | 2413 | [(top)](#table-of-contents) 2414 | 2415 | --- 2416 | ### Liz Phillips (Illuminated Space) 2417 | #### What Liz streams: 2418 | - JavaScript, Gatsby, React, Web Development, Data Structures, Playing Video Games 2419 | #### Languages Spoken During Stream 2420 | - English 2421 | #### Streaming on: 2422 | - [Twitch](https://twitch.tv/illuminatedspace) 2423 | #### Links: 2424 | - [Twitter](https://twitter.com/lizcodes) 2425 | - [GitHub](https://github.com/illuminatedspace) 2426 | - [Patreon](https://www.patreon.com/illuminatedspace) 2427 | 2428 | [(top)](#table-of-contents) 2429 | 2430 | --- 2431 | ### Lizzie Siegle 2432 | #### What Lizzie streams: 2433 | - JavaScript, Swift, Web Development, Node.js, cool libraries and projects 2434 | #### Languages Spoken During Stream 2435 | - English 2436 | #### Streaming on: 2437 | - [Instagram Live](https://instagram.com/twilio) 2438 | #### Links: 2439 | - [Twitter](https://twitter.com/lizziepika) 2440 | - [GitHub](https://github.com/elizabethsiegle) 2441 | - [Website](https://elizabethsiegle.github.io) 2442 | 2443 | [(top)](#table-of-contents) 2444 | 2445 | --- 2446 | ### Lucas Montano 2447 | #### What Lucas streams: 2448 | - Android, Node.js, Twitch extensions, Typescript, Open Source, Flutter, React. 2449 | #### Streaming on: 2450 | - [Twitch](https://www.twitch.tv/lucas_montano) 2451 | #### Links: 2452 | - [GitHub](https://github.com/lucasmontano) 2453 | - [Twitter](https://twitter.com/lucas_montano) 2454 | - [YouTube](https://www.youtube.com/channel/UCyHOBY6IDZF9zOKJPou2Rgg) 2455 | 2456 | [(top)](#table-of-contents) 2457 | 2458 | --- 2459 | ### Luke Gorrie 2460 | #### What Luke streams: 2461 | - C, Lua, RaptorJIT, R, Nix, Network drivers 2462 | #### Streaming on: 2463 | - [YouTube](https://www.youtube.com/channel/UC-ATWoBhU7ae5w7s5Rc0sSA/) 2464 | #### Links: 2465 | - [Twitter](https://twitter.com/lukego) 2466 | - [GitHub](https://github.com/lukego) 2467 | - [Website](http://www.lukego.com/) 2468 | 2469 | [(top)](#table-of-contents) 2470 | 2471 | --- 2472 | ### Marek Rogalski 2473 | #### What Mark streams: 2474 | - C++, Python, Maintaing Open Source Projects, JavaScript, programming in general, Desktop Development, Web Development 2475 | #### Streaming on: 2476 | - [Twitch](https://www.twitch.tv/maf_pl) 2477 | - [YouTube](https://www.youtube.com/@MarekRogalski) 2478 | - [Algora](https://tv.algora.io/maf) 2479 | #### Languages Spoken During Stream 2480 | - English 2481 | #### Links: 2482 | - [GitHub](https://github.com/mafik) 2483 | - [Twitter](https://twitter.com/mafikpl) 2484 | 2485 | [(top)](#table-of-contents) 2486 | 2487 | --- 2488 | ### Mark Kraus 2489 | #### What Mark streams: 2490 | - PowerShell, C#, Azure Functions, CI/CD Pipelines, OSS 2491 | #### Streaming on: 2492 | - [Twitch](https://www.twitch.tv/markekraus) 2493 | - [YouTube](https://www.youtube.com/user/markekraus) 2494 | #### Languages Spoken During Stream 2495 | - English 2496 | #### Links: 2497 | - [Twitter](https://twitter.com/markekraus) 2498 | - [GitHub](https://github.com/markekraus) 2499 | - [LinkedIn](https://www.linkedin.com/in/markekraus/) 2500 | - [Blog](http://get-powershellblog.blogspot.com/) 2501 | 2502 | [(top)](#table-of-contents) 2503 | 2504 | --- 2505 | ### Mark Mandel 2506 | #### What Mark streams: 2507 | - Game Development, Kubernetes, Golang, mostly working on [Agones](https://agones.dev) 2508 | #### Streaming on: 2509 | - [Twitch](https://www.twitch.tv/markmandel/) 2510 | - [YouTube](https://www.youtube.com/user/marksmandel) 2511 | #### Languages Spoken During Stream 2512 | - English 2513 | #### Links: 2514 | - [Twitter](https://twitter.com/neurotic) 2515 | - [GitHub](https://github.com/markmandel) 2516 | - [LinkedIn](https://www.linkedin.com/in/marksmandel/) 2517 | - [Blog](https://www.compoundtheory.com) 2518 | 2519 | [(top)](#table-of-contents) 2520 | 2521 | --- 2522 | ### Mark Rendle 2523 | #### What Mark streams: 2524 | - C#, Blazor, MAUI, .NET Previews, lessons for beginners 2525 | #### Streaming on: 2526 | - [Twitch](https://www.twitch.tv/markrendle/) 2527 | #### Languages Spoken During Stream 2528 | - English 2529 | #### Links: 2530 | - [Twitter](https://twitter.com/markrendle) 2531 | 2532 | [(top)](#table-of-contents) 2533 | 2534 | --- 2535 | ### Marko Pavlovic 2536 | #### What Marko streams: 2537 | - Web Development. Python, C++, C#, Unity, Game Development, Android Development, OSS - Open Source Software 2538 | #### Languages Spoken During Stream 2539 | - English 2540 | - Ocassionaly spoken Serbian 2541 | #### Streaming on: 2542 | - [Twitch](https://www.twitch.tv/marko8137) 2543 | - [YouTube](https://www.youtube.com/channel/UCTHyi8Fgd_Dim7uirpPHybA) 2544 | #### Links: 2545 | - [Website](https://shiva.codes) 2546 | - [Twitter](https://twitter.com/Mark0x1) 2547 | - [Github](https://github.com/MarkoShiva) 2548 | 2549 | [(top)](#table-of-contents) 2550 | 2551 | --- 2552 | ### Masood Sadri 2553 | #### What Masood streams: 2554 | - Web Development, JavaScript, Node.js, React 2555 | #### Languages Spoken During Stream 2556 | - Persian 2557 | #### Streaming on: 2558 | - [YouTube](https://www.youtube.com/user/masoodsadri) 2559 | #### Links: 2560 | - [Twitter](https://twitter.com/MasoodSadri) 2561 | - [YouTube](https://www.youtube.com/user/masoodsadri) 2562 | - [Website](http://frontcast.ir/) 2563 | 2564 | [(top)](#table-of-contents) 2565 | 2566 | --- 2567 | ### Matt Cowley 2568 | #### What Matt streams: 2569 | - Maintaing Open Source Projects, Node.js, JavaScript, CSS, HTML, Vue, Web Development 2570 | #### Streaming on: 2571 | - [Twitch](https://twitch.tv/mattipv4) 2572 | #### Languages Spoken During Stream 2573 | - English 2574 | #### Links: 2575 | - [Twitter](https://twitter.com/MattIPv4) 2576 | - [GitHub](https://github.com/MattIPv4) 2577 | - [Website](https://mattcowley.co.uk/) 2578 | 2579 | [(top)](#table-of-contents) 2580 | 2581 | --- 2582 | ### Matt Groves 2583 | #### What Matt streams: 2584 | - Databases, Couchbase, SQL/NoSQL/SQL++, .NET, C#, ASP.NET, soldering kits, VR, podcasting 2585 | #### Streaming on: 2586 | - [Twitch](https://twitch.tv/matthewdgroves) 2587 | #### Languages Spoken During Stream 2588 | - English 2589 | #### Links: 2590 | - [Twitter](https://twitter.com/mgroves) 2591 | - [GitHub](https://github.com/mgroves) 2592 | - [Blog/Podcast](https://crosscuttingconcerns.com) 2593 | - [YouTube](http://bit.ly/grovestube) 2594 | 2595 | [(top)](#table-of-contents) 2596 | 2597 | --- 2598 | ### Matt Layman 2599 | #### What Matt streams: 2600 | - Building Software as a Service (SaaS) with Python and Django 2601 | #### Streaming on: 2602 | - [Twitch](https://twitch.tv/mblayman) 2603 | #### Languages Spoken During Stream 2604 | - English 2605 | #### Links: 2606 | - [Website](https://www.mattlayman.com) 2607 | - [Twitter](https://twitter.com/mblayman) 2608 | - [Github](https://github.com/mblayman) 2609 | - [YouTube Playlist](https://www.youtube.com/watch?v=fNEZ_1dmVyE&list=PLFcKEo4b_n1wQA6lKtSqCq1dTMq1c2Lmw) 2610 | 2611 | [(top)](#table-of-contents) 2612 | 2613 | --- 2614 | ### Matt Podwysocki 2615 | #### What Matt aka BluerThanBlue Falcon aka λ Calrissian streams: 2616 | - JavaScript, Reactive Extensions, Node.js, C#, .NET Core, React-Native, React, Functional Programming, Open Source Stuff 2617 | #### Streaming on: 2618 | - [Twitch](https://www.twitch.tv/bluerthanbluefalcon) 2619 | - [YouTube](https://www.youtube.com/user/matthewpodwysocki) 2620 | #### Languages Spoken During Stream 2621 | - English 2622 | #### Links: 2623 | - [Twitter](https://twitter.com/mattpodwysocki) 2624 | - [GitHub](https://github.com/mattpodwysocki) 2625 | - [YouTube Channel](https://www.youtube.com/user/matthewpodwysocki) 2626 | 2627 | [(top)](#table-of-contents) 2628 | 2629 | --- 2630 | ### Matthew Brandt (mattytwoshoes) 2631 | Also known as Matty 2632 | #### What Matty streams: 2633 | - JavaScript, Databases, SQL, Data Analytics edutainment (education & entertainment) 2634 | #### Streaming on: 2635 | - [Twitch](https://www.twitch.tv/matty_twoshoes) 2636 | #### Languages Spoken During Stream 2637 | - English 2638 | - German (occasionally) 2639 | - French (occasionally) 2640 | #### Links: 2641 | - [Website](https://mattytwo.shoes) 2642 | - [Patreon](https://www.patreon.com/mattytwoshoes) 2643 | - [LinkedIn](https://linkedin.com/in/mattytwoshoes) 2644 | - [Polywork](https://www.polywork.com/mattytwoshoes) 2645 | - [YouTube](https://www.youtube.com/c/mattytwoshoes) 2646 | - [GitHub](https://github.com/matthewbrandt) 2647 | 2648 | [(top)](#table-of-contents) 2649 | 2650 | --- 2651 | ### Mattias Petter Johansson 2652 | Also known as MPJ from Fun Fun Function 2653 | #### What MPJ streams: 2654 | - JavaScript, Node.js, Programming in general 2655 | #### Streaming on: 2656 | - [Youtube](https://youtube.com/funfunfunction) 2657 | - [Twitch](https://www.twitch.tv/funfunfunction) 2658 | #### Languages Spoken During Stream 2659 | - English 2660 | #### Links: 2661 | - [Twitter](https://twitter.com/mpjme) 2662 | - [GitHub](https://github.com/mpj) 2663 | - [GitHubGist](https://gist.github.com/mpj) 2664 | - [Website](https://about.me/mpj) 2665 | 2666 | [(top)](#table-of-contents) 2667 | 2668 | --- 2669 | ### MechJack 2670 | #### What MechJack streams: 2671 | - Java, JavaScript, React, Framework development, Programming in general 2672 | #### Streaming on: 2673 | - [Twitch](https://www.twitch.tv/mechjack) 2674 | #### Languages Spoken During Stream 2675 | - English 2676 | #### Links: 2677 | - [Discord](https://discord.gg/vVX66kw) 2678 | - [GitHub](https://github.com/mechjacktv) 2679 | - [Thingiverse](https://www.thingiverse.com/MechJack/about) 2680 | - [Twitter](https://twitter.com/mechjacktv) 2681 | - [YouTube](https://www.youtube.com/channel/UCYi1VMWVuFTySaJ3tOqOb_w) 2682 | 2683 | [(top)](#table-of-contents) 2684 | 2685 | --- 2686 | ### Micah Elizabeth Scott (scanlime) 2687 | #### What Micah streams: 2688 | - Reverse Engineering, Rust, C++, Hardware 2689 | #### Streaming on: 2690 | - [YouTube](https://www.youtube.com/user/micahjd) 2691 | - [Twitch](https://twitch.tv/scanlime) 2692 | #### Links: 2693 | - [Twitter](https://twitter.com/scanlime) 2694 | - [GitHub](https://github.com/scanlime) 2695 | - [Website](http://scanlime.org) 2696 | - [Patreon](https://www.patreon.com/scanlime) 2697 | 2698 | [(top)](#table-of-contents) 2699 | 2700 | --- 2701 | ## Michael Crump 2702 | #### What Michael Crump streams: 2703 | - Azure, Software Development, C#, .NET Core 2704 | #### Streaming on: 2705 | - [Twitch](https://twitch.tv/mbcrump) 2706 | - [YouTube](https://www.youtube.com/mbcrump) 2707 | #### Links: 2708 | - [Blog](http://azuredev.tips) 2709 | - [Twitter](https://twitter.com/mbcrump) 2710 | - [GitHub](https://github.com/mbcrump) 2711 | - [Instagram](https://instagram.com/mbcrump/) 2712 | 2713 | [(top)](#table-of-contents) 2714 | 2715 | --- 2716 | --- 2717 | ## Michael Henderson (robedcoder / leadcoder) 2718 | #### What Michael Henderson streams: 2719 | - Full stack development 2720 | #### Streaming on: 2721 | - [Twitch](https://twitch.tv/leadcoder) 2722 | - [YouTube](https://www.youtube.com/channel/UC_Dn6rTbbVggWONZtgzVHIQ) 2723 | #### Links: 2724 | - [GitHub](https://github.com/m-henderson) 2725 | - [Instagram](https://instagram.com/robedcoder/) 2726 | 2727 | [(top)](#table-of-contents) 2728 | 2729 | --- 2730 | ### Michael Jolley (BaldBeardedBuilder) 2731 | #### What Michael Jolley streams: 2732 | - C#, JavaScript, .Net Core, IoT 2733 | #### Streaming on: 2734 | - [Twitch](https://twitch.tv/baldbeardedbuilder) 2735 | - [YouTube](https://www.youtube.com/channel/UCn2FoDbv_veJB_UbrF93_jw) 2736 | #### Links: 2737 | - [Twitter](https://twitter.com/michaeljolley) 2738 | - [GitHub](https://github.com/michaeljolley) 2739 | - [Website](https://michaeljolley.com) 2740 | 2741 | [(top)](#table-of-contents) 2742 | 2743 | --- 2744 | ### Mike Conley 2745 | #### What Mike streams: 2746 | - Firefox Development, JavaScript, C++, CSS, Rust 2747 | #### Streaming on: 2748 | - [Twitch](https://www.twitch.tv/mikeconley_dot_ca) 2749 | - [Facebook](https://www.facebook.com/TheJoyOfCoding1/) 2750 | - [YouTube](https://www.youtube.com/channel/UCTDXvmarLFnox4AO0w2NuiQ) 2751 | - [Air Mozilla](https://air.mozilla.org/channels/livehacking/) 2752 | #### Links: 2753 | - [Twitter](http://twitter.com/mike_conley) 2754 | - [GitHub](http://github.com/mikeconley/) 2755 | - [YouTube](https://www.youtube.com/channel/UCTDXvmarLFnox4AO0w2NuiQ) 2756 | - [Website](https://www.mikeconley.ca/blog) 2757 | 2758 | [(top)](#table-of-contents) 2759 | 2760 | --- 2761 | ### MishManners 2762 | #### What Mish streams: 2763 | - Hackathons, conference news, C#, Unity, Twilio Quest, JavaScript, GitHub, Python, Ruby, Machine Learning, AWS, DevOps 2764 | #### Streaming on: 2765 | - [Twitch](https://www.twitch.tv/MishManners/) 2766 | #### Links: 2767 | - [Twitter](https://twitter.com/MishManners) 2768 | - [LinkedIn](https://www.linkedin.com/in/mishmanners/) 2769 | - [Instagram](https://instagram.com/MishManners_) 2770 | - [YouTube](https://www.youtube.com/c/MishManners) 2771 | - [Discord](https://discordapp.com/invite/f4NFzFt) 2772 | - [Website](http://mishmanners.com) + [Blog](https://hackathonqueen.com) 2773 | 2774 | [(top)](#table-of-contents) 2775 | 2776 | --- 2777 | ### Nathan Baggs 2778 | #### What Nathan streams: 2779 | - C++, Game development, Reverse engineering, Low level development 2780 | #### Streaming on: 2781 | - [Twitch](https://www.twitch.tv/nathan_baggs) 2782 | - [YouTube](https://www.youtube.com/@nathanbaggs) 2783 | #### Links: 2784 | - [GitHub](https://github.com/nathan-baggs) 2785 | - [Discord](https://discord.gg/9D5SuxH) 2786 | - [Twitter/X](https://x.com/nathan_baggs_) 2787 | 2788 | [(top)](#table-of-contents) 2789 | 2790 | --- 2791 | ### Nicholas Brochu 2792 | #### What Nicholas streams: 2793 | - Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision 2794 | #### Streaming on: 2795 | - [Twitch](https://www.twitch.tv/serpent_ai) 2796 | #### Links: 2797 | - [Twitter](https://twitter.com/Serpent_AI) 2798 | - [GitHub](https://github.com/nbrochu) 2799 | - [Website](http://serpent.ai) + [Blog](http://blog.serpent.ai) 2800 | - [YouTube](https://www.youtube.com/c/SerpentAI) 2801 | - [Discord](https://discord.gg/9D5SuxH) 2802 | - [Patreon](https://www.patreon.com/serpent_ai) 2803 | 2804 | [(top)](#table-of-contents) 2805 | 2806 | --- 2807 | ### mmatt 2808 | #### What mmatt streams: 2809 | - Python, Discord bots, Discord.py, general programming. 2810 | #### Streaming on: 2811 | - [Twitch](https://www.twitch.tv/mmattbtw) 2812 | #### Links: 2813 | - [GitHub](https://github.com/mmattbtw) 2814 | - [Project Website](http://doobbot.com) + [Blog](http://doobdev.github.io) 2815 | - [Patreon](https://www.patreon.com/doobdev) 2816 | 2817 | [(top)](#table-of-contents) 2818 | 2819 | --- 2820 | 2821 | ### Mohamed Elsherif 2822 | 2823 | #### What Mohamed streams: 2824 | 2825 | - Software Engineering topics and discussions, podcast and some times video tutorials. 2826 | 2827 | #### Streaming on: 2828 | 2829 | - [YouTube](www.youtube.com/@bashmohandes) 2830 | 2831 | #### Links: 2832 | 2833 | - [GitHub](https://github.com/mmattbtw) 2834 | - [Website](bashmohandes.com) 2835 | - [Podcast](askdeveloper.com) 2836 | - [Facebook](facebook.com/askdeveloper) 2837 | - [Twitter](twitter.com/bashmohandes) 2838 | 2839 | [(top)](#table-of-contents) 2840 | 2841 | --- 2842 | ### Nick Busey 2843 | #### What Nick streams: 2844 | - PHP, NodeJS, Docker, Ansible, DevOps, React, MeteorJS and occasionally I'll brew a beer! 2845 | #### Streaming on: 2846 | - [Twitch](https://www.twitch.tv/nickbusey) 2847 | #### Links: 2848 | - [Twitter](https://twitter.com/NickBusey) 2849 | - [GitLab](https://gitlab.com/NickBusey) 2850 | - [Website](http://nickbusey.com) 2851 | - [YouTube](https://www.youtube.com/channel/UCMdTn6st3HoGkvH95IhrjbQ) 2852 | - [Patreon](https://www.patreon.com/NickBusey) 2853 | 2854 | [(top)](#table-of-contents) 2855 | 2856 | --- 2857 | ### Nicolai Parlog 2858 | #### What Nicolai streams: 2859 | - Java, occasionally JavaScript, Kotlin, or even weirder stuff 2860 | #### Streaming on: 2861 | - [Twitch](https://www.twitch.tv/nipafx) 2862 | #### Links: 2863 | - [Twitter](https://twitter.com/nipafx) 2864 | - [GitHub](https://github.com/CodeFX-org) 2865 | - [YouTube](https://www.youtube.com/c/codefx) 2866 | - [Medium](https://medium.com/codefx-weekly) 2867 | - [Website](https://blog.codefx.org/) 2868 | 2869 | [(top)](#table-of-contents) 2870 | 2871 | --- 2872 | ### Ninjabunny9000 2873 | #### What Ninjabunny9000 Stream 2874 | - Python, C#, Ninja, Programming in general 2875 | #### Languages Spoken During Stream 2876 | - English 2877 | - Ninjago 2878 | #### Streaming on: 2879 | - [Twitch](https://www.twitch.tv/bun9000) 2880 | #### Links: 2881 | - [GitHub](https://github.com/NinjaBunny9000) 2882 | - [Twitter](https://twitter.com/ninjabunny9000) 2883 | - [Discord](https://discord.gg/UEUFAUV) 2884 | 2885 | [(top)](#table-of-contents) 2886 | 2887 | --- 2888 | ### nmarulo 2889 | #### What nmarulo streams: 2890 | - JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS 2891 | #### Streaming on: 2892 | - [Twitch](https://www.twitch.tv/nmarulo) 2893 | #### Links: 2894 | - [GitHub](https://github.com/nmarulo) 2895 | - [Twitter](https://twitter.com/nmarulo) 2896 | - [Website](http://softn.red) 2897 | 2898 | [(top)](#table-of-contents) 2899 | 2900 | --- 2901 | ### nullpointer128 2902 | #### What nullpointer streams: 2903 | - Javascript, flutter, Dart, Spring, Vue.js, Web development, App development 2904 | #### Streaming on: 2905 | - [Twitch](https://www.twitch.tv/nullpointer128) 2906 | #### Links: 2907 | - [Discord](http://discord.gg/XNqfcQW) 2908 | - [Twitter](http://twitter.com/nullpointer256) 2909 | 2910 | [(top)](#table-of-contents) 2911 | 2912 | --- 2913 | ### Patrick Prémartin 2914 | #### What Patrick Prémartin streams: 2915 | - Delphi, PHP, JavaScript, Desktop Development, Web Development, Game Development 2916 | #### Streaming on: 2917 | - [Twitch](https://www.twitch.tv/patrickpremartin) 2918 | #### Links: 2919 | - [Twitter](http://twitter.com/premartinpatric) 2920 | - [LinkedIn](https://www.linkedin.com/in/patrickpremartin/) 2921 | - [GitHub](https://github.com/DeveloppeurPascal) 2922 | - [YouTube personal](https://www.youtube.com/channel/UCddEKGInVAgpQceimudBHEg) 2923 | - [YouTube Developpeur Pascal](https://www.youtube.com/channel/UCk_LmkBB90jdEdmfF77W6qQ) 2924 | - [Blog](https://developpeur-pascal.fr) 2925 | - [VOD](https://serialstreameur.fr) 2926 | 2927 | [(top)](#table-of-contents) 2928 | 2929 | --- 2930 | ### Pavithra Kodmad 2931 | #### What PK streams: 2932 | - JavaScript, CSS, Open Source Stuff 2933 | #### Streaming on: 2934 | - [Twitch](https://www.twitch.tv/pavithrakodmad) 2935 | #### Links: 2936 | - [Website](http://pavithrakodmad.com) 2937 | - [Twitter](https://twitter.com/PKodmad) 2938 | - [GitHub](https://github.com/pksjce) 2939 | 2940 | [(top)](#table-of-contents) 2941 | 2942 | --- 2943 | ### Pearly Owl 2944 | #### What PK streams: 2945 | - iOS, Swift, Sometimes Uni Assignments 2946 | #### Streaming on: 2947 | - [Twitch](https://www.twitch.tv/pearly_owl) 2948 | #### Links: 2949 | - [Twitter](https://twitter.com/Pearly_Owl) 2950 | - [GitHub](https://github.com/NadzeyaD) 2951 | 2952 | [(top)](#table-of-contents) 2953 | 2954 | --- 2955 | ### Per Vognsen 2956 | #### What Per Vognsen streams: 2957 | - Building system from scratch, C, Python, HDL, Ion 2958 | #### Streaming on: 2959 | - [Twitch](https://twitch.tv/pervognsen) 2960 | #### Languages Spoken During Stream 2961 | - English 2962 | #### Links: 2963 | - [Twitter](https://twitter.com/pervognsen) 2964 | - [Github](https://github.com/pervognsen/bitwise) 2965 | - [Discord](https://discord.gg/7TSA6ZF) 2966 | - [YouTube](https://youtube.com/pervognsen) 2967 | - [Forum](https://bitwise.handmade.network/forums) 2968 | 2969 | [(top)](#table-of-contents) 2970 | 2971 | --- 2972 | ### Phil Nash 2973 | #### What Phil Nash streams: 2974 | - IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript 2975 | #### Streaming on: 2976 | - [Twitch](https://www.twitch.tv/phil_nash/) 2977 | #### Links: 2978 | - [Twitter](https://twitter.com/philnash) 2979 | - [GitHub](https://github.com/philnash/) 2980 | - [Website](https://philna.sh/) 2981 | - [Blog](https://philna.sh/blog/) 2982 | - [DEV](https://dev.to/philnash) 2983 | 2984 | [(top)](#table-of-contents) 2985 | 2986 | --- 2987 | ### Pirate Software (Jason Thor Hall) 2988 | #### What Thor streams: 2989 | - Game Maker Studio, Game Development, Development Advice 2990 | #### Streaming on: 2991 | - [Twitch](https://www.twitch.tv/piratesoftware) 2992 | #### Links: 2993 | - [Twitter](https://twitter.com/PirateSoftware) 2994 | - [Website](http://gopiratesoftware.com) 2995 | - [Website](http://develop.games) 2996 | - [FAQ](http://gopiratesoftware.com/games/Heartbound/FAQ/) 2997 | - [Reddit](https://www.reddit.com/r/Heartbound) 2998 | - [Merch](https://piratesoftware.bigcartel.com/products) 2999 | - [Ko-Fi](https://ko-fi.com/piratesoftware) 3000 | - [YouTube](https://www.youtube.com/@PirateSoftware) 3001 | 3002 | [(top)](#table-of-contents) 3003 | 3004 | --- 3005 | ### PixelogicDev 3006 | #### What PixelogicDev streams: 3007 | - iOS, Swift, JavaScript, Node.js, Angular, APIs, Web Development 3008 | #### Streaming on: 3009 | - [Twitch](https://www.twitch.tv/pixelogicdev) 3010 | #### Links: 3011 | - [Twitter](https://twitter.com/alec_dilanchian) 3012 | - [GitHub](https://github.com/PixelogicDev) 3013 | 3014 | [(top)](#table-of-contents) 3015 | 3016 | --- 3017 | ### Plaintextnerds 3018 | #### What PixelogicDev streams: 3019 | - Python, C++, C#, Go, APIs, Web Development, NetCode, Networking, Startups, Open Source 3020 | #### Streaming on: 3021 | - [Twitch](https://www.twitch.tv/plaintextnerds) 3022 | #### Links: 3023 | - [Mastodon](https://hachyderm.io/@plaintextnerds) 3024 | - [GitLab](https://gitlab.com/plaintextnerds) 3025 | - [Blog](https://blog.plaintextnerds.com) 3026 | - [Website](https://www.plaintextnerds.com/) 3027 | - [Website](https://www.geoip.network/) 3028 | 3029 | [(top)](#table-of-contents) 3030 | 3031 | --- 3032 | ### Rachael Tatman 3033 | #### What rachaeltatman streams: 3034 | - data science 3035 | - journal club 3036 | #### Streaming on: 3037 | - [Twitch](https://www.twitch.tv/rctatman) 3038 | #### Links: 3039 | - [Twitter](https://twitter.com/rctatman) 3040 | - [GitHub](https://github.com/rctatman) 3041 | 3042 | [(top)](#table-of-contents) 3043 | 3044 | --- 3045 | ### RadicalFishGames 3046 | #### What RadicalFishGames streams: 3047 | - Game Development (JavaScript, WebGL) (Game: CrossCode) 3048 | #### Streaming on: 3049 | - [Twitch](https://www.twitch.tv/radicalfishgames) 3050 | #### Links: 3051 | - [Twitter](https://twitter.com/RadicalFishGame) 3052 | - [Website](http://www.radicalfishgames.com/) 3053 | - [Youtube](https://www.youtube.com/user/RadicalFishGames) 3054 | 3055 | [(top)](#table-of-contents) 3056 | 3057 | --- 3058 | ### Ragnar Thor 3059 | #### What Ragnar Thor streams: 3060 | - JavaScript, React, Web Development, Open Source, Node.js 3061 | #### Streaming on: 3062 | - [Twitch](https://www.twitch.tv/rthor) 3063 | #### Links: 3064 | - [Twitter](https://twitter.com/rthor) 3065 | - [GitHub](https://github.com/rthor) 3066 | 3067 | [(top)](#table-of-contents) 3068 | 3069 | --- 3070 | ### Randall Hunt 3071 | #### What Randall streams: 3072 | AWS, Web Development, Python, Serverless, AI 3073 | #### Streaming on: 3074 | - [Twitch (AWS)](https://www.twitch.tv/aws) 3075 | - [Twitch (Personal)](https://www.twitch.tv/RandallAtAmazon) 3076 | #### Links: 3077 | - [Twitter](https://twitter.com/jrhunt) 3078 | - [GitHub](https://github.com/ranman) 3079 | - [YouTube](https://www.youtube.com/channel/UC-yKovfbYEWyD_pXh9n7nHA) 3080 | 3081 | [(top)](#table-of-contents) 3082 | 3083 | --- 3084 | ### Ricardo Tavares 3085 | #### What Ricardo streams: 3086 | Angular 6+, SCSS, LUA, Node.js, Python, SQL, Typescript, WASM, Web Development 3087 | #### Streaming on: 3088 | - [Mixer](https://mixer.com/Rjgtav) 3089 | - [Twitch](https://www.twitch.tv/rjgtav/) 3090 | - [YouTube](https://www.youtube.com/user/rjgtav) 3091 | #### Links: 3092 | - [GitHub](https://github.com/rjgtav) 3093 | - [LinkedIn](https://www.linkedin.com/in/rjgtav/) 3094 | 3095 | [(top)](#table-of-contents) 3096 | 3097 | --- 3098 | ### Robin Pokorny 3099 | #### What Robin Pokorny streams: 3100 | - JavaScript, Functional Programming, Node.js 3101 | #### Streaming on: 3102 | - [Twitch](https://www.twitch.tv/robinpokorny) 3103 | #### Languages Spoken During Stream 3104 | - English 3105 | #### Links: 3106 | - [Twitter](https://twitter.com/robinpokorny) 3107 | - [GitHub](https://github.com/robinpokorny) 3108 | - [Website](https://robinpokorny.com/) 3109 | - [YouTube](https://www.youtube.com/c/robinpokorny) 3110 | 3111 | [(top)](#table-of-contents) 3112 | 3113 | --- 3114 | ### Robin Thomas 3115 | #### What Robin Pokorny streams: 3116 | - FOSS, JavaScript Frameworks, Linux, Arduino, Raspberry Pi 3117 | #### Streaming on: 3118 | - [YouTube](https://www.youtube.com/c/JumpStarts) 3119 | #### Languages Spoken During Stream 3120 | - English 3121 | #### Links: 3122 | - [LinkTree](https://bit.ly/JS-links) 3123 | 3124 | [(top)](#table-of-contents) 3125 | 3126 | --- 3127 | ### Rúben Gomes 3128 | #### What Rúben streams: 3129 | - Node.js, JavaScript, Vue, ES6/ES7, Full Stack Development 3130 | #### Streaming on: 3131 | - [Twitch](https://www.twitch.tv/rgomex) 3132 | #### Languages Spoken During Stream 3133 | - English, Portuguese 3134 | #### Links: 3135 | - [Discord](https://discord.gg/4qDQdXu) 3136 | - [Website](https://rubengomes10.github.io) 3137 | - [Github](https://github.com/rubengomex) 3138 | 3139 | [(top)](#table-of-contents) 3140 | 3141 | --- 3142 | ### Russell Hay 3143 | #### What Russell streams: 3144 | - Rust, Functional Programming, Hardware, Generative Art 3145 | #### Streaming on: 3146 | - [Twitch](https://twitch.tv/stainlessio) 3147 | #### Links: 3148 | - [Twitter](https://twitter.com/pkstainless) 3149 | - [GitHub](https://github.com/RussTheAerialist) 3150 | - [Website](https://russellhay.com) 3151 | - [Rust Blog](https://stainless.io) 3152 | 3153 | [(top)](#table-of-contents) 3154 | 3155 | --- 3156 | ### RyanWarnerCodes 3157 | #### What Ryan streams: 3158 | - Web design and development, JavaScript, Gatsby, React, Firebase, Node, CSS, UI/UX Design 3159 | #### Streaming on: 3160 | - [Twitch](https://www.twitch.tv/RyanWarnerCodes) 3161 | #### Links: 3162 | - [Twitter](https://twitter.com/RyanWarnerCodes) 3163 | - [YouTube](https://www.youtube.com/channel/UCBvvmLr-oLl2gnG8mdtY6aA) 3164 | - [Website](https://rw.codes) 3165 | - [Dribbble](https://dribbble.com/RyanWarnerCodes) 3166 | - [Figma](https://figma.com/@RyanWarner) 3167 | - [GitHub](https://github.com/RyanWarner) 3168 | 3169 | --- 3170 | ### Sallar Kaboli 3171 | #### What Sallar streams: 3172 | - JavaScript, Node.js, Electron, React, OSS Projects, APIs 3173 | #### Streaming on: 3174 | - [Youtube](https://www.youtube.com/user/sallarkaboli) 3175 | #### Languages Spoken During Stream 3176 | - English 3177 | - Persian (Farsi) 3178 | #### Links: 3179 | - [Twitter](https://twitter.com/sallar) 3180 | - [GitHub](https://github.com/sallar) 3181 | - [Website](https://sallar.me) 3182 | 3183 | [(top)](#table-of-contents) 3184 | 3185 | 3186 | --- 3187 | ### Sch3lpSC2 3188 | #### What Sch3lpSC2 streams: 3189 | - Kotlin, VueJS, CQRS, Web Development 3190 | #### Streaming on: 3191 | - [Twitch](https://www.twitch.tv/sch3lpsc2) 3192 | #### Links: 3193 | - [Twitter](https://twitter.com/TimSchraepen) 3194 | - [GitHub](https://github.com/sch3lp) 3195 | 3196 | [(top)](#table-of-contents) 3197 | 3198 | --- 3199 | ### Sean Larkin 3200 | #### What Sean streams: 3201 | - Webpack, OSS, JavaScript, Gaming 3202 | #### Streaming on: 3203 | - [Twitch](https://www.twitch.tv/thelarkinn) 3204 | #### Links: 3205 | - [Twitter](https://twitter.com/TheLarkInn) 3206 | - [GitHub](https://github.com/TheLarkInn) 3207 | 3208 | [(top)](#table-of-contents) 3209 | 3210 | --- 3211 | ### Sébastien Rancoud 3212 | #### What Sébastien streams: 3213 | - JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development 3214 | #### Streaming on: 3215 | - [Twitch](https://www.twitch.tv/megadamage) 3216 | #### Languages Spoken During Stream 3217 | - French 3218 | - English 3219 | #### Links: 3220 | - [Twitter](https://twitter.com/rancoud) 3221 | - [GitHub](https://github.com/rancoud) 3222 | 3223 | [(top)](#table-of-contents) 3224 | 3225 | --- 3226 | ### Sebastian Krzyżanowski 3227 | #### What Sebastian Krzyżanowski streams: 3228 | - JavaScript, React, Redux + redux-saga, Firebase, Node.js 3229 | #### Streaming on: 3230 | - [Twitch](https://www.twitch.tv/vfujin) 3231 | #### Languages Spoken During Stream 3232 | - English 3233 | - Polish 3234 | #### Links: 3235 | - [Github](https://github.com/vFujin) 3236 | 3237 | [(top)](#table-of-contents) 3238 | 3239 | --- 3240 | ### Sergio Cinos 3241 | #### What Sergio Cinos streams: 3242 | - Node.js, React, MobX, Docker, DevOps, Full Stack Development 3243 | #### Streaming on: 3244 | - [Twitch](https://www.twitch.tv/scinos) 3245 | #### Languages Spoken During Stream 3246 | - Spanish 3247 | #### Links: 3248 | - [Twitter](https://twitter.com/scinos) 3249 | - [GitHub](https://github.com/scinos/) 3250 | - [Website](https://www.youtube.com/channel/UCWWgBvd400EdnUF791ZjSeg) 3251 | 3252 | [(top)](#table-of-contents) 3253 | 3254 | --- 3255 | ### Silent_Coyote 3256 | #### What Silent "Ky" Coyote streams: 3257 | - C++, Game Development, Node.js, PHP, JavaScript, Angular, Docker, DevOps, Full Stack Web Development 3258 | #### Streaming on: 3259 | - [Twitch](https://www.twitch.tv/silent_coyote) 3260 | #### Languages Spoken During Stream 3261 | - English 3262 | #### Links: 3263 | - [Twitter](https://twitter.com/HelloKyYT) 3264 | - [GitHub](https://github.com/RedactedProfile/) 3265 | - [Website](https://redacteddevworks.ca) 3266 | 3267 | [(top)](#table-of-contents) 3268 | 3269 | --- 3270 | ### Shinmera 3271 | #### What Shinmera streams: 3272 | - Game Development, Common Lisp, Lisp projects demos 3273 | #### Streaming On: 3274 | - [Twitch](http://twitch.tv/Shinmera) 3275 | - [YouTube](https://www.youtube.com/playlist?list=PLkDl6Irujx9MtJPRRP5KBH40SGCenztPW) 3276 | #### Links: 3277 | - [Github](https://github.com/Shinmera/) 3278 | - [Website](http://shinmera.com/) 3279 | 3280 | [(top)](#table-of-contents) 3281 | 3282 | --- 3283 | ### Shirley Wu 3284 | #### What Shirley streams: 3285 | - Data Visualisation (DataViz), JavaScript, React 3286 | #### Streaming on: 3287 | - [Twitch](https://www.twitch.tv/sxywu) 3288 | #### Links: 3289 | - [Twitter](https://twitter.com/sxywu) 3290 | - [Medium](https://medium.com/@sxywu) 3291 | - [YouTube](https://www.youtube.com/user/sxywu) 3292 | - [#ShirleyChats](https://twitter.com/hashtag/ShirleyChats) 3293 | - [Website](http://sxywu.com/) 3294 | 3295 | [(top)](#table-of-contents) 3296 | 3297 | --- 3298 | ### Simeon Vincent 3299 | #### What Simeon Vincent streams: 3300 | - JavaScript, CSS, Web Development, Twitch extensions 3301 | #### Streaming on: 3302 | - [Twitch](https://twitch.tv/dotproto) 3303 | #### Languages Spoken During Stream 3304 | - English 3305 | #### Links: 3306 | - [Twitter](https://twitter.com/dotproto) 3307 | - [Github](https://github.com/dotproto) 3308 | - [Website](https://dotproto.com) 3309 | 3310 | [(top)](#table-of-contents) 3311 | 3312 | --- 3313 | ### Sir Lynix Van Frietjes 3314 | #### What Sir Lynix van Friejtes streams: 3315 | - C++, Lua, Game Development 3316 | #### Streaming on: 3317 | - [Twitch](https://www.twitch.tv/sirlynixvanfrietjes) 3318 | #### Languages Spoken During Stream 3319 | - French 3320 | - English (only when asked) 3321 | #### Links: 3322 | - [Discord](https://discord.gg/zcWp9sC) 3323 | - [GitHub](https://github.com/DrLynix) 3324 | - [Twitter](https://twitter.com/SirLynix) 3325 | - [Website](https://sirlynixvanfrietjes.be) 3326 | 3327 | [(top)](#table-of-contents) 3328 | 3329 | --- 3330 | ### Siva 3331 | #### What Siva streams: 3332 | - ML, IoT, Node.js, JavaScript, GraphQL 3333 | #### Streaming on: 3334 | - [Twitch](https://www.twitch.tv/ksivamuthu) 3335 | #### Links: 3336 | - [Twitter](https://twitter.com/ksivamuthu) 3337 | - [GitHub](https://github.com/ksivamuthu) 3338 | - [Youtube](https://www.youtube.com/channel/UCTWEip7qMz2HP-0daYA8nvA) 3339 | 3340 | [(top)](#table-of-contents) 3341 | 3342 | --- 3343 | ### SkillVid 3344 | #### What SkillVid streams: 3345 | - Javascript, Adobe Illustrator 3346 | #### Languages Spoken During Stream 3347 | - Persian 3348 | #### Streaming on: 3349 | - [Youtube](https://www.youtube.com/channel/UC9aYF7SavRo_A9psgpEmw0A) 3350 | #### Links: 3351 | - [Twitter](https://twitter.com/skillvid) 3352 | - [Website](https://skillvid.com/) 3353 | 3354 | [(top)](#table-of-contents) 3355 | 3356 | --- 3357 | ### Sorskoot 3358 | #### What Sorskoot streams: 3359 | - JavaScript, Node.js, WebVR/WebAR/WebXR, Progressive web apps, IoT, Microsoft Azure 3360 | #### Streaming on: 3361 | - [Twitch](https://www.twitch.tv/sorskoot) 3362 | #### Links: 3363 | - [Twitter](https://twitter.com/sorskoot) 3364 | - [GitHub](https://github.com/sorskoot) 3365 | - [Youtube](https://www.youtube.com/c/sorskoot) 3366 | - [Website](https://timmykokke.com/) 3367 | 3368 | [(top)](#table-of-contents) 3369 | 3370 | --- 3371 | ### Stan Daniels-Roth 3372 | #### What Stan streams: 3373 | - Web Development, JavaScript, CSS, PHP (Laravel) 3374 | #### Streaming on: 3375 | - [Twitch](https://www.twitch.tv/mrstandu33) 3376 | #### Languages Spoken During Stream 3377 | - French (Native) 3378 | - English 3379 | #### Links: 3380 | - [Twitter](https://twitter.com/mrstandu33) 3381 | - [GitHub](https://github.com/mrstandu33) 3382 | - [Instagram](https://www.instagram.com/stan_danielsroth) 3383 | - [Website](https://daniels-roth-stan.fr) 3384 | 3385 | [(top)](#table-of-contents) 3386 | 3387 | --- 3388 | ### Suz Hinton 3389 | #### What Suz streams: 3390 | - IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript 3391 | #### Streaming on: 3392 | - [Twitch](https://www.twitch.tv/noopkat) 3393 | #### Links: 3394 | - [Twitter](https://twitter.com/noopkat) 3395 | - [GitHub](https://github.com/noopkat) 3396 | - [Website](http://noopkat.com/) 3397 | - [Newsletter](https://tinyletter.com/noopkat) 3398 | 3399 | [(top)](#table-of-contents) 3400 | 3401 | --- 3402 | ### Swizec Teller 3403 | #### What Swizec streams: 3404 | - JavaScript, React, D3 3405 | #### Streaming on: 3406 | - [Twitch](https://www.twitch.tv/swizec) 3407 | - [Youtube](https://www.youtube.com/user/TheSwizec) 3408 | #### Languages Spoken During Stream 3409 | - English 3410 | #### Links: 3411 | - [Twitter](https://twitter.com/swizec) 3412 | - [GitHub](https://github.com/Swizec) 3413 | - [Website](https://swizec.com/) 3414 | 3415 | [(top)](#table-of-contents) 3416 | 3417 | --- 3418 | ### Syanoks 3419 | #### What Syanoks streams: 3420 | - Operating System Development, C, Assembly, Shell, Python 3421 | #### Streaming on: 3422 | - [Twitch](https://www.twitch.tv/syanoks) 3423 | - [Blog](https://www.sceen.net/blog/) 3424 | 3425 | [(top)](#table-of-contents) 3426 | 3427 | --- 3428 | ### Tae'lur Alexis 3429 | #### What Tae'lur streams: 3430 | - JavaScript 3431 | #### Streaming on: 3432 | - [Twitch](https://www.twitch.tv/cyberbarbie) 3433 | #### Links: 3434 | - [Twitter](https://twitter.com/TaelurAlexis) 3435 | - [GitHub](https://github.com/cyberbarbie) 3436 | - [YouTube](https://www.youtube.com/taelur-alexis) 3437 | - [Dev.to](https://dev.to/taeluralexis) 3438 | 3439 | --- 3440 | ### Talk2MeGooseman (Erik Guzman) 3441 | #### What Talk2MeGooseman streams: 3442 | - JavaScript, Node.js, ReactJS, React Native, APIs, Web Development 3443 | #### Streaming on: 3444 | - [Twitch](https://www.twitch.tv/talk2megooseman) 3445 | #### Links: 3446 | - [Twitter](https://twitter.com/talk2megooseman) 3447 | - [GitHub](https://github.com/talk2megooseman) 3448 | - [Discord](https://discord.gg/j86Rmva) 3449 | 3450 | [(top)](#table-of-contents) 3451 | 3452 | --- 3453 | ### Tanya Janca 3454 | #### What Tanya streams: 3455 | - Web Security, Azure, Cloud Security 3456 | #### Streaming on: 3457 | - [Twitch](https://aka.ms/DevSlopTwitch) 3458 | #### Links: 3459 | - [Twitter](https://twitter.com/shehackspurple) 3460 | - [YouTube](https://aka.ms/DevSlopShow) 3461 | - [Website](https://devslop.co/) 3462 | 3463 | [(top)](#table-of-contents) 3464 | 3465 | --- 3466 | ### Ted M. Young 3467 | #### What Ted (JitterTed) streams: 3468 | - Java, Spring Boot, Spring MVC, Spring Data, Spring Cloud, TDD, JUnit, Web Development, Design Patterns, DDD, Hexagonal Architecture, IntelliJ IDEA 3469 | #### Streaming on: 3470 | - [Twitch](https://twitch.tv/jitterted) 3471 | #### Links: 3472 | - [Twitter](https://twitter.com/jitterted) 3473 | - [YouTube](https://JitterTed.TV) 3474 | - [Website](https://ted.dev) 3475 | - [Patreon](https://www.patreon.com/jitterted) 3476 | - [GitHub](https://www.github.com/tedyoung) 3477 | 3478 | [(top)](#table-of-contents) 3479 | 3480 | --- 3481 | ### teej_dev 3482 | He is Neovim Core contributor, Creator of Neovim telescope plugin and contribute to many others. Lately spending most of time in Rust. 3483 | #### What TJ DeVries (teej_dev) streams: 3484 | - Rust, Ruby, Neovim, Vim, Open Source, Memes 3485 | #### Streaming on: 3486 | - [Twitch](https://www.twitch.tv/teej_dv/) 3487 | #### Links: 3488 | - [Twitter](https://twitter.com/teej_dv) 3489 | - [YouTube](https://www.youtube.com/@teej_dv) 3490 | - [GitHub](https://github.com/tjdevries) 3491 | 3492 | [(top)](#table-of-contents) 3493 | 3494 | --- 3495 | ### tek256 3496 | #### What tek256 streams: 3497 | - Game Engine Development, C, Programming 3498 | #### Streaming on: 3499 | - [Twitch](https://twitch.tv/tek256) 3500 | #### Links: 3501 | - [Twitter](https://twitter.com/tek256) 3502 | - [YouTube](https://youtube.com/tek256) 3503 | - [Website](https://tek256.com) 3504 | - [GitHub](https://www.github.com/tek256) 3505 | 3506 | [(top)](#table-of-contents) 3507 | 3508 | --- 3509 | ### Theo 3510 | #### What Theo streams: 3511 | - JavaScript, TypeScript, Web Development 3512 | #### Streaming on: 3513 | - [Twitch](https://www.twitch.tv/theo) 3514 | #### Links: 3515 | - [YouTube](https://www.youtube.com/c/theobrowne1017) 3516 | - [Twitter](https://twitter.com/t3dotgg) 3517 | - [Discord](https://discord.com/invite/xHdCpcPHRE) 3518 | - [Website](https://t3.gg/) 3519 | 3520 | [(top)](#table-of-contents) 3521 | 3522 | --- 3523 | ### ThePrimeagen 3524 | #### What ThePrimeagen streams: 3525 | - Golang, JavaScript, ReactJS, Memes, Amazingness 3526 | #### Streaming on: 3527 | - [Twitch](https://www.twitch.tv/ThePrimeagen) 3528 | #### Links: 3529 | - [Twitter](https://twitter.com/ThePrimeagen) 3530 | - [GitHub](https://github.com/ThePrimeagen) 3531 | - [Insta](https://instagram.com/ThePrimeagen) 3532 | 3533 | [(top)](#table-of-contents) 3534 | 3535 | --- 3536 | ### Thomas Soerensen 3537 | #### What Thomas streams: 3538 | - Golang, PHP (Laravel), JavaScript 3539 | #### Streaming on: 3540 | - [Twitch](https://www.twitch.tv/thomasbs_) 3541 | #### Links: 3542 | - [Twitter](https://twitter.com/DOMAS_89) 3543 | - [GitHub](https://github.com/ThomasBS) 3544 | - [Website](https://www.thomasbs.com) 3545 | 3546 | [(top)](#table-of-contents) 3547 | 3548 | --- 3549 | ### Thorsten Lorenz 3550 | #### What Thorsten streams: 3551 | - Node.js, Module Development, Developer Tooling, Web Development, JavaScript 3552 | #### Streaming on: 3553 | - [Twitch](https://www.twitch.tv/thlorenz) 3554 | #### Links: 3555 | - [Twitter](https://twitter.com/thlorenz) 3556 | - [GitHub](https://github.com/thlorenz) 3557 | - [Website](http://thlorenz.com/) 3558 | - [Patreon](https://www.patreon.com/thlorenz) 3559 | 3560 | [(top)](#table-of-contents) 3561 | 3562 | --- 3563 | ### Tierney Cyren 3564 | #### What Tierney streams: 3565 | - Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects 3566 | #### Streaming on: 3567 | - [Twitch](https://www.twitch.tv/bitandbang) 3568 | #### Links: 3569 | - [Twitter](https://twitter.com/bitandbang) 3570 | - [GitHub](https://github.com/bnb) 3571 | - [Instagram](https://instagram.com/bitandbang) 3572 | - [Website](https://bnb.im/) 3573 | 3574 | [(top)](#table-of-contents) 3575 | 3576 | --- 3577 | ### Tim Ermilov 3578 | #### What Tim streams: 3579 | - OSS, building things with JavaScript, React 3580 | #### Streaming on: 3581 | - [Twitch](https://www.twitch.tv/yamalight) 3582 | - [YouTube](https://www.youtube.com/c/TimErmilov) 3583 | #### Links: 3584 | - [Twitter](https://twitter.com/yamalight) 3585 | - [Github](https://github.com/yamalight) 3586 | - [Medium](https://medium.com/@yamalight) 3587 | 3588 | [(top)](#table-of-contents) 3589 | 3590 | --- 3591 | ### Tim Yuen 3592 | #### What Tim streams: 3593 | - Game development, Godot, Rust, Music Composition 3594 | #### Streaming on: 3595 | - [Twitch](https://www.twitch.tv/team_youwin) 3596 | #### Links: 3597 | - [Twitter](https://twitter.com/fakefirefly) 3598 | - [Github](https://github.com/you-win) 3599 | - [Website](https://timothyyuen.io/) 3600 | 3601 | --- 3602 | ### Tracy and Matt 3603 | #### What Tracy and Matt stream: 3604 | - Node.js, Javascript, Python, Golang, Ruby, Twitch Extensions, Twitch Apps, Twitch Chat Bots, Game Mods, Machine Learning, Serverless, Open Source 3605 | #### Streaming on: 3606 | - [Twitch](https://www.twitch.tv/tracy_and_matt/) 3607 | #### Links: 3608 | - [Website](https://tracyandmatt.live/) 3609 | - [Discord](https://discord.com/invite/JBg9t7RDha) 3610 | - [YouTube](https://www.youtube.com/channel/UC3BuD4BpH05HFVP8u-1a6fQ) 3611 | - [Twitter](https://twitter.com/tracy_and_matt) 3612 | - [GitHub](https://github.com/tracy-and-matt) 3613 | - [Repl.it](https://replit.com/@TracyAndMatt) 3614 | - [Reddit](https://www.reddit.com/user/tracy_and_matt) 3615 | 3616 | [(top)](#table-of-contents) 3617 | 3618 | --- 3619 | ### Trezy 3620 | #### What Trezy streams: 3621 | - JavaScript, Node.js, React.js, Next.js, Game Development, Web Development 3622 | #### Streaming on: 3623 | - [Twitch](https://www.twitch.tv/TrezyCodes) 3624 | #### Links 3625 | - [Twitter](https://twitter.com/TrezyCodes) 3626 | - [Github](https://github.com/trezy) 3627 | - [Website](https://trezy.com) 3628 | - [Discord](https://discord.gg/UCJfEVN) 3629 | 3630 | --- 3631 | 3632 | ### TrshPuppy 3633 | #### What TrshPuppy streams: 3634 | - Security, JavaScript, Python, Go 3635 | #### Streaming on: 3636 | - [Twitch](https://www.twitch.tv/trshpuppy) 3637 | #### Links 3638 | - [YouTube](https://www.youtube.com/channel/UC8xHnIoLYHB9QszSK6ZWStw) 3639 | - [Github](https://github.com/TrshPuppy) 3640 | - [Twitter](https://twitter.com/trshpuppy) 3641 | - [Discord](https://discord.gg/b57UTQtXaa) 3642 | 3643 | [(top)](#table-of-contents) 3644 | 3645 | --- 3646 | ### Tsoding 3647 | #### What Tsoding streams: 3648 | - Game Development, Functional Programming, Programming Language Design, Artificial Intelligence, C, C++, Haskell, Rust, Scala 3649 | #### Streaming on: 3650 | - [Twitch](https://www.twitch.tv/tsoding) 3651 | #### Links: 3652 | - [Twitter](https://twitter.com/tsoding) 3653 | - [YouTube](https://www.youtube.com/tsoding) 3654 | - [GitHub](https://github.com/tsoding) 3655 | - [Patreon](https://www.patreon.com/tsoding) 3656 | - [Website](https://tsoding.github.io/) 3657 | 3658 | 3659 | [(top)](#table-of-contents) 3660 | 3661 | --- 3662 | ### TutorExilius 3663 | #### What TutorExilius streams: 3664 | - C++, Python, Java, JavaScript, PHP 3665 | #### Streaming on: 3666 | - [Twitch](https://www.twitch.tv/TutorExilius) 3667 | - [YouTube](https://www.youtube.com/c/TutorExilius/live) sometimes 3668 | #### Languages spoken on stream 3669 | - German 3670 | - English is understood, and English is used for variable names 3671 | #### Links: 3672 | - [Twitter](https://twitter.com/tutorexilius) 3673 | - [GitHub](https://github.com/tutorexilius) 3674 | - [Facebook](https://facebook.com/tutorexilius) 3675 | - [Instagram](https://www.instagram.com/tutorexilius) 3676 | - [Website](https://www.exilius.de) 3677 | - [Website](https://www.tutorexilius.de) 3678 | - [Website](https://www.cplusplus-aufgaben.de) German C++ Exercises 3679 | - [YouTube](https://www.youtube.com/user/TutorExilius) 3680 | 3681 | [(top)](#table-of-contents) 3682 | 3683 | --- 3684 | ### Tyler Leonhardt 3685 | #### What Tyler streams: 3686 | - PowerShell, C#, TypeScript, VSCode extension development, Maintaining OSS Projects 3687 | #### Streaming on: 3688 | - [Twitch](https://www.twitch.tv/tylerleonhardt) 3689 | #### Links: 3690 | - [Twitter](https://twitter.com/TylerLeonhardt) 3691 | - [GitHub](https://github.com/TylerLeonhardt) 3692 | - [Website](https://TylerLeonhardt.com/) 3693 | 3694 | [(top)](#table-of-contents) 3695 | 3696 | --- 3697 | ### Unspecified (Clark Sell) 3698 | #### What Unspecified streams: 3699 | - Svelte, React Node.js, GraphQL, Tailwind, Javascript, Web Development, Live Code Reviews 3700 | #### Streaming on: 3701 | - [Twitch](https://www.twitch.tv/unspecifiedsoftware) 3702 | #### Links: 3703 | - [Twitter](https://twitter.com/csell5) 3704 | - [GitHub](https://github.com/hellounspecified) 3705 | 3706 | [(top)](#table-of-contents) 3707 | 3708 | --- 3709 | ### Velopman 3710 | #### What Velopman streams: 3711 | - Game development, Godot 3712 | #### Languages Spoken During Stream 3713 | - English 3714 | #### Streaming on: 3715 | - [Twitch](https://www.twitch.tv/velopman) 3716 | #### Links: 3717 | - [Twitter](https://twitter.com/velopman) 3718 | - [GitHub](https://github.com/velopman) 3719 | - [YouTube](https://www.youtube.com/channel/UCxaLVTBMdTZBZsQYCK4MKEg) 3720 | 3721 | [(top)](#table-of-contents) 3722 | 3723 | --- 3724 | ### Vogue and Code (April Speight) 3725 | #### What April streams: 3726 | - Mixed Reality Toolkit, Mixed Reality, Virtual Reality, Augmented Reality, Basic programming concepts 3727 | #### Languages Spoken During Stream 3728 | - English 3729 | #### Streaming on: 3730 | - [Twitch](https://www.twitch.tv/vogueandcode) 3731 | #### Links: 3732 | - [Twitter](https://twitter.com/VogueandCode) 3733 | - [GitHub](http://github.com/aprilspeight) 3734 | - [Website](http://www.vogueandcode.com/) 3735 | 3736 | [(top)](#table-of-contents) 3737 | 3738 | --- 3739 | ### whitep4nth3r 3740 | #### What whitep4nth3r streams: 3741 | - JavaScript, TypeScript, HTML, CSS/Sass, React, Angular, Svelte, Next.js, NodeJS 3742 | #### Streaming on: 3743 | - [Twitch](https://www.twitch.tv/whitep4nth3r) 3744 | #### Languages Spoken During Stream 3745 | - English 3746 | #### Links: 3747 | - [GitHub](https://github.com/whitep4nth3r) 3748 | - [Twitter](https://twitter.com/whitep4nth3r) 3749 | - [Website](https://whitep4nth3r.com/) 3750 | 3751 | [(top)](#table-of-contents) 3752 | 3753 | --- 3754 | ### WindybeardGames 3755 | #### What Windy streams: 3756 | - ClickTeam Fusion, PhotoShop, Spine, Game Art 3757 | #### Languages Spoken During Stream 3758 | - English 3759 | - Wincy 3760 | #### Streaming on: 3761 | - [Twitch](https://www.twitch.tv/windybeardgames) 3762 | #### Links: 3763 | - [Discord](https://discord.gg/FKumdQY) 3764 | - [Patreon](https://www.patreon.com/Windybeardgames) 3765 | - [Twitter](https://twitter.com/WindybeardGames) 3766 | - [Website](http://windybeard.com/) 3767 | 3768 | [(top)](#table-of-contents) 3769 | 3770 | --- 3771 | ### Shawn Wildermuth 3772 | #### What Shawn streams: 3773 | - Vue, TailwindCSS, Web Development, ASP.NET Core: Using Visual Studio/Code 3774 | #### Languages Spoken During Stream 3775 | - English 3776 | #### Streaming on: 3777 | - [Twitch](https://www.twitch.tv/shawnwildermuth) 3778 | #### Links: 3779 | - [Twitter](https://twitter.com/shawnwildermuth) 3780 | - [Website](http://wildermuth.com/) 3781 | 3782 | [(top)](#table-of-contents) 3783 | 3784 | --- 3785 | ### Yosh 3786 | #### What Yosh streams: 3787 | - OSS maintenance, Tooling Development, JavaScript, Node.js, Choo 3788 | #### Streaming on: 3789 | - [Twitch](https://www.twitch.tv/yoshuawuyts) 3790 | #### Links: 3791 | - [Twitter](https://twitter.com/yoshuawuyts) 3792 | - [GitHub](https://github.com/yoshuawuyts) 3793 | 3794 | [(top)](#table-of-contents) 3795 | 3796 | --- 3797 | ### Zorchenhimer 3798 | #### What Zorchenhimer streams: 3799 | - 6502 NES Assembly, Golang 3800 | #### Streaming on: 3801 | - [Twitch](https://www.twitch.tv/zorchenhimer) 3802 | #### Links: 3803 | - [Twitter](https://twitter.com/Zorchenhimer) 3804 | - [GitHub](https://github.com/zorchenhimer) 3805 | - [Website](https://zorchenhimer.com/) 3806 | - [Youtube](https://www.youtube.com/c/Zorchenhimer) 3807 | 3808 | --- 3809 | --- 3810 | 3811 | ## Twitch 3812 | 3813 | 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. 3814 | 3815 | ### Teams 3816 | [Live Coders - https://www.twitch.tv/team/livecoders](https://www.twitch.tv/team/livecoders) 3817 | 3818 | ### Categories 3819 | [Programming](https://www.twitch.tv/directory/all/tags/a59f1e4e-257b-4bd0-90c7-189c3efbf917) 3820 | 3821 | [Game Development](https://www.twitch.tv/directory/all/tags/f588bd74-e496-4d11-9169-3597f38a5d25) 3822 | 3823 | [Mobile Development](https://www.twitch.tv/directory/all/tags/6e23d976-33ec-47e8-b22b-3727acd41862) 3824 | 3825 | [Software Development](https://www.twitch.tv/directory/all/tags/6f86127d-6051-4a38-94bb-f7b475dde109) 3826 | 3827 | [Web Development](https://www.twitch.tv/directory/all/tags/c23ce252-cf78-4b98-8c11-8769801aaf3a) 3828 | 3829 | [Science & Technology](https://www.twitch.tv/directory/game/Science%20%26%20Technology) 3830 | 3831 | --------------------------------------------------------------------------------