├── .travis.yml ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── LICENSE └── README.md /.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 | -------------------------------------------------------------------------------- /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](#adding-something-to-an-awesome-list) 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 | 26 | Suggestions for ammendments to these guidelines are always welcome - feel free to submit an issue or pull request. 27 | 28 | ## How to: Add a developer stream to awesome-developer-streams 29 | 30 | If you have something awesome to contribute to awesome-developer-streams list, this is how you can do it. 31 | 32 | You'll need to have a GitHub account - you can [register here](https://github.com/join)! 33 | 34 | 1. Access awesome-developer-streams's GitHub page [here](https://github.com/bnb/awesome-developer-streams) 35 | 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) 36 | 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) 37 | 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) 38 | 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) 39 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! 40 | 41 | ## Updating your Pull Request 42 | 43 | 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. 44 | 45 | [Here](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that. 46 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 27 | 28 | **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! ❤️ 29 | 30 | ## Table of Contents 31 | - [Suz Hinton](#suz-hinton) - **streaming:** IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript 32 | - [Feross Aboukhadijeh](#feross-aboukhadijeh) - **streaming:** JavaScript, Node.js, Frameworks, Developer Tooling, Web Development 33 | - [Thorsten Lorenz](#thorsten-lorenz) - **streaming:** Node.js, Module Development, Developer Tooling, Web Development, JavaScript 34 | - [Amorelandra](#amorelandra) - **streaming:** Twitch Extension Development, IRL, JavaScript 35 | - [Shirley Wu](#shirley-wu) - **streaming:** Data Visualisation (DataViz), JavaScript, React 36 | - [Sean Larkin](#sean-larkin) - **streaming:** Webpack, OSS, JavaScript, Gaming 37 | - [Kent C. Dodds](#kent-c-dodds) - **streaming:** JavaScript, React, Web Development, Open Source, Node.js 38 | - [Kyle Shevlin](#kyle-shevlin) - **streaming:** React, JavaScript, Functional Programming, Web Development 39 | - [Brian Clark](#brian-clark) - **streaming:** Node.js, JavaScript, IoT, Web Development, Swift 40 | - [Yosh](#yosh) - **streaming:** OSS maintenance, Tooling Development, JavaScript, Node.js, Choo 41 | - [Micah Elizabeth Scott](#micah-elizabeth-scott-scanlime) - **streaming:** Reverse Engineering, Rust, C++, Hardware 42 | - [Russell Hay](#russell-hay) - **streaming:** Rust, Functional Programming, Hardware, Generative Art 43 | - [Collin Henderson](#collin-henderson) - **streaming:** JavaScript, PHP, Laravel, Vue.js 44 | - [Tim Ermilov](#tim-ermilov) - **streaming:** OSS, building things with JavaScript, React 45 | - [Nicholas Brochu](#nicholas-brochu) - **streaming:** Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision 46 | - [Tierney Cyren](#tierney-cyren) - **streaming:** Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects 47 | - [Erik Guzman](#erik-guzman) - **streaming:** JavaScript, Node.js, ReactJS, React Native, APIs, Web Development 48 | - [Gary Kramlich](#gary-kramlich) - **streaming:** Pidgin Development, Convey Development, OSS Development, C, Golang, Python, JavaScript, Docker, Containers 49 | - [Thomas Soerensen](#thomas-soerensen) - **streaming:** Golang, PHP (Laravel), JavaScript 50 | - [Sallar Kaboli](#sallar-kaboli) - **streaming:** JavaScript, Node.js, Electron, React, OSS Projects, APIs 51 | - [Pavithra Kodmad](#pavithra-kodmad) - **streaming:** JavaScript, CSS, Open Source Stuff 52 | - [Mattias Petter Johansson](#mattias-petter-johansson) - **streaming:** JavaScript, Node.js, Programming in general 53 | - [HardlyDifficult](#hardlydifficult) - **streaming:** Game Development (Unity3D, C#), C# Programming, Cryptocurrency 54 | - [RadicalFishGames](#radicalfishgames) - **streaming:** Game Development (JavaScript, WebGL) (Game: CrossCode) 55 | - [Daniel Shiffman](#daniel-shiffman) - **streaming:** JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms 56 | - [Casey Muratori](#casey-muratori) - **streaming:** C, C++, Game Development, Algorithms 57 | - [Ferris](#ferris) - **streaming:** Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++ 58 | - [Jeff Fritz](#jeff-fritz) - **streaming:** C#, .NET, ASP.NET, OSS and Pair Programming 59 | - [Jessica Mak](#jessica-mak) - **streaming:** C++, OpenGL, Game Development 60 | - [Shinmera](#shinmera) - **streaming**: Game Development, Common Lisp 61 | - [Swizec Teller](#swizec-teller) - **streaming:** JavaScript, React, D3 62 | - [Sergio Cinos](#sergio-cinos) - **streaming:** JavaScript, React, Node.js, Full stack development 63 | - [Ragnar Thor](#ragnar-thor) - **streaming:** JavaScript, React, Web Development, Open Source, Node.js 64 | - [Alexander Simovic](#simalexan) - **streaming:** Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS 65 | - [Adam13531](#adam13531) - **streaming:** Node.js, JavaScript, React, PixiJS, Full Stack Development, Game Development 66 | - [Luke Gorrie](#luke-gorrie) - **streaming:** C, Lua, RaptorJIT, R, Nix, Network drivers 67 | - [Josh Hawkins](#josh-hawkins) - **streaming:** JavaScript, Node.js, Rust, Python, OSS Projects, Gaming 68 | - [DrunkDevs](#drunkdevs) - **streaming:** Game Development, Game Maker: Studio, Aseprite 69 | - [Syanoks](#syanoks) - **streaming:** Operating System Development, C, Assembly, Shell, Python 70 | - [Antonio Maiorano](#antonio-maiorano) - **streaming:** Emulator Development, C++ 71 | - [Brian McKenna](#brian-mckenna) - **streaming:** Haskell, Functional Programming 72 | - [Jack Mott](#jack-mott) - **streaming** Teaching Programming, Gamedev, Golang, SDL2, OpenGL 73 | - [Joe Bew](#joe-bew) - **streaming:** Practices of computer programming, Clean Code, TDD, Refactoring, Open Source projects 74 | - [Mike Conley](#mike-conley) - **streaming:** Firefox Development, JavaScript, C++, CSS, Rust 75 | - [Gwen Frey](#gwen-frey) - **streaming** Game Development, Unreal Blueprint, Animation 76 | - [Jonathan Blow](#jonathan-blow) - **streaming** Programming, Gamedev, Jai, C++, OpenGL 77 | - [Sébastien Rancoud](#sébastien-rancoud) - **streaming:** JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development 78 | - [Jen Tong](#jen-tong) - **streaming:** Python, JavaScript, NodeBots, Astronomy 79 | - [CaptainKraft](#captainkraft) - **streaming:** C, C++, Rust 80 | - [iDevelopThings](#idevelopthings) - **streaming** PHP, JavaScript, Node.js, Full stack development, Web Development 81 | - [DevChatter](#DevChatter) - **streaming:** C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming 82 | - [nmarulo](#nmarulo) - **streaming:** JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS 83 | - [Randall Hunt](#randall-hunt) - **streaming:** AWS, Web Development, Hardware Hacking, Python, Serverless, AI 84 | - [Keraf](#keraf) - **streaming** JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev 85 | - [btor](#btor) - **streaming** PHP (Symfony), Javascript, Java (Swing), Python ... Language: FRA,ENG 86 | - [KensoDev](#kensodev) - **streaming** Advanced Devops - Python, Terraform, React 87 | - [SirLynixVanFrietjes](#sir-lynix-van-frietjes) - **streaming** C++, Lua, Game Development (in french) 88 | - [Jochen Lillich](#jochen-lillich) - **streaming** Ruby, Chef, DevOps, Docker, Kontena 89 | 90 | ## Developers That Stream 91 | 92 | ### Suz Hinton 93 | #### What Suz Streams 94 | - IoT, Web Development, Hardware Hacking, 3D Printing, Node.js, JavaScript 95 | #### Streaming on: 96 | - [Twitch](https://www.twitch.tv/noopkat) 97 | #### Links: 98 | - [Twitter](https://twitter.com/noopkat) 99 | - [GitHub](https://github.com/noopkat) 100 | - [Website](http://noopkat.com/) 101 | - [Newsletter](https://tinyletter.com/noopkat) 102 | 103 | ### Feross Aboukhadijeh 104 | #### What Feross Streams 105 | - JavaScript, Node.js, Frameworks, Developer Tooling, Web Development 106 | #### Streaming on: 107 | - [Twitch](https://www.twitch.tv/ferossity) 108 | #### Links: 109 | - [Twitter](https://twitter.com/feross) 110 | - [GitHub](https://github.com/feross) 111 | - [Website](https://feross.org/) 112 | - [Patreon](https://www.patreon.com/feross) 113 | 114 | ### Thorsten Lorenz 115 | #### What Thorsten Streams 116 | - Node.js, Module Development, Developer Tooling, Web Development, JavaScript 117 | #### Streaming on: 118 | - [Twitch](https://www.twitch.tv/thlorenz) 119 | #### Links: 120 | - [Twitter](https://twitter.com/thlorenz) 121 | - [GitHub](https://github.com/thlorenz) 122 | - [Website](http://thlorenz.com/) 123 | - [Patreon](https://www.patreon.com/thlorenz) 124 | 125 | ### Amorelandra 126 | #### What Amorelandra Streams 127 | - Twitch Extension Development, IRL, JavaScript 128 | #### Streaming on: 129 | - [Twitch](https://www.twitch.tv/Amorelandra) 130 | #### Links: 131 | - [Twitter](https://twitter.com/Amorelandra) 132 | - [GitHub](https://github.com/Amorelandra) 133 | - [Blog](https://amorelandra.com/blog/) 134 | - [Website](https://amorelandra.com/) 135 | 136 | ### Shirley Wu 137 | #### What Shirley Streams 138 | - Data Visualisation (DataViz), JavaScript, React 139 | #### Streaming on: 140 | - [Twitch](https://www.twitch.tv/sxywu) 141 | #### Links: 142 | - [Twitter](https://twitter.com/sxywu) 143 | - [Medium](https://medium.com/@sxywu) 144 | - [YouTube](https://www.youtube.com/user/sxywu) 145 | - [#ShirleyChats](https://twitter.com/hashtag/ShirleyChats) 146 | - [Website](http://sxywu.com/) 147 | 148 | ### Sean Larkin 149 | #### What Sean Streams 150 | - Webpack, OSS, JavaScript, Gaming 151 | #### Streaming on: 152 | - [Twitch](https://www.twitch.tv/thelarkinn) 153 | #### Links: 154 | - [Twitter](https://twitter.com/TheLarkInn) 155 | - [GitHub](https://github.com/TheLarkInn) 156 | 157 | ### Kent C. Dodds 158 | #### What Kent Streams 159 | - JavaScript, React, Web Development, Open Source, Node.js 160 | #### Streaming on: 161 | - [Twitch](https://www.twitch.tv/kentcdodds) 162 | #### Links: 163 | - [Twitter](https://twitter.com/kentcdodds) 164 | - [GitHub](https://github.com/kentcdodds) 165 | - [Website](https://kentcdodds.com) 166 | - [Newsletter](http://kcd.im/news) 167 | - [Blog](https://blog.kentcdodds.com) 168 | - [YouTube](https://www.youtube.com/c/kentcdodds-vids) 169 | 170 | ### Kyle Shevlin 171 | #### What Kyle Streams 172 | - React, JavaScript, Functional Programming, Web Development 173 | #### Streaming on: 174 | - [Twitch](https://www.twitch.tv/kyleshevlin) 175 | #### Links: 176 | - [Twitter](https://twitter.com/kyleshevlin) 177 | - [GitHub](https://github.com/kyleshevlin) 178 | - [Website](https://kyleshevlin.com/) 179 | 180 | ### Brian Clark 181 | #### What Brian Streams 182 | - Node.js, JavaScript, IoT, Web Development, Swift 183 | #### Streaming on: 184 | - [Twitch](https://www.twitch.tv/clarkio) 185 | - [Mixer](https://mixer.com/clarkio) 186 | #### Links: 187 | - [Twitter](https://twitter.com/_clarkio) 188 | - [GitHub](https://github.com/clarkio) 189 | - [YouTube](https://www.youtube.com/channel/UCID02LhTNYYhWbok3zyggOw) 190 | - [Instagram](https://www.instagram.com/_clarkio/) 191 | - [Website](https://www.clarkio.com/) 192 | 193 | ### Yosh 194 | #### What Yosh Streams 195 | - OSS maintenance, Tooling Development, JavaScript, Node.js, Choo 196 | #### Streaming on: 197 | - [Twitch](https://www.twitch.tv/yoshuawuyts) 198 | #### Links: 199 | - [Twitter](https://twitter.com/yoshuawuyts) 200 | - [GitHub](https://github.com/yoshuawuyts) 201 | 202 | ### Micah Elizabeth Scott (scanlime) 203 | #### What Micah Streams 204 | - Reverse Engineering, Rust, C++, Hardware 205 | #### Streaming on: 206 | - [YouTube](https://www.youtube.com/user/micahjd) 207 | - [Twitch](https://twitch.tv/scanlime) 208 | #### Links: 209 | - [Twitter](https://twitter.com/scanlime) 210 | - [GitHub](https://github.com/scanlime) 211 | - [Website](http://scanlime.org) 212 | - [Patreon](https://www.patreon.com/scanlime) 213 | 214 | ### Russell Hay 215 | #### What Russell Streams 216 | - Rust, Functional Programming, Hardware, Generative Art 217 | #### Streaming on: 218 | - [Twitch](https://twitch.tv/stainlessio) 219 | #### Links: 220 | - [Twitter](https://twitter.com/pkstainless) 221 | - [GitHub](https://github.com/RussTheAerialist) 222 | - [Website](https://russellhay.com) 223 | - [Rust Blog](https://stainless.io) 224 | 225 | ### Collin Henderson 226 | #### What Collin Streams 227 | - JavaScript, PHP, Laravel, Vue.js 228 | #### Streaming on: 229 | - [Twitch](https://www.twitch.tv/syropian) 230 | #### Links: 231 | - [Twitter](https://twitter.com/syropian) 232 | - [GitHub](https://github.com/syropian) 233 | - [Website](https://syropia.net/) 234 | 235 | ### Tim Ermilov 236 | #### What Tim Streams 237 | - OSS, building things with JavaScript, React 238 | #### Streaming on: 239 | - [Twitch](https://www.twitch.tv/yamalight) 240 | - [YouTube](https://www.youtube.com/c/TimErmilov) 241 | #### Links: 242 | - [Twitter](https://twitter.com/yamalight) 243 | - [Github](https://github.com/yamalight) 244 | - [Medium](https://medium.com/@yamalight) 245 | 246 | ### Nicholas Brochu 247 | #### What Nicholas Streams 248 | - Python, Serpent.AI Framework Dev, Machine Learning, AI, Computer Vision 249 | #### Streaming on: 250 | - [Twitch](https://www.twitch.tv/serpent_ai) 251 | #### Links: 252 | - [Twitter](https://twitter.com/Serpent_AI) 253 | - [GitHub](https://github.com/nbrochu) 254 | - [Website](http://serpent.ai) + [Blog](http://blog.serpent.ai) 255 | - [YouTube](https://www.youtube.com/c/SerpentAI) 256 | - [Discord](https://discord.gg/9D5SuxH) 257 | - [Patreon](https://www.patreon.com/serpent_ai) 258 | 259 | ### Tierney Cyren 260 | #### What Tierney Streams 261 | - Node.js, Node.js Community Committee, JavaScript, Maintaining OSS Projects 262 | #### Streaming on: 263 | - [Twitch](https://www.twitch.tv/bitandbang) 264 | #### Links: 265 | - [Twitter](https://twitter.com/bitandbang) 266 | - [GitHub](https://github.com/bnb) 267 | - [Instagram](https://instagram.com/bitandbang) 268 | - [Website](https://bnb.im/) 269 | 270 | ### Erik Guzman 271 | #### What Erik (Talk2MeGoseman) Streams 272 | - JavaScript, Node.js, ReactJS, React Native, APIs, Web Development 273 | #### Streaming on: 274 | - [Twitch](https://www.twitch.tv/talk2megooseman) 275 | #### Links: 276 | - [Twitter](https://twitter.com/talk2megooseman) 277 | - [GitHub](https://github.com/talk2megooseman) 278 | - [Discord](https://discord.gg/j86Rmva) 279 | 280 | ### Gary Kramlich 281 | #### What Grim Streams 282 | - Pidgin Development, Convey Development, Open Source Development, C, Golang, Python, JavaScript, Docker, Containers 283 | #### Streaming on: 284 | - [Twitch](https://www.twitch.tv/rw_grim) 285 | #### Links: 286 | - [Twitter](https://twitter.com/rw_grim) 287 | - [BitBucket](https://bitbucket.org/rw_grim) 288 | - [GitHub](https://github.com/grimmy) 289 | - [Website](https://www.reaperworld.com) 290 | - [Blog](https://garykramlich.blogspot.com/) 291 | - [YouTube](https://www.youtube.com/garykramlich) 292 | - [Discord](https://discord.gg/gqWBRDW) 293 | - [Patreon](https://www.patreon.com/rw_grim) 294 | - [Pidgin](https://www.pidgin.im) 295 | - [Convey](https://bitbucket.org/rw_grim/convey) 296 | 297 | ### Thomas Soerensen 298 | #### What Thomas Streams 299 | - Golang, PHP (Laravel), JavaScript 300 | #### Streaming on: 301 | - [Twitch](https://www.twitch.tv/thomasbs_) 302 | #### Links: 303 | - [Twitter](https://twitter.com/DOMAS_89) 304 | - [GitHub](https://github.com/ThomasBS) 305 | - [Website](https://www.thomasbs.com) 306 | 307 | ### Sallar Kaboli 308 | #### What Sallar Streams 309 | - JavaScript, Node.js, Electron, React, OSS Projects, APIs 310 | #### Streaming on: 311 | - [Youtube](https://www.youtube.com/user/sallarkaboli) 312 | #### Languages Spoken During Stream 313 | - English 314 | - Persian (Farsi) 315 | #### Links: 316 | - [Twitter](https://twitter.com/sallar) 317 | - [GitHub](https://github.com/sallar) 318 | - [Website](https://sallar.me) 319 | 320 | ### Pavithra Kodmad 321 | #### What PK Streams 322 | - JavaScript, CSS, Open Source Stuff 323 | #### Streaming on: 324 | - [Twitch](https://www.twitch.tv/pavithrakodmad) 325 | #### Links: 326 | - [Website](http://pavithrakodmad.com) 327 | - [Twitter](https://twitter.com/PKodmad) 328 | - [GitHub](https://github.com/pksjce) 329 | 330 | ### Mattias Petter Johansson 331 | Also known as MPJ from Fun Fun Function 332 | #### What MPJ Streams 333 | - JavaScript, Node.js, Programming in general 334 | #### Streaming on: 335 | - [Youtube](https://youtube.com/funfunfunction) 336 | #### Languages Spoken During Stream 337 | - English 338 | #### Links: 339 | - [Twitter](https://twitter.com/mpjme) 340 | - [GitHub](https://github.com/mpj) 341 | - [GitHubGist](https://gist.github.com/mpj) 342 | - [Website](https://about.me/mpj) 343 | 344 | ### HardlyDifficult 345 | #### What HardlyDifficult Streams 346 | - Game Development (Unity3D, C#), C# Programming, Cryptocurrency 347 | #### Streaming on: 348 | - [Twitch](https://www.twitch.tv/hardlydifficult) 349 | #### Links: 350 | - [Twitter](http://twitter.com/HardlyDifficult) 351 | - [GitHub](https://github.com/hardlydifficult) 352 | - [Website](http://hardlydifficult.com/) 353 | - [Youtube](http://youtube.com/HardlyDifficult) 354 | 355 | ### RadicalFishGames 356 | #### What RadicalFishGames Streams 357 | - Game Development (JavaScript, WebGL) (Game: CrossCode) 358 | #### Streaming on: 359 | - [Twitch](https://www.twitch.tv/radicalfishgames) 360 | #### Links: 361 | - [Twitter](https://twitter.com/RadicalFishGame) 362 | - [Website](http://www.radicalfishgames.com/) 363 | - [Youtube](https://www.youtube.com/user/RadicalFishGames) 364 | 365 | ### Daniel Shiffman 366 | #### What Daniel Streams 367 | - JavaScript, Processing, P5.js, WebGL, Machine Learning, Algorithms 368 | #### Streaming on: 369 | - [Youtube](https://www.youtube.com/user/shiffman) 370 | #### Links: 371 | - [Twitter](https://twitter.com/shiffman) 372 | - [GitHub](https://github.com/shiffman) 373 | - [Website](http://shiffman.net/) 374 | 375 | ### Casey Muratori 376 | #### What Casey Streams 377 | - C, C++, Game Development, Algorithms 378 | #### Streaming on: 379 | - [Twitch](https://www.twitch.tv/handmade_hero) 380 | #### Links: 381 | - [YouTube](https://www.youtube.com/HandmadeHero) 382 | - [Twitter](https://twitter.com/cmuratori) 383 | - [Website](https://handmadehero.org/) 384 | 385 | ### Ferris 386 | #### What Ferris Streams 387 | - Emulator Development, Demoscene Tools, Hardware Hacking, Rust, C, C++ 388 | #### Streaming on: 389 | - [Twitch](https://www.twitch.tv/ferrisstreamsstuff) 390 | #### Links: 391 | - [Twitter](https://twitter.com/ferristweetsnow) 392 | - [GitHub](https://github.com/yupferris) 393 | - [Website](http://iamferris.com/) 394 | - [Youtube](https://www.youtube.com/channel/UC4mpLlHn0FOekNg05yCnkzQ) 395 | - [Pouet](http://www.pouet.net/user.php?who=16820) 396 | - [Patreon](https://www.patreon.com/ferrisstreamsstuff) 397 | 398 | ### Jeff Fritz 399 | #### What Jeff Streams 400 | - C#, .NET, ASP.NET, OSS and Pair Programming 401 | #### Streaming on: 402 | - [Twitch](https://twitch.tv/csharpfritz) 403 | - [Mixer](https://mixer.com/csharpfritz) 404 | #### Languages Spoken During Stream 405 | - English 406 | #### Links: 407 | - [Twitter](https://twitter.com/csharpfritz) 408 | - [GitHub](https://github.com/csharpfritz) 409 | - [Website](http://jeffreyfritz.com/) 410 | - [YouTube](https://www.youtube.com/channel/UCfvJirlbRTN-bU9sMWMb_ZQ) 411 | 412 | ### Jessica Mak 413 | #### What Jessica Streams 414 | - C++, OpenGL, Game Development 415 | #### Streaming on: 416 | - [Twitch](https://www.twitch.tv/jessicamak) 417 | #### Languages Spoken During Stream 418 | - English 419 | #### Links: 420 | - [Twitter](https://twitter.com/mango_lychee) 421 | - [Discord](https://discord.gg/AxR74yp) 422 | - [Donations](https://streamlabs.com/jessicamak) 423 | 424 | ### Shinmera 425 | #### What Shinmera Streams 426 | - Game Development, Common Lisp, Lisp projects demos 427 | #### Streaming On: 428 | - [Twitch](http://twitch.tv/Shinmera) 429 | - [YouTube](https://www.youtube.com/playlist?list=PLkDl6Irujx9MtJPRRP5KBH40SGCenztPW) 430 | #### Links: 431 | - [Github](https://github.com/Shinmera/) 432 | - [Website](http://shinmera.com/) 433 | 434 | ### Swizec Teller 435 | #### What Swizec Streams 436 | - JavaScript, React, D3 437 | #### Streaming on: 438 | - [Twitch](https://www.twitch.tv/swizec) 439 | - [Youtube](https://www.youtube.com/user/TheSwizec) 440 | #### Languages Spoken During Stream 441 | - English 442 | #### Links: 443 | - [Twitter](https://twitter.com/swizec) 444 | - [GitHub](https://github.com/Swizec) 445 | - [Website](https://swizec.com/) 446 | 447 | ### Sergio Cinos 448 | #### What Sergio Cinos Streams 449 | - Node.js, React, MobX, Docker, DevOps, Full Stack Development 450 | #### Streaming on: 451 | - [Twitch](https://www.twitch.tv/scinos) 452 | #### Languages Spoken During Stream 453 | - Spanish 454 | #### Links: 455 | - [Twitter](https://twitter.com/scinos) 456 | - [GitHub](https://github.com/scinos/) 457 | - [Website](https://www.youtube.com/channel/UCWWgBvd400EdnUF791ZjSeg) 458 | 459 | ### Ragnar Thor 460 | #### What Ragnar Thor Streams 461 | - JavaScript, React, Web Development, Open Source, Node.js 462 | #### Streaming on: 463 | - [Twitch](https://www.twitch.tv/rthor) 464 | #### Links: 465 | - [Twitter](https://twitter.com/rthor) 466 | - [GitHub](https://github.com/rthor) 467 | 468 | ### Alexander Simovic 469 | #### What Alex Streams 470 | - Serverless, Node.js, JavaScript, Claudia.js, Chat bots, Web Development, OSS 471 | #### Streaming on: 472 | - [Twitch](https://www.twitch.tv/simalexan) 473 | #### Links: 474 | - [Twitter](https://twitter.com/simalexan) 475 | - [GitHub](https://github.com/simalexan) 476 | - [Website](https://effortless-serverless.com) 477 | - [Medium](https://medium.com/@simalexan) 478 | 479 | ### Adam13531 480 | #### What Adam Streams 481 | - Node.js, JavaScript, React, PixiJS, Full Stack Development, Game Development 482 | #### Streaming on: 483 | - [Twitch](https://www.twitch.tv/adam13531) 484 | #### Links: 485 | - [Discord](https://discord.gg/botland) 486 | - [Twitter](https://twitter.com/Xtonomous) 487 | - [YouTube](https://www.youtube.com/channel/UCJFxRNHar-c_lKYxFMIPg_g) 488 | - [Website](https://bot.land) 489 | - [Blog](https://blog.bot.land) 490 | 491 | ### Luke Gorrie 492 | #### What Luke Streams 493 | - C, Lua, RaptorJIT, R, Nix, Network drivers 494 | #### Streaming on: 495 | - [YouTube](https://www.youtube.com/channel/UC-ATWoBhU7ae5w7s5Rc0sSA/) 496 | #### Links: 497 | - [Twitter](https://twitter.com/lukego) 498 | - [GitHub](https://github.com/lukego) 499 | - [Website](http://www.lukego.com/) 500 | 501 | ### Josh Hawkins 502 | #### What Hawkins Streams 503 | - JavaScript, Node.js, Rust, Python, OSS Projects, Gaming 504 | #### Streaming on: 505 | - [Twitch](https://twitch.tv/hawkinjs) 506 | #### Links: 507 | - [Twitter](https://twitter.com/hawkinjs) 508 | - [GitHub](https://github.com/hawkins) 509 | - [Website](https://hawkins.is) 510 | 511 | ### Antonio Maiorano 512 | #### What Antonio Streams 513 | - Emulator Development, C++ 514 | #### Streaming on: 515 | - [Twitch](https://www.twitch.tv/daroou2) 516 | #### Links: 517 | - [Twitter](https://twitter.com/antoniomaiorano) 518 | - [GitHub](https://github.com/amaiorano) 519 | - [YouTube](https://www.youtube.com/channel/UCvGInSOEQnf2ms4n4Q9dXdQ) 520 | - [LinkedIn](https://www.linkedin.com/in/amaiorano/) 521 | 522 | ### DrunkDevs 523 | #### What DrunkDevs Streams 524 | - Game Development, Game Maker: Studio, Aseprite 525 | #### Streaming on: 526 | - [Twitch](https://www.twitch.tv/drunkdevs) 527 | #### Links: 528 | - [Twitter](https://twitter.com/drunkdevs) 529 | - [Game Jolt](https://gamejolt.com/@Ink/games) 530 | - [Facebook](www.facebook.com/DrunkDevs) 531 | - [Website](http://www.drunkdevs.com/) 532 | 533 | ### Syanoks 534 | #### What Syanoks Streams 535 | - Operating System Development, C, Assembly, Shell, Python 536 | #### Streaming on: 537 | - [Twitch](https://www.twitch.tv/syanoks) 538 | - [Blog](https://www.sceen.net/blog/) 539 | 540 | ### Brian McKenna 541 | #### What Brian Streams 542 | - Haskell, Functional Programming 543 | #### Streaming on: 544 | - [Twitch](https://www.twitch.tv/puffnfresh) 545 | #### Links: 546 | - [Twitter](https://twitter.com/puffnfresh) 547 | - [GitHub](https://github.com/puffnfresh) 548 | - [Website](https://brianmckenna.org) 549 | 550 | ### Jack Mott 551 | #### What Jack Streams 552 | - Teaching programming basics, data structures, algorithms, fun gamedev projects, Golang, SDL2, OpenGL 553 | #### Streaming on: 554 | - [Twitch](https://www.twitch.tv/jackmott42) 555 | - [Website](https://gameswithgo.org/) 556 | 557 | ### Joe Bew 558 | #### What Joe Streams 559 | - Test-Driven Development, Clean Code, Refactoring, Open Source projects 560 | #### Streaming on: 561 | - [Twitch](https://www.twitch.tv/joebew42) 562 | #### Links: 563 | - [Twitter](https://twitter.com/joebew42) 564 | - [GitHub](https://github.com/joebew42) 565 | - [Website](https://joebew42.github.io/twitch/) 566 | 567 | ### Mike Conley 568 | #### What Mike Streams 569 | - Firefox Development, JavaScript, C++, CSS, Rust 570 | #### Streaming on: 571 | - [Twitch](https://www.twitch.tv/mikeconley_dot_ca) 572 | - [Facebook](https://www.facebook.com/TheJoyOfCoding1/) 573 | - [YouTube](https://www.youtube.com/channel/UCTDXvmarLFnox4AO0w2NuiQ) 574 | - [Air Mozilla](https://air.mozilla.org/channels/livehacking/) 575 | #### Links: 576 | - [Twitter](http://twitter.com/mike_conley) 577 | - [GitHub](http://github.com/mikeconley/) 578 | - [YouTube](https://www.youtube.com/channel/UCTDXvmarLFnox4AO0w2NuiQ) 579 | - [Website](https://www.mikeconley.ca/blog) 580 | 581 | ### Gwen Frey 582 | #### What Gwen Streams 583 | - Game Development, Unreal Blueprint, Animation 584 | #### Streaming on: 585 | - [Twitch](https://www.twitch.tv/diregoldfish) 586 | #### Links: 587 | - [Twitter](https://twitter.com/diregoldfish) 588 | 589 | ### Jonathan Blow 590 | #### What Jonathan Blow Streams 591 | - Game Development, Language Developement, Jai, C++, OpenGL 592 | #### Streaming on: 593 | - [Twitch](https://www.twitch.tv/naysayer88) 594 | #### Links: 595 | - [Youtube](https://www.youtube.com/channel/UCCuoqzrsHlwv1YyPKLuMDUQ) 596 | - [Twitter](https://twitter.com/Jonathan_Blow) 597 | - [Google+](https://plus.google.com/u/0/102153353283805950802) 598 | 599 | ### Sébastien Rancoud 600 | #### What Sébastien Streams 601 | - JavaScript, Node.js, PHP, Unreal Engine, Unity, APIs, Web Development 602 | #### Streaming on: 603 | - [Twitch](https://www.twitch.tv/megadamage) 604 | #### Languages Spoken During Stream 605 | - French 606 | - English 607 | #### Links: 608 | - [Twitter](https://twitter.com/rancoud) 609 | - [GitHub](https://github.com/rancoud) 610 | 611 | ### Jen Tong 612 | #### What Jen Streams 613 | - Python, JavaScript, NodeBots, Astronomy 614 | #### Streaming on: 615 | - [Twitch](https://www.twitch.tv/MimmingCodes) 616 | #### Links: 617 | - [Twitter](https://twitter.com/MimmingCodes) 618 | - [GitHub](https://github.com/mimming) 619 | - [YouTube](https://www.youtube.com/c/mimming) 620 | - [Website](https://mimming.com/) 621 | 622 | ### CaptainKraft 623 | #### What CaptainKraft Streams 624 | - C, C++, Rust 625 | #### Streaming on: 626 | - [Twitch](https://www.twitch.tv/captainkraft) 627 | 628 | ### iDevelopThings 629 | #### What iDevelopThings Streams 630 | - PHP, JavaScript, Node.js, Full stack development, Web Development 631 | #### Streaming on: 632 | - [Twitch](https://www.twitch.tv/idevelopthings) 633 | - [YouTube](https://youtube.com/idevelopthings) 634 | 635 | ### DevChatter 636 | #### What DevChatter Streams 637 | - C#, .NET, .NET Core, ASP.NET, ASP.NET Core, Pair Programming 638 | #### Streaming on: 639 | - [Twitch](https://twitch.tv/devchatter) 640 | #### Languages Spoken During Stream 641 | - English 642 | #### Links: 643 | - [Twitter](https://twitter.com/DevChatter_) 644 | - [GitHub](https://github.com/DevChatter) 645 | - [YouTube](https://www.youtube.com/channel/UCA8TsqMrOdFBv66iIuU6efA) 646 | 647 | ### nmarulo 648 | #### What nmarulo Streams 649 | - JAVA, PHP, C#, JavaScript, Web development, MySQL, Bootstrap CSS 650 | #### Streaming on: 651 | - [Twitch](https://www.twitch.tv/nmarulo) 652 | #### Links: 653 | - [GitHub](https://github.com/nmarulo) 654 | - [Twitter](https://twitter.com/nmarulo) 655 | - [Website](http://softn.red) 656 | 657 | ### Randall Hunt 658 | #### What Randall Streams 659 | AWS, Web Development, Python, Serverless, AI 660 | #### Streaming on: 661 | - [Twitch (AWS)](https://www.twitch.tv/aws) 662 | - [Twitch (Personal)](https://www.twitch.tv/RandallAtAmazon) 663 | #### Links: 664 | - [Twitter](https://twitter.com/jrhunt) 665 | - [GitHub](https://github.com/ranman) 666 | - [YouTube](https://www.youtube.com/channel/UC-yKovfbYEWyD_pXh9n7nHA) 667 | 668 | ### Keraf 669 | #### What Keraf Streams 670 | - JavaScript, C#, Node.js, .NET Core, React, Web Development, Browser Extension Dev 671 | #### Streaming on: 672 | - [Twitch](https://www.twitch.tv/iamkeraf) 673 | #### Links: 674 | - [Twitter](https://twitter.com/iamkeraf) 675 | - [GitHub](https://github.com/keraf) 676 | - [Website](https://ker.af/) 677 | 678 | ### Btor 679 | #### What Btor Streams 680 | - French streamer who streams PHP (Symfony 2/3/4), Javascript, Java (Twitch Bot in Swing), Python etc. 681 | #### Streaming on: 682 | - [Twitch](https://www.twitch.tv/bt0r) 683 | #### Links: 684 | - [Twitter](https://twitter.com/biiitor) 685 | - [GitHub](https://github.com/bt0r) 686 | - [Website](http://btor.fr/) 687 | - [Discord](https://discord.gg/NDpZXN5) 688 | 689 | ### KensoDev 690 | #### What KensoDev Streams 691 | - Advanced Devops - Python, Terraform, React 692 | #### Streaming on: 693 | - [Twitch](https://www.twitch.tv/kensodev) 694 | - [YouTube](https://www.youtube.com/channel/UCuFT6CtDnOGvcn9WdAvBusA) 695 | #### Links: 696 | - [Twitter](https://twitter.com/KensoDev) 697 | - [GitHub](https://github.com/KensoDev) 698 | 699 | ### Sir Lynix Van Frietjes 700 | #### What Sir Lynix van Friejtes Streams 701 | - C++, Lua, Game Development 702 | #### Streaming on: 703 | - [Twitch](https://www.twitch.tv/sirlynixvanfrietjes) 704 | #### Languages Spoken During Stream 705 | - French 706 | - English (only when asked) 707 | #### Links: 708 | - [Discord](https://discord.gg/zcWp9sC) 709 | - [GitHub](https://github.com/DrLynix) 710 | - [Website](https://sirlynixvanfrietjes.be) 711 | 712 | ### Jochen Lillich 713 | #### What Jochen Lillich streams 714 | - DevOps - Chef, Docker, Kontena 715 | - Ruby programming 716 | #### Streaming on: 717 | - [Twitch](https://www.twitch.tv/dev0ps) 718 | #### Languages Spoken During Stream 719 | - English 720 | #### Links: 721 | - [Twitter](https://www.twitter.com/geewiz) 722 | - [Github](https://github.com/geewiz) 723 | - [Website](http://jochen.lillich.co) 724 | --------------------------------------------------------------------------------