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