├── .github └── workflows │ └── update_algolia.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── algolia.py ├── docs ├── index.html ├── main.js ├── preview.png └── style.css ├── projects.csv └── scripts ├── check_dead_links.py ├── check_duplicated.py ├── create_filter.py └── scrape_arduino.py /.github/workflows/update_algolia.yml: -------------------------------------------------------------------------------- 1 | name: Update Algolia 2 | on: 3 | push: 4 | branches: 5 | - main 6 | jobs: 7 | update-algolia: 8 | name: Check for projects.csv updates and add records to Algolia 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Checkout 12 | uses: actions/checkout@v2 13 | 14 | - name: Set up Python 15 | uses: actions/setup-python@v2 16 | with: 17 | python-version: '3.8' 18 | 19 | - name: Install dependencies 20 | run: python -m pip install --upgrade pip algoliasearch 21 | 22 | - name: Run algolia.py 23 | run: python algolia.py 24 | env: 25 | KEY: ${{ secrets.KEY }} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | **/__pycache__ 3 | config.py -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution guidelines 2 | 3 | 4 | You can fork and edit the CSV file by click here: 5 | https://github.com/aquadzn/learn-x-by-doing-y/edit/main/projects.csv 6 | 7 | 8 | Before making a pull request, please make sure of the following: 9 | 10 | * The project you want to add does not already exist. 11 | * The project to be added is not paid content. 12 | * The format when adding a row to the CSV is the following: `title;url;main_language;technologies` (e.g. `Learn X by doing Y;https://somecontent.com;Javascript;Javascript, React, GraphQL`) 13 | * You can only put one language in `main_language` column but the language can also be in `technologies` 14 | * The added rows are at the end of the file. 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 William 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Learn X by doing Y 2 | 3 | 4 | ## 🛠️ Learn a technology X by doing a project Y 5 | 6 | ![img](docs/preview.png) 7 | 8 | #### [Website](https://aquadzn.github.io/learn-x-by-doing-y) 9 | 10 | 11 | You can contribute by adding projects to the CSV file. See [CONTRIBUTING.md](CONTRIBUTING.md). 12 | 13 | 14 | Thanks to 15 | * [tuvtran/project-based-learning](https://github.com/tuvtran/project-based-learning) 16 | * [Xtremilicious/projectlearn-project-based-learning](https://github.com/Xtremilicious/projectlearn-project-based-learning) 17 | * [rby90/Project-Based-Tutorials-in-C](https://github.com/rby90/Project-Based-Tutorials-in-C) 18 | * [danistefanovic/build-your-own-x](https://github.com/danistefanovic/build-your-own-x) 19 | * [AlgoryL/Projects-from-Scratch](https://github.com/AlgoryL/Projects-from-Scratch) 20 | for their data. -------------------------------------------------------------------------------- /algolia.py: -------------------------------------------------------------------------------- 1 | import os 2 | import csv 3 | 4 | from algoliasearch.search_client import SearchClient 5 | 6 | 7 | client = SearchClient.create("08KMSERF1B", str(os.environ.get("KEY"))) 8 | index = client.init_index("Project") 9 | 10 | 11 | def add_records(filename: str): 12 | 13 | with open(filename, newline="") as f: 14 | csv_r = list(csv.DictReader(f, delimiter=";")) 15 | len_idx = index.search("")["nbHits"] 16 | 17 | if len(csv_r) > len_idx: 18 | index.save_objects( 19 | csv_r[len_idx:], {"autoGenerateObjectIDIfNotExist": "true"} 20 | ) 21 | print(f"{len(csv_r[len_idx:])} new records added.") 22 | return 23 | 24 | print("Nothing new.") 25 | 26 | 27 | if __name__ == "__main__": 28 | add_records("projects.csv") 29 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Learn X by doing Y - A project-based learning search engine 9 | 10 | 12 | 13 | 14 | 15 | 16 | 18 | 20 | 21 | 22 | 23 | 24 | 26 | 28 | 30 | 31 | 33 | 34 | 37 | 38 | 40 | 42 | 43 | 44 | 45 |
46 |
47 |
48 | LEARNXBYDOINGY 50 |
51 |
52 | 57 | 58 |

59 | Project Based Learning is a teaching method in which students gain knowledge and skills 60 | by working for an extended period of time to investigate 61 | and respond to an authentic, engaging, and complex question, problem, or challenge. 62 |

63 |
64 |
65 | 72 | 73 | 74 |
75 | 76 |
77 | 78 | 79 |
80 |
82 |
83 |
84 |
85 |
86 |
87 | 88 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /docs/main.js: -------------------------------------------------------------------------------- 1 | const searchClient = algoliasearch('08KMSERF1B', '96b7ec122afe6711386467472aaf7a44'); 2 | 3 | const search = instantsearch({ 4 | indexName: 'Project', 5 | routing: true, 6 | searchClient, 7 | }); 8 | 9 | const renderHits = (renderOptions, isFirstRender) => { 10 | const { 11 | hits, 12 | widgetParams 13 | } = renderOptions; 14 | 15 | // Handle empty results 16 | widgetParams.container.innerHTML = 17 | hits.length < 1 18 | ? `

Sorry, no results found!

` 19 | : ` 20 | ${hits 21 | .map( 22 | item => 23 | ` 24 | 25 |

26 | ${instantsearch.highlight({ attribute: 'title', hit: item })} 27 |

28 |
29 | ${instantsearch.highlight({ attribute: 'technologies', hit: item })} 30 |
31 |
32 | ` 33 | ) 34 | .join('')} 35 | `; 36 | }; 37 | 38 | const customHits = instantsearch.connectors.connectHits(renderHits); 39 | 40 | // Create a render function 41 | const renderSearchBox = (renderOptions, isFirstRender) => { 42 | const { 43 | query, 44 | refine, 45 | clear, 46 | isSearchStalled, 47 | widgetParams 48 | } = renderOptions; 49 | 50 | if (isFirstRender) { 51 | const input = document.createElement('input'); 52 | input.classList.add( 53 | 'rounded-md', 54 | 'shadow-lg', 55 | 'w-full', 56 | 'py-3', 57 | 'px-5', 58 | 'text-gray-400', 59 | 'bg-gray-700', 60 | 'placeholder-white', 61 | 'placeholder-opacity-40', 62 | 'focus:outline-none', 63 | 'focus:ring-4', 64 | 'focus:ring-gray-400', 65 | 'focus:ring-opacity-70' 66 | ); 67 | input.placeholder = '🔎 Python website...'; 68 | 69 | const loadingIndicator = document.createElement('span'); 70 | loadingIndicator.textContent = 'Loading...'; 71 | 72 | input.addEventListener('input', event => { 73 | refine(event.target.value); 74 | }); 75 | 76 | widgetParams.container.appendChild(input); 77 | widgetParams.container.appendChild(loadingIndicator); 78 | } 79 | 80 | widgetParams.container.querySelector('input').value = query; 81 | widgetParams.container.querySelector('span').hidden = !isSearchStalled; 82 | }; 83 | 84 | // create custom widget 85 | const customSearchBox = instantsearch.connectors.connectSearchBox( 86 | renderSearchBox 87 | ); 88 | 89 | // Create the render function 90 | const renderPagination = (renderOptions, isFirstRender) => { 91 | const { 92 | pages, 93 | currentRefinement, 94 | nbPages, 95 | isFirstPage, 96 | isLastPage, 97 | refine, 98 | createURL, 99 | } = renderOptions; 100 | 101 | const container = document.querySelector('#pagination'); 102 | 103 | container.innerHTML = ` 104 | 167 | `; 168 | 169 | [...container.querySelectorAll('a')].forEach(element => { 170 | element.addEventListener('click', event => { 171 | event.preventDefault(); 172 | refine(event.currentTarget.dataset.value); 173 | }); 174 | }); 175 | }; 176 | 177 | // Create the custom widget 178 | const customPagination = instantsearch.connectors.connectPagination( 179 | renderPagination 180 | ); 181 | 182 | // Create the render function 183 | const renderMenuSelect = (renderOptions, isFirstRender) => { 184 | const { items, canRefine, refine, widgetParams } = renderOptions; 185 | 186 | if (isFirstRender) { 187 | const select = document.createElement('select'); 188 | select.classList.add('rounded-md', 189 | 'shadow-lg', 190 | 'cursor-pointer', 191 | 'w-full', 192 | 'py-3', 193 | 'px-5', 194 | 'text-purple-500', 195 | 'text-center', 196 | 'bg-white', 197 | 'hover:text-purple-600', 198 | 'focus:outline-none', 199 | 'focus:ring-4', 200 | 'focus:ring-purple-500', 201 | 'focus:ring-opacity-70' 202 | ); 203 | 204 | select.addEventListener('change', event => { 205 | refine(event.target.value); 206 | }); 207 | 208 | widgetParams.container.appendChild(select); 209 | } 210 | 211 | const select = widgetParams.container.querySelector('select'); 212 | 213 | select.disabled = !canRefine; 214 | select.innerHTML = ` 215 | 216 | ${items 217 | .map( 218 | item => 219 | `` 225 | ) 226 | .join('')} 227 | `; 228 | }; 229 | 230 | // Create the custom widget 231 | const customMenuSelect = instantsearch.connectors.connectMenu(renderMenuSelect); 232 | 233 | 234 | search.addWidgets([ 235 | customSearchBox({ 236 | container: document.querySelector('#searchbox'), 237 | }), 238 | 239 | customHits({ 240 | container: document.querySelector('#hits'), 241 | }), 242 | 243 | customPagination({ 244 | container: document.querySelector('#pagination'), 245 | }), 246 | 247 | customMenuSelect({ 248 | container: document.querySelector('#menu-select'), 249 | attribute: 'main_language', 250 | limit: 25, 251 | }), 252 | 253 | instantsearch.widgets.configure({ 254 | hitsPerPage: 12 255 | }), 256 | 257 | ]); 258 | 259 | search.start(); -------------------------------------------------------------------------------- /docs/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquadzn/learn-x-by-doing-y/5de687fd62a8a3f3254d6dd583a3561c4d75ab11/docs/preview.png -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- 1 | h1, h2, h3, h4 { 2 | font-family: 'Rubik', sans-serif; 3 | } 4 | 5 | body, #title { 6 | font-family: 'Karla', sans-serif; 7 | } 8 | 9 | mark { 10 | background-color: #FDE68A; 11 | } 12 | 13 | #header { 14 | text-shadow: 0 0 1px #fff, 0 0 10px hsla(0, 0%, 100%, 0.20), 0 0 20px hsla(0, 0%, 100%, 0.2), 0 0 40px hsla(0, 0%, 100%, 0.15), 0 0 80px hsla(0, 0%, 100%, 0.1), 0 60px 30px rgba(0, 0, 0, 0.8); 15 | } -------------------------------------------------------------------------------- /projects.csv: -------------------------------------------------------------------------------- 1 | title;url;main_language;technologies 2 | Build an Interpreter;http://www.craftinginterpreters.com/;C/C++;C/C++ 3 | Memory Allocators 101 - Write a simple memory allocator;https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory;C/C++;C/C++ 4 | Write a Shell in C;https://brennan.io/2015/01/16/write-a-shell-in-c/;C/C++;C/C++ 5 | Write a FUSE Filesystem;https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/;C/C++;C/C++ 6 | Build Your Own Text Editor;http://viewsourcecode.org/snaptoken/kilo/;C/C++;C/C++ 7 | Build Your Own Lisp;http://www.buildyourownlisp.com/;C/C++;C/C++ 8 | How to Program an NES Game in C;https://nesdoug.com/;C/C++;C/C++ 9 | Write an OS from scratch;https://github.com/tuhdo/os01;C/C++;C/C++ 10 | How to create an OS from scratch ;https://github.com/cfenollosa/os-tutorial;C/C++;C/C++ 11 | Building a CHIP-8 Emulator;https://austinmorlan.com/posts/chip8_emulator/;C/C++;C/C++ 12 | Beginning Game Programming with C++ and SDL;http://lazyfoo.net/tutorials/SDL/;C/C++;C/C++ 13 | Implementing a Key-Value Store;http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/;C/C++;C/C++ 14 | Tiny Renderer or how OpenGL works: software rendering in 500 lines of code;https://github.com/ssloy/tinyrenderer/wiki;C/C++;C/C++ 15 | Understandable RayTracing in 256 lines of bare C++;https://github.com/ssloy/tinyraytracer/wiki;C/C++;C/C++ 16 | KABOOM! in 180 lines of bare C++;https://github.com/ssloy/tinykaboom/wiki;C/C++;C/C++ 17 | 486 lines of C++: old-school FPS in a weekend;https://github.com/ssloy/tinyraycaster/wiki;C/C++;C/C++ 18 | Writing a minimal x86-64 JIT compiler in C++;https://solarianprogrammer.com/2018/01/10/writing-minimal-x86-64-jit-compiler-cpp/;C/C++;C/C++ 19 | Build a Live Code-reloader Library for C++;http://howistart.org/posts/cpp/1/index.html;C/C++;C/C++ 20 | Write a hash table in C;https://github.com/jamesroutley/write-a-hash-table;C/C++;C/C++ 21 | Let's Build a Simple Database;https://cstack.github.io/db_tutorial/;C/C++;C/C++ 22 | Let's Write a Kernel;http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel;C/C++;C/C++ 23 | Write a Bootloader in C;http://3zanders.co.uk/2017/10/13/writing-a-bootloader/;C/C++;C/C++ 24 | Linux Container in 500 Lines of Code;https://blog.lizzie.io/linux-containers-in-500-loc.html;C/C++;C/C++ 25 | Write Your Own Virtual Machine;https://justinmeiners.github.io/lc3-vm/;C/C++;C/C++ 26 | Learning KVM - Implement Your Own Linux Kernel;https://david942j.blogspot.com/2018/10/note-learning-kvm-implement-your-own.html;C/C++;C/C++ 27 | Write a C compiler;https://norasandler.com/2017/11/29/Write-a-Compiler.html;C/C++;C/C++ 28 | Implementing a Language with LLVM;https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm;C/C++;C/C++ 29 | Meta Crush Saga: a C++17 compile-time game;https://jguegant.github.io//jguegant.github.io/blogs/tech/meta-crush-saga.html;C/C++;C/C++ 30 | High-Performance Matrix Multiplication;https://gist.github.com/nadavrot/5b35d44e8ba3dd718e595e40184d03f0;C/C++;C/C++ 31 | Space Invaders from Scratch;http://nicktasios.nl/posts/space-invaders-from-scratch-part-1.html;C/C++;C/C++ 32 | Tetris Tutorial in C++ Platform Independent;http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/;C/C++;C/C++ 33 | Writing a Linux Debugger;https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/;C/C++;C/C++ 34 | Learn C# By Building a Simple RPG Game;http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/;C#;C# 35 | Create a Rogue-like game in C#;https://roguesharp.wordpress.com/;C#;C# 36 | Create a Blank App with C# and Xamarin;https://www.intertech.com/Blog/xamarin-tutorial-part-1-create-a-blank-app/;C#;C# 37 | Build iOS Photo Library App with Xamarin and Visual Studio;https://www.raywenderlich.com/134049/building-ios-apps-with-xamarin-and-visual-studio;C#;C# 38 | Building the CoreWiki;https://www.youtube.com/playlist?list=PLVMqA0_8O85yC78I4Xj7z48ES48IQBa7p;C#;C# 39 | Build a Twitter Bot with Clojure;http://howistart.org/posts/clojure/1/index.html;Clojure;Clojure 40 | Building a Spell-Checker;https://bernhardwenzel.com/articles/clojure-spellchecker/;Clojure;Clojure 41 | Building a JIRA integration with Clojure & Atlassian Connect;https://hackernoon.com/building-a-jira-integration-with-clojure-atlassian-connect-506ebd112807;Clojure;Clojure 42 | Prototyping with Clojure;https://github.com/aliaksandr-s/prototyping-with-clojure;Clojure;Clojure 43 | Building a Simple Chat App With Elixir and Phoenix;https://sheharyar.me/blog/simple-chat-phoenix-elixir/;Elixir;Elixir 44 | How to write a super fast link shortener with Elixir, Phoenix, and Mnesia;https://medium.com/free-code-camp/how-to-write-a-super-fast-link-shortener-with-elixir-phoenix-and-mnesia-70ffa1564b3c;Elixir;Elixir 45 | ChatBus : build your first multi-user chat room app with Erlang/OTP;https://medium.com/@kansi/chatbus-build-your-first-multi-user-chat-room-app-with-erlang-otp-b55f72064901;Erlang;Erlang 46 | Making a Chat App with Erlang, Rebar, Cowboy and Bullet;http://marianoguerra.org/posts/making-a-chat-app-with-erlang-rebar-cowboy-and-bullet.html;Erlang;Erlang 47 | Write your own Excel in 100 lines of F#;http://tomasp.net/blog/2018/write-your-own-excel;F#;F# 48 | Build a Simple HTTP Server with Java;http://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html;Java;Java 49 | Build an Android Flashlight App;https://www.youtube.com/watch?v=dhWL4DC7Krs;Java;Java 50 | Build a Spring Boot App with User Authentication;https://scotch.io/tutorials/build-a-spring-boot-app-with-user-authentication;Java;Java 51 | Build 30 things in 30 days with 30 tutorials;https://javascript30.com;Javascript;Javascript 52 | Build an App in Pure JS;https://medium.com/codingthesmartway-com-blog/pure-javascript-building-a-real-world-application-from-scratch-5213591cfcd6;Javascript;Javascript 53 | Build a Jupyter Notebook Extension;https://link.medium.com/wWUO7TN8SS;Javascript;Javascript 54 | Build A Loading Screen;https://medium.freecodecamp.org/how-to-build-a-delightful-loading-screen-in-5-minutes-847991da509f;Javascript;Javascript 55 | Build an HTML Calculator with JS;https://medium.freecodecamp.org/how-to-build-an-html-calculator-app-from-scratch-using-javascript-4454b8714b98;Javascript;Javascript 56 | Create Serverless React.js Apps;http://serverless-stack.com/;Javascript;React 57 | Create a Trello Clone;http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1/;Javascript;React 58 | Create a Character Voting App with React, NodeJS, MongoDB and SocketIO;https://www.zcfy.cc/original/create-a-character-voting-app-using-react-node-js-mongodb-and-socket-io;Javascript;React 59 | React Tutorial: Cloning Yelp;https://www.fullstackreact.com/articles/react-tutorial-cloning-yelp/;Javascript;React 60 | Build a Full Stack Movie Voting App with Test-First Development using Mocha, React, Redux and Immutable;https://teropa.info/blog/2015/09/10/full-stack-redux-tutorial.html;Javascript;React 61 | Build a Twitter Stream with React and Node;https://scotch.io/tutorials/build-a-real-time-twitter-stream-with-node-and-react-js;Javascript;React 62 | Build a Serverless MERN Story App with Webtask.io;https://scotch.io/tutorials/build-a-serverless-mern-story-app-with-webtask-io-zero-to-deploy-1;Javascript;React 63 | Build A Simple Medium Clone using React.js and Node.js;https://codeburst.io/build-simple-medium-com-on-node-js-and-react-js-a278c5192f47;Javascript;React 64 | Integrate MailChimp in JS;https://medium.freecodecamp.org/how-to-integrate-mailchimp-in-a-javascript-web-app-2a889fb43f6f;Javascript;React 65 | Build A Chrome Extension with React + Parcel;https://medium.freecodecamp.org/building-chrome-extensions-in-react-parcel-79d0240dd58f;Javascript;React 66 | Build A ToDo App With React Native;https://blog.hasura.io/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a;Javascript;React 67 | Make a Chat Application;https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a;Javascript;React 68 | Create a News App with React Native;https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627;Javascript;React 69 | Learn Webpack For React;https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060;Javascript;React 70 | Testing React App With Pupepeteer and Jest;https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59;Javascript;React 71 | Build Your Own React Boilerplate;https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f;Javascript;React 72 | Code The Game Of Life With React;https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174;Javascript;React 73 | A Basic React+Redux Introductory Tutorial;https://hackernoon.com/a-basic-react-redux-introductory-tutorial-adcc681eeb5e;Javascript;React 74 | Build an Appointment Scheduler;https://hackernoon.com/build-an-appointment-scheduler-using-react-twilio-and-cosmic-js-95377f6d1040;Javascript;React 75 | Build A Chat App with Sentiment Analysis;https://codeburst.io/build-a-chat-app-with-sentiment-analysis-using-next-js-c43ebf3ea643;Javascript;React 76 | Build A Full Stack Web Application Setup;https://hackernoon.com/full-stack-web-application-using-react-node-js-express-and-webpack-97dbd5b9d708;Javascript;React 77 | Create Todoist clone with React and Firebase;https://www.youtube.com/watch?v=hT3j87FMR6M;Javascript;React 78 | Build A Random Quote Machine;https://www.youtube.com/watch?v=3QngsWA9IEE;Javascript;React 79 | Build an Instagram Clone with Angular 1.x;https://hackhands.com/building-instagram-clone-angularjs-satellizer-nodejs-mongodb/;Javascript;Angular 80 | Build an offline-capable Hacker News client with Angular 2+;https://houssein.me/angular2-hacker-news;Javascript;Angular 81 | Build a Google+ clone with Django and AngularJS with Angular 1.x;https://thinkster.io/django-angularjs-tutorial;Javascript;Angular 82 | Build A Beautiful Real World App with Angular 8;https://medium.com/@hamedbaatour/build-a-real-world-beautiful-web-app-with-angular-6-a-to-z-ultimate-guide-2018-part-i-e121dd1d55e;Javascript;Angular 83 | Build Responsive layout with BootStrap 4 and Angular 6;https://medium.com/@tomastrajan/how-to-build-responsive-layouts-with-bootstrap-4-and-angular-6-cfbb108d797b;Javascript;Angular 84 | ToDo App with Angular 5;http://www.discoversdk.com/blog/angular-5-to-do-list-app-part-1;Javascript;Angular 85 | Build A Simple Website With NodeJS, Express and MongoDB;https://closebrace.com/tutorials/2017-03-02/the-dead-simple-step-by-step-guide-for-front-end-developers-to-getting-up-and-running-with-nodejs-express-and-mongodb;Javascript;NodeJS 86 | Build a real-time Markdown Editor with NodeJS;https://scotch.io/tutorials/building-a-real-time-markdown-viewer;Javascript;NodeJS 87 | Test-Driven Development with NodeJS, Postgres and Knex;http://mherman.org/blog/2016/04/28/test-driven-development-with-node/;Javascript;NodeJS 88 | Write a Twitter Bot in Node.js;https://codeburst.io/build-a-simple-twitter-bot-with-node-js-in-just-38-lines-of-code-ed92db9eb078;Javascript;NodeJS 89 | Create A Simple RESTFUL Web App;https://closebrace.com/tutorials/2017-03-02/creating-a-simple-restful-web-app-with-nodejs-express-and-mongodb;Javascript;NodeJS 90 | Build A Simple Search Bot in 30 minutes;https://medium.freecodecamp.org/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1;Javascript;NodeJS 91 | Build A Job Scraping Web App;https://medium.freecodecamp.org/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc;Javascript;NodeJS 92 | Vue 2 + Firebase: How to build a Vue app with Firebase authentication system in 15 minutes;https://medium.com/@anas.mammeri/vue-2-firebase-how-to-build-a-vue-app-with-firebase-authentication-system-in-15-minutes-fdce6f289c3c;Javascript;Vue 93 | Vue.js Application Tutorial – Creating a Simple Budgeting App with Vue;https://matthiashager.com/complete-vuejs-application-tutorial/;Javascript;Vue 94 | Build a Blog with Vue, GraphQL and Apollo;https://scotch.io/tutorials/build-a-blog-with-vue-graphql-and-apollo-client;Javascript;Vue 95 | Build a full stack web application using MEVN MongoDB, Express, Vue, NodeJS stack;https://medium.com/@anaida07/mevn-stack-application-part-1-3a27b61dcae0;Javascript;Vue 96 | Vue.js To-Do List Tutorial;https://www.youtube.com/watch?v=78tNYZUS-ps;Javascript;Vue 97 | Keddit - Learn Kotlin While Developing an Android Application;https://medium.com/@juanchosaravia/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664;Kotlin;Kotlin 98 | Mining Twitter Data with Python;https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/;Python;Python 99 | Scrape a Website with Scrapy and MongoDB;https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/;Python;Python 100 | How To Scrape With Python and Selenium WebDriver;http://www.byperth.com/2018/04/25/guide-web-scraping-101-what-you-need-to-know-and-how-to-scrape-with-python-selenium-webdriver/;Python;Python 101 | Which Movie Should I Watch using BeautifulSoup;https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1;Python;Python 102 | Build a Microblog with Flask;https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world;Python;Python 103 | Create a Blog Web App In Django;https://tutorial.djangogirls.org/en/;Python;Python 104 | Choose Your Own Adventure Presentations;https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html;Python;Python 105 | Build a Todo List with Flask and RethinkDB;https://realpython.com/blog/python/rethink-flask-a-simple-todo-list-powered-by-flask-and-rethinkdb/;Python;Python 106 | Build a Todo List with Django and Test-Driven Development;http://www.obeythetestinggoat.com/;Python;Python 107 | Build a RESTful Microservice in Python;http://www.skybert.net/python/developing-a-restful-micro-service-in-python/;Python;Python 108 | Microservices with Docker, Flask, and React;https://testdriven.io/;Python;Python 109 | Build A Simple Web App With Flask;https://pythonspot.com/flask-web-app-with-python/;Python;Python 110 | Build a RESTful API with Flask – The TDD Way;https://scotch.io/tutorials/build-a-restful-api-with-flask-the-tdd-way;Python;Python 111 | Create A Django API in under 20 minutes;https://codeburst.io/create-a-django-api-in-under-20-minutes-2a082a60f6f3;Python;Python 112 | Build a Reddit Bot;http://pythonforengineers.com/build-a-reddit-bot-part-1/;Python;Python 113 | How to Make a Reddit Bot - YouTube;https://www.youtube.com/watch?v=krTUf7BpTc0;Python;Python 114 | Build a Facebook Messenger Bot;https://blog.hartleybrody.com/fb-messenger-bot/;Python;Python 115 | Making a Reddit + Facebook Messenger Bot;https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/;Python;Python 116 | How To Create a Telegram Bot Using Python;https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/;Python;Python 117 | Create a Twitter Bot In Python;https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607;Python;Python 118 | Learn Python For Data Science by Doing Several Projects;https://www.youtube.com/watch?v=T5pRlIbr6gg;Python;Python 119 | Write Linear Regression From Scratch in Python;https://www.youtube.com/watch?v=uwwWVAgJBcM;Python;Python 120 | Step-By-Step Machine Learning In Python;https://machinelearningmastery.com/machine-learning-in-python-step-by-step/;Python;Python 121 | Predict Quality Of Wine;https://medium.freecodecamp.org/using-machine-learning-to-predict-the-quality-of-wines-9e2e13d7480d;Python;Python 122 | Solving A Fruits Classification Problem;https://towardsdatascience.com/solving-a-simple-classification-problem-with-python-fruits-lovers-edition-d20ab6b071d2;Python;Python 123 | Learn Unsupervised Learning with Python;https://towardsdatascience.com/unsupervised-learning-with-python-173c51dc7f03;Python;Python 124 | Build Your Own Neural Net from Scratch in Python;https://towardsdatascience.com/how-to-build-your-own-neural-network-from-scratch-in-python-68998a08e4f6;Python;Python 125 | Linear Regression in Python without sklearn;https://medium.com/we-are-orb/linear-regression-in-python-without-scikit-learn-50aef4b8d122;Python;Python 126 | Multivariate Linear Regression without sklearn;https://medium.com/we-are-orb/multivariate-linear-regression-in-python-without-scikit-learn-7091b1d45905;Python;Python 127 | Music Recommender using KNN;https://towardsdatascience.com/how-to-build-a-simple-song-recommender-296fcbc8c85;Python;Python 128 | Find Similar Quora Questions;https://towardsdatascience.com/finding-similar-quora-questions-with-bow-tfidf-and-random-forest-c54ad88d1370;Python;Python 129 | Build A Document Scanner;https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/;Python;Python 130 | Build A Face Detector using OpenCV and Deep Learning;https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/;Python;Python 131 | Build a Face Recognition System using OpenCV, Python and Deep Learning;https://www.pyimagesearch.com/2018/06/18/face-recognition-with-opencv-python-and-deep-learning/;Python;Python 132 | Detect The Salient Features in an Image;https://www.pyimagesearch.com/2018/07/16/opencv-saliency-detection/;Python;Python 133 | Build A Barcode Scanner;https://www.pyimagesearch.com/2018/05/21/an-opencv-barcode-and-qr-code-scanner-with-zbar/;Python;Python 134 | Learn Face Clustering with Python;https://www.pyimagesearch.com/2018/07/09/face-clustering-with-python/;Python;Python 135 | Object Tracking with Camshift;https://www.pyimagesearch.com/wp-content/uploads/2014/11/opencv_crash_course_camshift.pdf;Python;Python 136 | Semantic Segmentation with OpenCV and Deep Learning;https://www.pyimagesearch.com/2018/09/03/semantic-segmentation-with-opencv-and-deep-learning/;Python;Python 137 | Text Detection in Images and Videos;https://www.pyimagesearch.com/2018/08/20/opencv-text-detection-east-text-detector/;Python;Python 138 | People Counter using OpenCV;https://www.pyimagesearch.com/2018/08/13/opencv-people-counter/;Python;Python 139 | Tracking Multiple Objects with OpenCV;https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/;Python;Python 140 | Neural Style Transfer with OpenCV;https://www.pyimagesearch.com/2018/08/27/neural-style-transfer-with-opencv/;Python;Python 141 | OpenCV OCR and Text Recognition;https://www.pyimagesearch.com/2018/09/17/opencv-ocr-and-text-recognition-with-tesseract/;Python;Python 142 | Text Skew Correction Tutorial;https://www.pyimagesearch.com/2017/02/20/text-skew-correction-opencv-python/;Python;Python 143 | Facial Landmark Detection Tutorial;https://www.pyimagesearch.com/2017/04/03/facial-landmarks-dlib-opencv-python/;Python;Python 144 | Object Detection using Mask-R-CNN;https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentation-using-mask-r-cnn-in-opencv-python-c/;Python;Python 145 | Automatic Target Detection Tutorial;https://www.pyimagesearch.com/2015/05/04/target-acquired-finding-targets-in-drone-and-quadcopter-video-streams-using-python-and-opencv/;Python;Python 146 | EigenFaces using OpenCV;https://www.learnopencv.com/eigenface-using-opencv-c-python/;Python;Python 147 | Faster 5-point Facial Landmark Detection Tutorial;https://www.pyimagesearch.com/2018/04/02/faster-facial-landmark-detector-with-dlib/;Python;Python 148 | Hand Keypoint Detection;https://www.learnopencv.com/hand-keypoint-detection-using-deep-learning-and-opencv/;Python;Python 149 | Dlib Correlation Object Tracking;https://www.pyimagesearch.com/2018/10/22/object-tracking-with-dlib/;Python;Python 150 | Image Stitching with OpenCV and Python;https://www.pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/;Python;Python 151 | Instance Segmentation with OpenCV;https://www.pyimagesearch.com/2018/11/26/instance-segmentation-with-opencv/;Python;Python 152 | Face mask detector;https://www.pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/;Python;Python 153 | Using Convolutional Neural Nets to Detect Facial Keypoints;http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/;Python;Python 154 | Generate an Average Face using Python and OpenCV;https://www.learnopencv.com/average-face-opencv-c-python-tutorial/;Python;Python 155 | Break A Captcha System using CNNs;https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710;Python;Python 156 | Use pre-trained Inception model to provide image predictions;https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058;Python;Python 157 | Create your first CNN;https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2;Python;Python 158 | Build A Facial Recognition Pipeline;https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8;Python;Python 159 | Build An Image Caption Generator;https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f;Python;Python 160 | Make your Own Face Recognition System;https://medium.freecodecamp.org/making-your-own-face-recognition-system-29a8e728107c;Python;Python 161 | Train a Language Detection AI in 20 minutes;https://towardsdatascience.com/how-i-trained-a-language-detection-ai-in-20-minutes-with-a-97-accuracy-fdeca0fb7724;Python;Python 162 | Object Detection With Neural Networks;https://towardsdatascience.com/object-detection-with-neural-networks-a4e2c46b4491;Python;Python 163 | Learn Twitter Sentiment Analysis;https://towardsdatascience.com/another-twitter-sentiment-analysis-bb5b01ebad90;Python ;Python 164 | Use Transfer Learning for custom image classification;https://becominghuman.ai/transfer-learning-retraining-inception-v3-for-custom-image-classification-2820f653c557;Python;Python 165 | Learn to Code a simple Neural Network in 11 lines of Python;https://iamtrask.github.io/2015/07/12/basic-python-network/;Python;Python 166 | Build a Neural Network using Gradient Descent Approach;https://iamtrask.github.io/2015/07/27/python-network-part2/;Python;Python 167 | Train a Keras Model To Generate Colors;https://heartbeat.fritz.ai/how-to-train-a-keras-model-to-generate-colors-3bc79e54971b;Python;Python 168 | Get Started with Keras on a Custom Dataset;https://www.pyimagesearch.com/2018/09/10/keras-tutorial-how-to-get-started-with-keras-deep-learning-and-python/;Python;Python 169 | Use EigenFaces and FisherFaces on Faces94 dataset;https://nicholastsmith.wordpress.com/2016/02/18/eigenfaces-versus-fisherfaces-on-the-faces94-database-with-scikit-learn/;Python;Python 170 | Kaggle MNIST Digit Recognizer Tutorial;https://medium.com/@lvarruda/how-to-get-top-2-position-on-kaggles-mnist-digit-recognizer-48185d80a2d4;Python;Python 171 | Fashion MNIST tutorial with tf.keras;https://medium.com/tensorflow/hello-deep-learning-fashion-mnist-with-keras-50fcff8cd74a;Python;Python 172 | CNN using Keras to automatically classify root health;https://www.pyimagesearch.com/2018/10/15/deep-learning-hydroponics-and-medical-marijuana/;Python;Python 173 | Keras vs Tensorflow;https://www.pyimagesearch.com/2018/10/08/keras-vs-tensorflow-which-one-is-better-and-which-one-should-i-learn/;Python;Python 174 | Deep Learning and Medical Image Analysis for Malaria Detection;https://www.pyimagesearch.com/2018/12/03/deep-learning-and-medical-image-analysis-with-keras/;Python;Python 175 | Transfer Learning for Image Classification using Keras;https://towardsdatascience.com/transfer-learning-for-image-classification-using-keras-c47ccf09c8c8;Python;Python 176 | Code a Smile Classifier using CNNS in Python;https://github.com/kylemcdonald/SmileCNN;Python;Python 177 | Natural Language Processing using scikit-learn;https://towardsdatascience.com/natural-language-processing-count-vectorization-with-scikit-learn-e7804269bb5e;Python;Python 178 | Code a Taylor Swift Lyrics Generator;https://towardsdatascience.com/ai-generates-taylor-swifts-song-lyrics-6fd92a03ef7e;Python;Python 179 | Build a Simple Interpreter;https://ruslanspivak.com/lsbasi-part1/;Python;Python 180 | Build a Simple Blockchain in Python;https://hackernoon.com/learn-blockchains-by-building-one-117428612f46;Python;Python 181 | Write a NoSQL Database in Python;https://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/;Python;Python 182 | Building a Gas Pump Scanner with OpenCV/Python/iOS;https://hackernoon.com/building-a-gas-pump-scanner-with-opencv-python-ios-116fe6c9ae8b;Python;Python 183 | Build a Distributed Streaming System with Python and Kafka;https://codequs.com/p/S14jQ5UyG/build-a-distributed-streaming-system-with-apache-kafka-and-python;Python;Python 184 | Writing a basic x86-64 JIT compiler from scratch in stock Python;https://csl.name/post/python-jit/;Python;Python 185 | Making a low level Linux debugger;https://blog.asrpo.com/making_a_low_level_debugger;Python;Python 186 | Implementing a Search Engine;http://www.ardendertat.com/2011/05/30/how-to-implement-a-search-engine-part-1-create-index/;Python;Python 187 | Build the Game of Life;https://robertheaton.com/2018/07/20/project-2-game-of-life/;Python;Python 188 | Create terminal ASCII art;https://robertheaton.com/2018/06/12/programming-projects-for-advanced-beginners-ascii-art/;Python;Python 189 | Write a Tic-Tac-Toe AI;https://robertheaton.com/2018/10/09/programming-projects-for-advanced-beginners-3-a/;Python;Python 190 | Create photomosaic art;https://robertheaton.com/2018/11/03/programming-project-4-photomosaics/;Python;Python 191 | Build the game Snake in the terminal;https://robertheaton.com/2018/12/02/programming-project-5-snake/;Python;Python 192 | Write yourself a Git;https://wyag.thb.lt/;Python;Python 193 | A Python implementation of a Python bytecode runner;https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html;Python;Python 194 | Create a Real Time Chat App with Golang, Angular 2, and WebSocket;https://www.thepolyglotdeveloper.com/2016/12/create-real-time-chat-app-golang-angular-2-websockets/;Golang;Golang 195 | Building Go Web Applications and Microservices Using Gin;https://semaphoreci.com/community/tutorials/building-go-web-applications-and-microservices-using-gin;Golang;Golang 196 | How to Use Godog for Behavior-driven Development in Go et started with Godog;https://semaphoreci.com/community/tutorials/how-to-use-godog-for-behavior-driven-development-in-go;Golang;Golang 197 | Building Blockchain in Go;https://jeiwan.net/posts/building-blockchain-in-go-part-1/;Golang;Golang 198 | Build Web Application with GoLang;https://legacy.gitbook.com/book/astaxie/build-web-application-with-golang/details;Golang;Golang 199 | Building a container from scratch in Go - Liz Rice Microscaling Systems;https://www.youtube.com/watch?v=8fi7uSYlOdc;Golang;Golang 200 | How To Build A Blog With Laravel;https://www.youtube.com/playlist?list=PLwAKR305CRO-Q90J---jXVzbOd4CDRbVx; PHP; PHP 201 | Make Your Own Blog in Pure PHP;http://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog;PHP;PHP 202 | Build A Real Estate Website Example with SilverStripe;https://www.silverstripe.org/learn/lessons/;PHP;PHP 203 | Building Realtime Chat App with Laravel 5.4 and VueJS;https://www.youtube.com/playlist?list=PLXsbBbd36_uVjOFH_P25__XAyGsohXWlv; PHP; PHP 204 | Build A Social Network: Laravel 5 - Youtube;https://www.youtube.com/playlist?list=PLfdtiltiRHWGGxaR6uFtwZnnbcXqyq8JD; PHP; PHP 205 | Build a full-featured multi-tenant app with Laravel;https://medium.com/@ashokgelal/writing-a-full-featured-multi-tenant-laravel-app-from-scratch-a0e1a7350d9d;PHP;PHP 206 | Implement a Language with LLVM in OCaml;https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm-in-objective-caml;OCaml;OCaml 207 | Build a Network Stack with Ruby;https://medium.com/geckoboard-under-the-hood/how-to-build-a-network-stack-in-ruby-f73aeb1b661b;Ruby;Ruby 208 | Build your own Redis;https://rohitpaulk.com/articles/redis-0;Ruby;Ruby 209 | Build Instagram From Scratch with Ruby on Rails;https://www.dropbox.com/s/9vq430e9s3q7pu8/Let%27s%20Build%20Instagram%20with%20Ruby%20on%20Rails%20-%20Free%20Edition.pdf?dl=0;Ruby;Ruby, Ruby on Rails 210 | Build a Social Network using Rails;https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233;Ruby;Ruby, Ruby on Rails 211 | How To Build a Ruby on Rails Application;https://www.digitalocean.com/community/tutorials/how-to-build-a-ruby-on-rails-application;Ruby;Ruby, Ruby on Rails 212 | Write You a Haskell - Build a modern functional compiler;http://dev.stephendiehl.com/fun/;Haskell;Haskell 213 | Write Yourself a Scheme in 48 hours;https://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours;Haskell;Haskell 214 | Write You A Scheme, Version 2;https://github.com/write-you-a-scheme-v2/scheme;Haskell;Haskell 215 | Roll Your Own IRC Bot;https://wiki.haskell.org/Roll_your_own_IRC_bot;Haskell;Haskell 216 | Let's Build A Basic Compiler in Haskell;https://g-ford.github.io/cradle/;Haskell;Haskell 217 | Making Movie Monad;https://lettier.github.io/posts/2016-08-15-making-movie-monad.html;Haskell;Haskell 218 | Build Web Apps with Shiny;http://shiny.rstudio.com/tutorial/;R;R 219 | Build A Cryptocurrency Bot;https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1;R;R 220 | Learn Associate Rule Mining in R;https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50;R;R 221 | A Simple Web App in Rust;http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-1/;Rust;Rust 222 | Write an OS in pure Rust;https://os.phil-opp.com/;Rust;Rust 223 | Build a browser engine in Rust;https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html;Rust;Rust 224 | Write a Microservice in Rust;http://www.goldsborough.me/rust/web/tutorial/2018/01/20/17-01-11-writing_a_microservice_in_rust/;Rust;Rust 225 | Learning Rust with Too Many Linked Lists;http://cglab.ca/~abeinges/blah/too-many-lists/book/README.html;Rust;Rust 226 | Rust in Detail: Writing Scalable Chat Service from Scratch;https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html;Rust;Rust 227 | Writing a Rust Roguelike for the Desktop and the Web;https://aimlesslygoingforward.com/blog/2019/02/09/writing-a-rust-roguelike-for-the-desktop-and-the-web/;Rust;Rust 228 | Simple actor-based blockchain;https://www.freecodecamp.org/news/how-to-build-a-simple-actor-based-blockchain-aac1e996c177/;Scala;Scala 229 | No Magic: Regular Expressions;https://rcoh.svbtle.com/no-magic-regular-expressions;Scala;Scala 230 | Hacking with Swift - Learn Swift by doing 39 projects;https://www.hackingwithswift.com/read;Swift;Swift 231 | Travel Bucket List Map with Gatsby and GraphCMS;https://www.freecodecamp.org/news/how-to-create-a-travel-bucket-list-map-with-gatsby-react-leaflet-graphcms/;Javascript;Gatsby, Leaflet, GraphCMS, HTML, CSS 232 | Memory Card Game with Vue.js;https://www.freecodecamp.org/news/how-to-build-a-memory-card-game-with-vuejs/;Javascript;Vue, Javascript, HTML, CSS 233 | Strapi and GatsbyJS Course - Portfolio Project;https://www.youtube.com/watch?v=Oc_ITwxiG-Y;Javascript;Gatsby, Strapi, Javascript, HTML, CSS 234 | Storybook - NodeJS, Express, MongoDB and Google OAuth;https://www.youtube.com/watch?v=SBvmnHTQIPY;Javascript;NodeJS, Javascript, MongoDB, HTML, CSS 235 | Breathe and Relax App - Javascript and CSS Animations;https://www.youtube.com/watch?v=l-1ZrU6avzI;Javascript;Javascript, HTML, CSS 236 | Node.js CLI For Cryptocurrency Prices;https://www.youtube.com/watch?v=-6OAHsde15E;Javascript;NodeJS, Javascript 237 | React and Tailwind CSS Image Gallery;https://www.youtube.com/watch?v=FiGmAI5e91M;Javascript;React, Tailwind, Javascript, HTML, CSS 238 | Pomodoro Clock using React;https://www.youtube.com/watch?v=VPrmzk-1Gps&list=PL3cz80ehFCalRswkbzwTJ-zdZxu3iBjkJ;Javascript;React, Javascript, HTML, CSS 239 | Keyword Density Tool with Laravel from Scratch;https://www.freecodecamp.org/news/how-to-build-a-keyword-density-tool-with-laravel/;PHP;PHP, Laravel, JQuery, AJAX, SEO 240 | YouTube Clone using Yii2 PHP Framework;https://www.youtube.com/watch?v=whuIf33v2Ug;PHP;Yii2, PHP 241 | Reddit Clone with React, GraphQL and Amplify;https://www.freecodecamp.org/news/how-to-build-a-full-stack-serverless-application-with-react-and-amplify/;Javascript;React, Amplify, AWS, GraphQL, Node 242 | Full-Stack Yelp Clone with React and GraphQL;https://www.freecodecamp.org/news/how-to-create-a-full-stack-yelp-clone-with-react-graphql/;Javascript;React, GraphQL, HTML, CSS, Javascript 243 | Pokémon Web App with React Hooks and Context API;https://www.freecodecamp.org/news/building-a-simple-pokemon-web-app-with-react-hooks-and-context-api/;Javascript;React, HTML, CSS, Javascript 244 | Watershed Monitor using Javascript and Rails;https://dev.to/jessesbyers/watershed-monitor-javascript-and-rails-project-576c;Ruby;Ruby, Ruby on Rails, Javascript 245 | Climate Data Dashboard using React and Redux;https://dev.to/jessesbyers/climate-data-dashboard-react-redux-project-1ilb;Javascript;React, Redux, HTML, CSS, Javascript 246 | Flipping UNO Cards using only CSS;https://dev.to/comscience/flipping-uno-cards-using-only-css-4jb9;HTML;HTML, CSS 247 | Chat App with Redis, WebSocket and Go;https://dev.to/azure/let-s-learn-how-to-to-build-a-chat-application-with-redis-websocket-and-go-5cck;Golang;Golang, Redis, Web Socket, Azure 248 | Spotify Login Animation With React Navigation;https://dev.to/elaziziyoussouf/spotify-login-animation-with-react-navigation-v5-4od7;Javascript;React, HTML, CSS, Javascript 249 | Dynamic Weather Interface with just CSS;https://dev.to/comscience/dynamic-weather-app-using-just-css-cp2;HTML;HTML, CSS 250 | Simple CRUD App with Airtable and Vue;https://dev.to/codeply/build-a-simple-crud-app-with-airtable-api-vue-vuetify-5565;Javascript;Vue, Vuetify, Airtable, API, HTML 251 | Full Stack RPG Character Generator with MEVN stack;https://www.freecodecamp.org/news/build-a-full-stack-mevn-app/;Javascript;NodeJS, MongoDB, Express, Vue, HTML 252 | Todo App with the PERN stack;https://www.freecodecamp.org/news/learn-the-pern-stack-full-course/;Javascript;Express, React, NodeJS, PostgreSQL, HTML 253 | Summer Road Trip Mapping App with Gatsby;https://www.freecodecamp.org/news/how-to-create-a-summer-road-trip-mapping-app-with-gatsby-and-leaflet/;Javascript;React, Gatsby, Leaflet 254 | COVID-19 Dashboard and Map App with Gatsby;https://www.freecodecamp.org/news/how-to-create-a-coronavirus-covid-19-dashboard-map-app-in-react-with-gatsby-and-leaflet/;Javascript;React, Gatsby, Leaflet 255 | Flashcard Quiz With React;https://www.youtube.com/watch?v=hEtZ040fsD8;Javascript;React, API, Javascript, HTML, CSS 256 | Whack-a-Mole with pure Javascript;https://www.youtube.com/watch?v=o93jem7oPnA;Javascript;Javascript, HTML, CSS 257 | NOKIA 3310 Snake Game using Javascript;https://www.youtube.com/watch?v=rui2tRRVtc0;Javascript;Javascript, HTML, CSS 258 | Rock Paper Scissors in vanilla Javascript;https://www.youtube.com/watch?v=mXrTIpYoCPE;Javascript;Javascript, HTML, CSS 259 | Tetris with pure Javascript;https://www.youtube.com/watch?v=GWPGz9hrVMk;Javascript;Javascript, HTML, CSS 260 | Meme Maker with React;https://medium.com/free-code-camp/react-for-beginners-building-a-meme-maker-with-react-7164d3d3e55f;Javascript;React, Javascript, HTML, CSS 261 | Evernote Clone with React;https://www.youtube.com/watch?v=I250xdtUvy8;Javascript;React, Firebase, NodeJS, Javascript, HTML 262 | Developer Meetup App with Vue;https://www.youtube.com/watch?v=FXY1UyQfSFw&list=PL55RiY5tL51qxUbODJG9cgrsVd7ZHbPrt&index=2&t=32s;Javascript;Vue, Firebase, Vuetify, Javascript, HTML 263 | Real-Time Chat App with Vue;https://vuejsdevelopers.com/2017/10/16/vue-js-firestore/;Javascript;Vue, Firebase, Vuex, Javascript, HTML 264 | Cryptocurrency Tracker with Vue;https://medium.com/eliteng/build-a-cryptocurrency-tracker-with-vue-js-c0efd4c0139e;Javascript;Vue, Vuetify, API, Javascript, HTML 265 | Multiplayer Quiz Game with Vue;https://medium.com/front-end-weekly/build-a-multiplayer-quiz-game-with-vue-js-ca22bad8fb52;Javascript;Vue, Pusher, NodeJS, Express, Javascript 266 | Minesweeper Game with Vue;https://medium.com/javascript-in-plain-english/minesweeper-rebuild-with-vue-vuex-and-vuetify-ab1921e5258e;Javascript;Vue, Vuex, Vuetify, Javascript, HTML 267 | Instagram Clone with Vue;https://medium.com/fullstackio/tutorial-build-an-instagram-clone-with-vue-js-and-cssgram-24a9f3de0408;Javascript;Vue, CSSGram, Javascript, HTML, CSS 268 | Hacker News Clone with Angular;https://medium.com/crowdbotics/learn-to-build-a-simple-progressive-web-app-pwa-with-angular-and-lighthouse-hacker-news-clone-51aca763032f;Javascript;Angular, Lighthouse, Javascript, HTML, CSS 269 | Chat Interface;https://www.florin-pop.com/blog/2019/04/chat-interface/;HTML;HTML, CSS 270 | Pure CSS3 Tooltip;https://www.florin-pop.com/blog/2019/05/pure-css-tooltip/;HTML;HTML, CSS 271 | Social Media Buttons;https://www.florin-pop.com/blog/2019/07/social-media-buttons/;HTML;HTML, CSS 272 | Testimonial Card;https://www.florin-pop.com/blog/2019/07/testimonial-card/;HTML;HTML, CSS 273 | Navigation Bar with CSS3 Flexbox;https://freshman.tech/flexbox-navbar/;HTML;HTML, CSS 274 | Mobile App Layout with CSS3 Flexbox;https://freshman.tech/flexbox-mobile-app/;HTML;HTML, CSS 275 | Reddit-inspired Loading Spinner;https://www.freecodecamp.org/news/how-to-build-a-reddit-inspired-loading-spinner-with-only-html-and-css-5b2fca3fdca/;HTML;HTML, CSS 276 | Calendar with CSS3 Grid;https://www.freecodecamp.org/news/how-to-build-a-calendar-with-css-grid/;Javascript;Javascript, HTML, CSS 277 | Tetris Game in React;https://www.youtube.com/watch?v=ZGOaCxX8HIU;Javascript;React, Javascript, HTML, CSS 278 | 2D Breakout Game;https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_Breakout_game_pure_Javascript;Javascript;Javascript, HTML, CSS 279 | Sprite Animation;https://medium.com/dailyjs/how-to-build-a-simple-sprite-animation-in-javascript-b764644244aa;Javascript;Javascript, HTML, CSS 280 | Snake Game;https://www.freecodecamp.org/news/think-like-a-programmer-how-to-build-snake-using-only-javascript-html-and-css-7b1479c3339e/;Javascript;Javascript, HTML, CSS 281 | Memory Game;https://medium.com/free-code-camp/vanilla-javascript-tutorial-build-a-memory-game-in-30-minutes-e542c4447eae;Javascript;Javascript, HTML, CSS 282 | Simple Authentication and Authorization;https://medium.com/javascript-in-plain-english/simple-authentication-and-authorization-in-graphql-5293c0458fc;Javascript;NodeJS, GraphQL, Apollo, Javascript, HTML 283 | Cryptocurrency Tracker;https://medium.com/javascript-in-plain-english/build-a-cryptocurrency-tracker-with-next-js-and-apollo-graphql-c776cff6b8bf;Javascript;NextJS, GraphQL, Apollo, NodeJS, Javascript 284 | Instant Search With Vanilla Javascript;https://www.florin-pop.com/blog/2019/06/vanilla-javascript-instant-search/;Javascript;Javascript, HTML, CSS 285 | Calculator App;https://zellwk.com/blog/calculator-part-1;Javascript;Javascript, HTML, CSS 286 | Simple Budgeting App;https://matthiashager.com/complete-vuejs-application-tutorial;Javascript;Vue, Bulma, Javascript, CSS, HTML 287 | Search Bot;https://www.freecodecamp.org/news/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1/;Javascript;NodeJS, Twilio, Cheerio, API, Automation 288 | Todo App;http://www.discoversdk.com/blog/intro-to-angular-and-the-evolution-of-the-web;Javascript;Angular, TypeScript, RxJS, HTML, CSS 289 | Game of Life;https://www.freecodecamp.org/news/create-gameoflife-with-react-in-one-hour-8e686a410174;Javascript;React, 2D, Javascript, HTML, CSS 290 | News App;https://www.freecodecamp.org/news/create-a-news-app-using-react-native-ced249263627;Javascript;React Native, NodeJS, API, React, Javascript 291 | Chat App;https://www.freecodecamp.org/news/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a/;Javascript;React, Redux, Redux Saga, Web Sockets, Node 292 | Todo App;https://hasura.io/blog/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a;Javascript;React Native, GraphQL, Apollo, API, Hasura 293 | Chrome Extension;https://www.freecodecamp.org/news/building-chrome-extensions-in-react-parcel-79d0240dd58f/;Javascript;React, Parcel, Javascript, HTML, CSS 294 | Trello Clone;http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1;Javascript;React, Elixir, Phoenix, JWT, Javascript 295 | Spotify Inspired Web Design;https://www.youtube.com/watch?v=uKgn-To1C4Q;HTML;HTML, CSS 296 | Simple Gantt Chart;https://webdesign.tutsplus.com/tutorials/build-a-simple-gantt-chart-with-css-and-javascript--cms-33813;HTML;HTML, CSS, Javascript 297 | Job Scraping App;https://www.freecodecamp.org/news/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc/;Javascript;NodeJS, Javascript, REST, API, Express 298 | E-Commerce App;https://www.youtube.com/watch?v=wPQ1-33teR4;Javascript;React, Bootstrap, Javascript, HTML, CSS 299 | Netflix Landing Page;https://www.youtube.com/watch?v=P7t13SGytRk;HTML;HTML, CSS, Javascript 300 | AI Chatbot;https://www.smashingmagazine.com/2017/08/ai-chatbot-web-speech-api-node-js;Javascript;Javascript, Web Speech API, NodeJS, Express, Socket.io 301 | Social Networking App;https://www.youtube.com/watch?v=m_u6P5k0vP0;Javascript;React, NodeJS, Redux, Firebase, REST 302 | Blockchain;https://www.hackdoor.io/articles/BwJeDQnm/writing-a-blockchain-in-node-js;Javascript;NodeJS, Javascript, Cryptography, Blockchain 303 | BitTorrent Client;https://allenkim67.github.io/programming/2016/05/04/how-to-make-your-own-bittorrent-client.html;Javascript;NodeJS, Javascript, TCP, Computer Networks 304 | URL Shortener with Javascript;https://www.freecodecamp.org/news/building-a-simple-url-shortener-with-just-html-and-javascript-6ea1ecda308c/;Javascript;Javascript, HTML, CSS 305 | Todo List App with Javascript;https://freshman.tech/todo-list;Javascript;Javascript, HTML, CSS 306 | Javascript Animations with Anime.js;https://medium.com/@ajmeyghani/creating-javascript-animations-with-anime-js-f2b14716cdc6;Javascript;Javascript, CSS, Library, HTML, API 307 | Job Board App with React;https://www.youtube.com/watch?v=lauywdXKEXI;Javascript;React, NodeJS, Cron, Javascript, HTML 308 | Flappy Bird iOS Game using Swift;https://www.raywenderlich.com/3875-how-to-make-a-game-like-flappy-bird;Swift;Swift, XCode, iOS 309 | Bull's Eye iOS Game using Swift;https://www.raywenderlich.com/4919757-your-first-ios-and-swiftui-app;Swift;Swift, XCode, iOS 310 | Task List iOS App using SwiftUI;https://www.raywenderlich.com/5662524-your-second-ios-and-swiftui-app;Swift;Swift, XCode, iOS 311 | Restaurant iOS App using SwiftUI;https://www.hackingwithswift.com/quick-start/swiftui/swiftui-tutorial-building-a-complete-project;Swift;Swift, XCode, iOS 312 | Dice iOS App with Swift;https://www.ralfebert.de/ios/beginner-tutorials/iphone-app-xcode/;Swift;Swift, XCode, iOS 313 | TrueCaller Clone;https://www.youtube.com/watch?v=mlEdGe4vui4;Java;Java, MySQL, XAMPP, Android 314 | Weather App;https://www.youtube.com/watch?v=wAV2Uqv9KLo;Java;Java, API, Android 315 | E-Commerce App;https://www.youtube.com/watch?v=6keVIot98QU&list=PLxefhmF0pcPlqmH_VfWneUjfuqhreUz-O&index=1;Java;Java, Firebase, Android 316 | Chat App;https://www.youtube.com/watch?v=fJWFeW09qeE&list=PLzLFqCABnRQftQQETzoVMuteXzNiXmnj8&index=1;Java;Java, Firebase, Android 317 | Todo App;https://medium.com/the-web-tub/making-a-todo-app-with-flutter-5c63dab88190;Dart;Dart, Flutter, Android, iOS 318 | Travel App UI;https://www.youtube.com/watch?v=CSa6Ocyog4U;Dart;Dart, Flutter, Android, iOS 319 | Reddit Client;https://android.jlelse.eu/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664;Kotlin;Kotlin, Android 320 | Todo App;https://egghead.io/courses/build-a-react-native-todo-application;Javascript;React Native, Android, iOS, Javascript 321 | Photo Library Viewer;https://www.raywenderlich.com/1044-building-ios-apps-with-xamarin-and-visual-studio;C#;C#, iOS, Xamarin, Visual Studio, Android 322 | WhatsApp Clone with React Native;https://medium.com/react-native-training/building-chatty-a-whatsapp-clone-with-react-native-and-apollo-part-1-setup-68a02f7e11;Javascript;React Native, NodeJS, GraphQL, Apollo, Javascript 323 | Simple 3D Game using Godot 3.1;https://www.youtube.com/watch?v=VeCrE-ge8xM&list=PLda3VoSoc_TSBBOBYwcmlamF1UrjVtccZ;C#;Godot, C#, 3D 324 | Simple Puzzle Game in Godot - Box and Switch;https://www.youtube.com/watch?v=l2wF2gj_hlA;C#;Godot, C#, 2D 325 | Game Interface From Scratch in Godot 3;https://www.youtube.com/watch?v=y1E_y9AIqow;C#;Godot, C#, 2D 326 | 2D Game with Godot: Player and Enemy;https://www.youtube.com/watch?v=Mc13Z2gboEk;C#;Godot, C#, 2D 327 | Multiplayer Card Game with Socket.io;https://www.freecodecamp.org/news/how-to-build-a-multiplayer-card-game-with-phaser-3-express-and-socket-io/;Javascript;Javascript, Phaser 3, Express, Socket.io 328 | Multiplayer Card Game with Unity 2D and Mirror;https://www.freecodecamp.org/news/how-to-build-a-multiplayer-card-game-with-unity-2d-and-mirror/;C#;C#, Unity, 2D, Mirror 329 | Roguelike Tutorial in Rust;https://tomassedovic.github.io/roguelike-tutorial/;Rust;Rust, 2D 330 | Adventures in Rust - A Basic 2D Game;https://a5huynh.github.io/posts/2018/adventures-in-rust/;Rust;Rust, 2D 331 | Terminal Snake Game with Ruby;https://diatomenterprises.com/gamedev-on-ruby-why-not/;Ruby;Ruby, 2D 332 | Sudoku Solver in C;https://www.youtube.com/watch?v=9aMUyoYDI-0&list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW;C/C++;C/C++, 2D 333 | Chess Engine In C;https://www.youtube.com/watch?v=bGAfaepBco4&list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg&index=1&t=0s;C/C++;C/C++, 2D 334 | Tanks Shooter;https://learn.unity.com/project/tanks-tutorial;C#;C#, Unity, 3D 335 | 2D Roguelike;https://learn.unity.com/project/2d-roguelike-tutorial;C#;C#, Unity, 2D 336 | John Lemon's Haunted Jaunt 3D;https://learn.unity.com/project/john-lemon-s-haunted-jaunt-3d-beginner;C#;C#, Unity, 3D 337 | VR Beginner: The Escape Room;https://learn.unity.com/project/vr-beginner-the-escape-room;C#;C#, Unity, VR 338 | Ruby's Adventure;https://learn.unity.com/project/ruby-s-2d-rpg;C#;C#, Unity, 2D 339 | RPG Game;https://learn.unity.com/project/creator-kit-rpg;C#;C#, Unity, 2D 340 | Roll-a-ball;https://learn.unity.com/project/roll-a-ball-tutorial;C#;C#, Unity, 3D 341 | FPS Microgame;https://learn.unity.com/project/fps-template?courseId=5c59cf22edbc2a001f59aa5d;C#;C#, Unity 342 | Platformer Microgame;https://learn.unity.com/project/2d-platformer-template?courseId=5c59cf22edbc2a001f59aa5d;C#;C#, Unity, 2D 343 | Karting Microgame;https://learn.unity.com/project/karting-template?courseId=5c59cf22edbc2a001f59aa5d;C#;C#, Unity 344 | Handmade Hero;https://handmadehero.org/watch;C/C++;C/C++, OpenGL, 2D 345 | Breakout;https://learnopengl.com/In-Practice/2D-Game/Breakout;C/C++;C/C++, OpenGL, 2D 346 | Simple RPG Game;http://scottlilly.com/learn-c-by-building-a-simple-rpg-index;C#;C#, SQL, 2D 347 | CNN that Detects Pneumonia from Chest X-Rays;https://towardsdatascience.com/pneumonia-detection-pushing-the-boundaries-of-human-ability-with-deep-learning-ce08dbd0dc20;Python;CNN, Python 348 | Auto-Updating Data Visualizations in Python with AWS;https://www.freecodecamp.org/news/how-to-create-auto-updating-data-visualizations-in-python-with-matplotlib-and-aws/;Python;Python, AWS, Matplotlib 349 | Twitter Sentiment Analysis Tool using GCP and Node;https://www.freecodecamp.org/news/how-to-build-a-twitter-sentiment-analysis-tool/;Javascript;Javascript, NodeJS, API, GCP 350 | Predict Quality of Wine;https://www.freecodecamp.org/news/using-data-science-to-understand-what-makes-wine-taste-good-669b496c67ee/;Python;Python, Matplotlib, Numpy, Pandas 351 | Genetic Algorithms;https://www.youtube.com/watch?v=dSofAXnnFrY;Python;Python, SciKit, Numpy, Pandas 352 | DeepDream;https://www.youtube.com/watch?v=MrBzgvUNr4w;Python;Python, TensorFlow, Visualization 353 | Stock Price Prediction;https://www.youtube.com/watch?v=SSu00IRRraY;Python;Python, SciKit, Matplotlib 354 | Movie Recommendation Systems;https://www.youtube.com/watch?v=9gBC9R-msAk;Python;Python, LightFM 355 | Twitter Sentiment Analysis;https://www.youtube.com/watch?v=o_OZdbCzHUA;Python;Python, API 356 | Create a Voice assistant using python;https://www.geeksforgeeks.org/voice-assistant-using-python/;Python;Python 357 | Vue 2 + Pub/Sub: Build a peer to peer multi-user platform for games;https://www.ably.io/tutorials/peer-to-peer-vue;Javascript;Vue 358 | Build a Community-driven delivery application with Django, Postgres and Javascript;https://medium.com/egen/thinking-of-building-a-contact-tracing-application-heres-what-you-can-do-instead-4522e1d98739;Python;Python, Django, Javascript 359 | Build a JPEG Image decoder using Python;https://yasoob.me/posts/understanding-and-writing-jpeg-decoder-in-python/;Python;Python 360 | Build a Jira clone application with Angular;https://trungk18.com/experience/angular-jira-clone-tutorial-01-planning-and-set-up;Javascript;Angular 361 | Building a Chat Application in Go with ReactJS;https://tutorialedge.net/projects/chat-system-in-go-and-react/part-1-initial-setup/;Golang;Golang, React 362 | Write your own Zip from scratch in C;https://www.hanshq.net/zip.html;C/C++;C/C++ 363 | Write Othello Game from scratch in C;https://www.hanshq.net/othello.html;C/C++;C/C++ 364 | Write BigInt Calculator in C;https://www.hanshq.net/bigint.html;C/C++;C/C++ 365 | Getting Started with Rust by Building a Tiny Markdown Compiler;https://jesselawson.org/rust/getting-started-with-rust-by-building-a-tiny-markdown-compiler/;Rust;Rust 366 | Learn Rust by writing a simple game;https://opensource.com/article/20/12/learn-rust;Rust;Rust 367 | Learn what is a Blockchain by creating one in NodeJS;https://developers.caffeina.com/chiccocoin-learn-what-is-a-blockchain-by-creating-one-in-nodejs-12929a89208b?gi=625cde329489;Javascript;NodeJS 368 | Learn React by building the HackerNews front page;https://github.com/mking/react-hn;Javascript;React 369 | Implementing a Virtual Machine in C;https://felixangell.com/blogs/virtual-machine-in-c;C/C++;C/C++ 370 | Writing a Game Boy emulator;https://cturt.github.io/cinoop.html;C/C++;C/C++ 371 | HTTP Server: Everything you need to know to Build a simple HTTP server from scratch;https://medium.com/from-the-scratch/http-server-what-do-you-need-to-know-to-build-a-simple-http-server-from-scratch-d1ef8945e4fa;C/C++;C/C++ 372 | Write an MQTT broker from scratch;https://codepr.github.io/posts/sol-mqtt-broker;C/C++;C/C++ 373 | Let's code a TCP/IP stack;http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/;C/C++;C/C++ 374 | Astroids Clone;https://gtk.dashgl.com/?folder=Astroids;C/C++;C/C++ 375 | Brickout Clone;https://gtk.dashgl.com/?folder=Brickout;C/C++;C/C++ 376 | Chess Engine In C;https://www.youtube.com/playlist?list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg;C/C++;C/C++ 377 | Coding A Sudoku Solver in C;https://www.youtube.com/playlist?list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW;C/C++;C/C++ 378 | Coding a Rogue/Nethack RPG in C;https://www.youtube.com/playlist?list=PLkTXsX7igf8erbWGYT4iSAhpnJLJ0Nk5G;C/C++;C/C++ 379 | Create a Game Loop using C and SDL;https://www.udemy.com/course/game-loop-c-sdl/;C/C++;C/C++ 380 | Creating a 2D platformer;https://www.parallelrealities.co.uk/tutorials/#ppp;C/C++;C/C++ 381 | Creating a 2D shoot 'em up;https://www.parallelrealities.co.uk/tutorials/#shooter;C/C++;C/C++ 382 | Creating a 2D top-down shooter;https://www.parallelrealities.co.uk/tutorials/#bad;C/C++;C/C++ 383 | Handmade Hero;https://handmadehero.org/;C/C++;C/C++ 384 | Hangman;https://www.youtube.com/playlist?list=PLZ1QII7yudbd2ZHYSEWrSddsvD5PW_r5O;C/C++;C/C++ 385 | How to Program a Text Adventure in C;https://helderman.github.io/htpataic/htpataic01.html;C/C++;C/C++ 386 | Implementing Solitaire in C;https://jborza.github.io/games/2020/07/12/solitaire-cli.html;C/C++;C/C++ 387 | Invaders Clone;https://gtk.dashgl.com/?folder=Invaders;C/C++;C/C++ 388 | Learn How To Develop Your Own GameBoy Games;https://www.youtube.com/playlist?list=PLeEj4c2zF7PaFv5MPYhNAkBGrkx4iPGJo;C/C++;C/C++ 389 | Learn Video Game Programming in C;https://www.youtube.com/playlist?list=PLT6WFYYZE6uLMcPGS3qfpYm7T_gViYMMt;C/C++;C/C++ 390 | Let's Make: Dangerous Dave;https://www.youtube.com/playlist?list=PLSkJey49cOgTSj465v2KbLZ7LMn10bCF9;C/C++;C/C++ 391 | Making a game in C from scratch;https://www.youtube.com/playlist?list=PL7Ej6SUky1357r-Lqf_nogZWHssXP-hvH;C/C++;C/C++ 392 | Making a Video Game from Scratch in C;https://www.youtube.com/playlist?list=PLlaINRtydtNWuRfd4Ra3KeD6L9FP_tDE7;C/C++;C/C++ 393 | On Tetris and Reimplementation;https://brennan.io/2015/06/12/tetris-reimplementation/;C/C++;C/C++ 394 | SDL 2 Isometric Game Tutorial;https://www.youtube.com/playlist?list=PL6Ikt4l3NbVjb7WR-eTgjOBMNCn7f3u7x;C/C++;C/C++ 395 | Simple Tic Tac Toe in C;https://www.youtube.com/playlist?list=PLZ1QII7yudbc7_ZgXA-gIXmME41Rs2GP5;C/C++;C/C++ 396 | Tic-tac-toe Game in C with SDL;https://www.youtube.com/watch?v=gCVMkKgs3uQ;C/C++;C/C++ 397 | Write The Old-School Fire Effect and Bare-Metal Programming in Assembly and C;https://www.hanshq.net/fire.html;C/C++;C/C++ 398 | Writing 2D Games in C using SDL;https://www.youtube.com/watch?v=yFLa3ln16w0;C/C++;C/C++ 399 | Writing a Game Boy Advance Game;https://www.reinterpretcast.com/writing-a-game-boy-advance-game;C/C++;C/C++ 400 | Build a minimal multi-tasking OS kernel for ARM from scratch;https://github.com/jserv/mini-arm-os;C/C++;C/C++ 401 | Build Your Own Shell;https://github.com/tokenrove/build-your-own-shell;C/C++;C/C++ 402 | Building an Operating System for the Raspberry Pi;https://jsandler18.github.io/;C/C++;C/C++ 403 | Hack the Virtual Memory;https://blog.holbertonschool.com/hack-virtual-memory-stack-registers-assembly-code/;C/C++;C/C++ 404 | Learning operating system development using Linux kernel and Raspberry Pi;https://github.com/s-matyukevich/raspberry-pi-os;C/C++;C/C++ 405 | Let's build a shell!;https://github.com/kamalmarhubi/shell-workshop;C/C++;C/C++ 406 | Let's Write a Malloc;https://danluu.com/malloc-tutorial/;C/C++;C/C++ 407 | Roll your own toy UNIX-clone OS;http://www.jamesmolloy.co.uk/tutorial_html/;C/C++;C/C++ 408 | Write a Simple Memory Allocator;https://arjunsreedharan.org/post/148675821737/write-a-simple-memory-allocator;C/C++;C/C++ 409 | Write a System Call;https://brennan.io/2016/11/14/kernel-dev-ep3/;C/C++;C/C++ 410 | Writing a shell in C;https://danishprakash.github.io/2018/01/15/write-a-shell.html;C/C++;C/C++ 411 | Writing a Unix Shell;https://indradhanush.github.io/blog/writing-a-unix-shell-part-1;C/C++;C/C++ 412 | Baby's First Garbage Collector;http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/;C/C++;C/C++ 413 | Compiler Design in C;https://holub.com/goodies/compiler/compilerDesignInC.pdf;C/C++;C/C++ 414 | Let's Build a Compiler: A C & x86 version;https://github.com/lotabout/Let-s-build-a-compiler;C/C++;C/C++ 415 | Write a C Interpreter;https://github.com/lotabout/write-a-C-interpreter;C/C++;C/C++ 416 | Writing a Simple Garbage Collector in C;http://maplant.com/gc.html;C/C++;C/C++ 417 | A dummy blockchain implementation in C;https://myram.xyz/c-blockchain-implementation-1/;C/C++;C/C++ 418 | Build Your Own Text Editor;https://viewsourcecode.org/snaptoken/kilo/;C/C++;C/C++ 419 | How to Write a Video Player in Less Than 1000 Lines;http://dranger.com/ffmpeg/ffmpeg.html;C/C++;C/C++ 420 | Writing an SVG Library;http://www.codedrome.com/svg-library-in-c/;C/C++;C/C++ 421 | Introduction to Ray Tracing: a Simple Method for Creating 3D Images;https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work;C/C++;C/C++ 422 | Raycasting engine of Wolfenstein 3D;http://lodev.org/cgtutor/raycasting.html;C/C++;C/C++ 423 | Physically Based Rendering:From Theory To Implementation;http://www.pbr-book.org/;C/C++;C/C++ 424 | Rasterization: a Practical Implementation;https://www.scratchapixel.com/lessons/3d-basic-rendering/rasterization-practical-implementation/overview-rasterization-algorithm;C/C++;C/C++ 425 | Learning how to write a 3D soft engine from scratch in C#, TypeScript or Javascript;https://www.davrous.com/2013/06/13/tutorial-series-learning-how-to-write-a-3d-soft-engine-from-scratch-in-c-typescript-or-javascript/;C#;C#, TypeScript, Javascript 426 | Build your own 3D renderer;https://avik-das.github.io/build-your-own-raytracer/;Java;Java 427 | How to create your own simple 3D render engine in pure Java;http://blog.rogach.org/2015/08/how-to-create-your-own-simple-3d-render.html;Java;Java 428 | A 3D Modeller;http://aosabook.org/en/500L/a-3d-modeller.html;Python;Python 429 | Augmented Reality with Python and OpenCV;https://bitesofcode.wordpress.com/2017/09/12/augmented-reality-with-python-and-opencv-part-1/;Python;Python, OpenCV 430 | Building a BitTorrent client from scratch in C#;https://www.seanjoflynn.com/research/bittorrent.html;C#;C# 431 | Programming The Blockchain in C#;https://programmingblockchain.gitbooks.io/programmingblockchain/;C#;C# 432 | Neural Network OCR;https://www.codeproject.com/Articles/11285/Neural-Network-OCR;C#;C# 433 | Building a BitTorrent client from the ground up in Go;https://blog.jse.li/posts/torrent/;Golang;Golang 434 | Building Blockchain in Go;https://jeiwan.cc/posts/building-blockchain-in-go-part-1/;Golang;Golang 435 | Code your own blockchain in less than 200 lines of Go;https://medium.com/@mycoralhealth/code-your-own-blockchain-in-less-than-200-lines-of-go-e296282bcffc;Golang;Golang 436 | Build Your Own Container Using Less than 100 Lines of Go;https://www.infoq.com/articles/build-a-container-golang;Golang;Golang 437 | Build a multilayer perceptron with Golang;https://made2591.github.io/posts/neuralnetwork;Golang;Golang 438 | How to build a simple artificial neural network with Go;https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go/;Golang;Golang 439 | Building a Neural Net from Scratch in Go;https://datadan.io/blog/neural-net-with-go;Golang;Golang 440 | The Super Tiny Compiler;https://github.com/hazbo/the-super-tiny-compiler;Golang;Golang 441 | Lexical Scanning in Go;https://www.youtube.com/watch?v=HxaD_trXwRE;Golang;Golang 442 | Writing a simple shell in Go;https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/;Golang;Golang 443 | Let's Create a Simple Load Balancer;https://kasvith.github.io/posts/lets-create-a-simple-lb-go/;Golang;Golang 444 | A BitTorrent client in Python 3.5;http://markuseliasson.se/article/bittorrent-in-python/;Python;Python 445 | Build your own blockchain: a Python tutorial;http://ecomunsing.com/build-your-own-blockchain;Python;Python 446 | A Practical Introduction to Blockchain with Python;http://adilmoujahid.com/posts/2018/03/intro-blockchain-bitcoin-python/;Python;Python 447 | Let’s Build the Tiniest Blockchain;https://medium.com/crypto-currently/lets-build-the-tiniest-blockchain-e70965a248b;Python;Python 448 | How to Build Your First Slack Bot with Python;https://www.fullstackpython.com/blog/build-first-slack-bot-python.html;Python;Python 449 | How to build a Slack Bot with Python using Slack Events API & Django under 20 minute;https://medium.com/freehunch/how-to-build-a-slack-bot-with-python-using-slack-events-api-django-under-20-minute-code-included-269c3a9bf64e;Python;Python 450 | Creating Reddit Bot with Python & PRAW;https://www.youtube.com/playlist?list=PLIFBTFgFpoJ9vmYYlfxRFV6U_XhG-4fpP;Python;Python 451 | Write your own miniature Redis with Python;http://charlesleifer.com/blog/building-a-simple-redis-server-with-python/;Python;Python 452 | A workshop on Linux containers: Rebuild Docker from Scratch;https://github.com/Fewbytes/rubber-docker;Python;Python 453 | A proof-of-concept imitation of Docker, written in 100% Python;https://github.com/tonybaloney/mocker;Python;Python 454 | Just enough of a Git client to create a repo, commit, and push itself to GitHub;https://benhoyt.com/writings/pygit/;Python;Python 455 | Optical Character Recognition OCR;http://aosabook.org/en/500L/optical-character-recognition-ocr.html;Python;Python 456 | Traffic signs classification with a convolutional network;https://navoshta.com/traffic-signs-classification/;Python;Python 457 | Generate Music using LSTM Neural Network in Keras;https://towardsdatascience.com/how-to-generate-music-using-a-lstm-neural-network-in-keras-68786834d4c5;Python;Python 458 | A Python Interpreter Written in Python;http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html;Python;Python 459 | Building a search engine using Redis and redis-py;http://www.dr-josiah.com/2010/07/building-search-engine-using-redis-and.html;Python;Python 460 | Python Tutorial: Make Your Own Text Editor;https://www.youtube.com/watch?v=xqDonHEYPgA;Python;Python 461 | Developing a License Plate Recognition System with Machine Learning in Python;https://blog.devcenter.co/developing-a-license-plate-recognition-system-with-machine-learning-in-python-787833569ccd;Python;Python 462 | Build a Deep Learning Library;https://www.youtube.com/watch?v=o64FV-ez6Gw;Python;Python 463 | Recommender Systems in Python: Beginner Tutorial;https://www.datacamp.com/community/tutorials/recommender-systems-python;Python;Python 464 | Write SMS-spam detector with Scikit-learn;https://medium.com/@kopilov.vlad/detect-sms-spam-in-kaggle-with-scikit-learn-5f6afa7a3ca2;Python;Python 465 | A Simple Content-Based Recommendation Engine in Python;http://blog.untrod.com/2016/06/simple-similar-products-recommendation-engine-in-python.html;Python;Python 466 | Stock Market Predictions with LSTM in Python;https://www.datacamp.com/community/tutorials/lstm-python-stock-market;Python;Python 467 | Creating Your First Blockchain with Java;https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa;Java;Java 468 | How To Make a Scary Russian Twitter Bot With Java;https://medium.com/@SeloSlav/how-to-make-a-scary-russian-twitter-bot-with-java-b7b62768a3ac;Java;Java 469 | How to Build an Android Reddit App;https://www.youtube.com/playlist?list=PLgCYzUzKIBE9HUJU-upNvl3TRVAo9W47y;Java;Java 470 | A Compiler From Scratch;https://www.destroyallsoftware.com/screencasts/catalog/a-compiler-from-scratch;Ruby;Ruby 471 | Markdown compiler from scratch in Ruby;https://blog.beezwax.net/2017/07/07/writing-a-markdown-compiler/;Ruby;Ruby 472 | How to write a template engine in less than 30 lines of code;http://bits.citrusbyte.com/how-to-write-a-template-library/;Ruby;Ruby 473 | A Pedometer in the Real World;http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html;Ruby;Ruby 474 | A cryptocurrency implementation in less than 1500 lines of code;https://github.com/conradoqg/naivecoin;Javascript;Javascript 475 | Build your own Blockchain in Javascript;https://github.com/nambrot/blockchain-in-js;Javascript;Javascript 476 | Learn & Build a Javascript Blockchain;https://medium.com/digital-alchemy-holdings/learn-build-a-javascript-blockchain-part-1-ca61c285821e;Javascript;Javascript 477 | Creating a blockchain with Javascript;https://github.com/SavjeeTutorials/SavjeeCoin;Javascript;Javascript 478 | How To Launch Your Own Production-Ready Cryptocurrency;https://hackernoon.com/how-to-launch-your-own-production-ready-cryptocurrency-ab97cb773371;Javascript;Javascript 479 | Writing a Blockchain in Node.js;https://www.hackdoor.io/articles/writing-a-blockchain-in-nodejs-6512fec33307;Javascript;Javascript 480 | A DIY guide to build your own React;https://github.com/hexacta/didact;Javascript;Javascript 481 | Building React From Scratch;https://www.youtube.com/watch?v=_MAD4Oly9yg;Javascript;Javascript 482 | Building Your Own React Clone in Five Easy Steps;https://blog.javascripting.com/2016/10/05/building-your-own-react-clone-in-five-easy-steps/;Javascript;Javascript 483 | Gooact: React in 160 lines of Javascript;https://medium.com/@sweetpalma/gooact-react-in-160-lines-of-javascript-44e0742ad60f;Javascript;Javascript 484 | Redux: Implementing Store from Scratch;https://egghead.io/lessons/react-redux-implementing-store-from-scratch;Javascript;Javascript 485 | Build Your own Simplified AngularJS in 200 Lines of Javascript;https://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/;Javascript;Javascript 486 | Make Your Own AngularJS;http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html;Javascript;Javascript 487 | How to write your own Virtual DOM;https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060;Javascript;Javascript 488 | Build your own 8-Ball Pool game from scratch;https://www.youtube.com/watch?v=aXwCrtAo4Wc;Javascript;Javascript 489 | How to Make Your First Roguelike;https://gamedevelopment.tutsplus.com/tutorials/how-to-make-your-first-roguelike--gamedev-13677;Javascript;Javascript 490 | Neural Network implementation in Javascript, by an example;https://franpapers.com/en/machine-learning-ai-en/2017-neural-network-implementation-in-javascript-by-an-example/;Javascript;Javascript 491 | The Super Tiny Compiler;https://github.com/jamiebuilds/the-super-tiny-compiler;Javascript;Javascript 492 | The Super Tiny Interpreter;https://github.com/keyanzhang/the-super-tiny-interpreter;Javascript;Javascript 493 | Build a Regex Engine in Less than 40 Lines of Code;https://nickdrane.com/build-your-own-regex/;Javascript;Javascript 494 | Javascript template engine in just 20 lines;http://krasimirtsonev.com/blog/article/Javascript-template-engine-in-just-20-line;Javascript;Javascript 495 | How to build a simple actor-based blockchain;https://medium.freecodecamp.org/how-to-build-a-simple-actor-based-blockchain-aac1e996c177;Scala;Scala 496 | Naivecoin: a tutorial for building a cryptocurrency;https://lhartikk.github.io/;TypeScript;TypeScript 497 | NaivecoinStake: a tutorial for building a cryptocurrency with the Proof of Stake consensus;https://naivecoinstake.learn.uno/;TypeScript;TypeScript 498 | Reimplementing “git clone” in Haskell from the bottom up;http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/;Haskell;Haskell 499 | Creating a Simple Facebook Messenger AI Bot with API.ai in Node.js;https://tutorials.botsfloor.com/creating-a-simple-facebook-messenger-ai-bot-with-api-ai-in-node-js-50ae2fa5c80d;Javascript;NodeJS 500 | How to make a responsive telegram bot;https://www.sohamkamani.com/blog/2016/09/21/making-a-telegram-bot/;Javascript;NodeJS 501 | Create a Discord bot;https://discordjs.guide/;Javascript;NodeJS 502 | gifbot - Building a GitHub App;https://blog.scottlogic.com/2017/05/22/gifbot-github-integration.html;Javascript;NodeJS 503 | How to create a real-world NodeJS CLI app;https://medium.freecodecamp.org/how-to-create-a-real-world-node-cli-app-with-node-391b727bbed3;Javascript;NodeJS 504 | A bot for Starcraft in Rust, C or any other language;https://habr.com/en/post/436254/;Rust;Rust 505 | Building a DNS server in Rust;https://github.com/EmilHernvall/dnsguide/blob/master/README.md;Rust;Rust 506 | A Regular Expression Matcher;https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html;C/C++;C/C++ 507 | Regular Expression Matching Can Be Simple And Fast;https://swtch.com/~rsc/regexp/regexp1.html;C/C++;C/C++ 508 | How to write an emulator CHIP-8 interpreter;http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/;C/C++;C/C++ 509 | Emulation tutorial CHIP-8 interpreter;http://www.codeslinger.co.uk/pages/projects/chip8.html;C/C++;C/C++ 510 | Emulation tutorial GameBoy emulator;http://www.codeslinger.co.uk/pages/projects/gameboy.html;C/C++;C/C++ 511 | Emulation tutorial Master System emulator;http://www.codeslinger.co.uk/pages/projects/mastersystem/memory.html;C/C++;C/C++ 512 | NES Emulator From Scratch;https://www.youtube.com/playlist?list=PLrOv9FMX8xJHqMvSGB_9G9nZZ_4IgteYf;C/C++;C/C++ 513 | Designing a Simple Text Editor;http://www.fltk.org/doc-1.1/editor.html;C/C++;C/C++ 514 | Build your own VR headset for $100;https://github.com/relativty/Relativ;C/C++;C/C++ 515 | How X Window Managers work and how to write one;https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html;C/C++;C/C++ 516 | How a 64k intro is made;http://www.lofibucket.com/articles/64k_intro.html;C/C++;C/C++ 517 | From zero to fully functional video conference app using Go and webRTC;https://medium.com/@ramezemadaiesec/from-zero-to-fully-functional-video-conference-app-using-go-and-webrtc-7d073c9287da;Golang;Golang, Angular, WebRTC 518 | HOW TO CREATE A WEBRTC VIDEO CALL APP WITH NODE.JS;https://pusher.com/tutorials/webrtc-video-call-app-nodejs;Javascript;NodeJS, WebRTC 519 | How to create a video chat app with WebRTC;https://youtu.be/DvlyzDZDEq4;Javascript;Javascript, WebRTC 520 | Build a Video Chat Application with Python, Javascript and Twilio Programmable Video;https://www.twilio.com/blog/build-video-chat-application-python-javascript-twilio-programmable-video;Python;Python, Javascript, Flask 521 | How to Build a Deep Neural Network from Scratch with Julia;https://medium.com/datadriveninvestor/how-to-build-a-deep-neural-network-from-scratch-with-julia-862116a194c;Julia;Julia 522 | Programming ATtiny85 with Arduino Uno;https://create.arduino.cc/projecthub/arjun/programming-attiny85-with-arduino-uno-afb829;Arduino;Arduino 523 | How to Interface GPS Module (NEO-6m) with Arduino;https://create.arduino.cc/projecthub/ruchir1674/how-to-interface-gps-module-neo-6m-with-arduino-8f90ad;Arduino;Arduino 524 | Home Automation Using Raspberry Pi 2 And Windows 10 IoT;https://create.arduino.cc/projecthub/AnuragVasanwala/home-automation-using-raspberry-pi-2-and-windows-10-iot-0dcefc;Arduino;Arduino 525 | Portable Arduino Temp/Humidity Sensor with LCD;https://create.arduino.cc/projecthub/ThothLoki/portable-arduino-temp-humidity-sensor-with-lcd-a750f4;Arduino;Arduino 526 | "Make an Autonomous ""Follow Me"" Cooler";https://create.arduino.cc/projecthub/hackershack/make-an-autonomous-follow-me-cooler-7ca8bc;Arduino;Arduino 527 | "How to ""Multithread"" an Arduino (Protothreading Tutorial)";https://create.arduino.cc/projecthub/reanimationxp/how-to-multithread-an-arduino-protothreading-tutorial-dd2c37;Arduino;Arduino 528 | Windows Remote Arduino;https://create.arduino.cc/projecthub/windowsiot/basic-windows-remote-arduino-47eeb9;Arduino;Arduino 529 | Otto DIY build your own robot in one hour!;https://create.arduino.cc/projecthub/cparrapa/otto-diy-build-your-own-robot-in-one-hour-5f2a1c;Arduino;Arduino 530 | Detecting Obstacles and Warning - Arduino and Ultrasonic;https://create.arduino.cc/projecthub/ammaratef45/detecting-obstacles-and-warning-arduino-and-ultrasonic-13e5ea;Arduino;Arduino 531 | Greenhouse;https://create.arduino.cc/projecthub/312663/greenhouse-1ec2ee;Arduino;Arduino 532 | Home Automation using Raspberry Pi 2 (Windows 10 IoT Core);https://create.arduino.cc/projecthub/cyborg-titanium-14/home-automation-using-raspberry-pi-2-windows-10-iot-core-784235;Arduino;Arduino 533 | Sketch It (CNC Plotter);https://create.arduino.cc/projecthub/Yogeshmodi/sketch-it-cnc-plotter-95019d;Arduino;Arduino 534 | Motion Following Motorized Camera Base;https://create.arduino.cc/projecthub/lindsi8784/motion-following-motorized-camera-base-61afeb;Arduino;Arduino 535 | Dark Theme for Arduino IDE;https://create.arduino.cc/projecthub/rahulkhanna/dark-theme-for-arduino-ide-17c001;Arduino;Arduino 536 | Measure Heart Rate and SpO2 with MAX30102;https://create.arduino.cc/projecthub/SurtrTech/measure-heart-rate-and-spo2-with-max30102-c2b4d8;Arduino;Arduino 537 | DHT11 Temperature/Humidity Sensor;https://create.arduino.cc/projecthub/techno_z/dht11-temperature-humidity-sensor-98b03b;Arduino;Arduino 538 | Simple Arduino Uno - ESP 8266 Integration;https://create.arduino.cc/projecthub/circuito-io-team/simple-arduino-uno-esp-8266-integration-dba10b;Arduino;Arduino 539 | Third Eye for The Blind;https://create.arduino.cc/projecthub/muhammedazhar/third-eye-for-the-blind-8c246d;Arduino;Arduino 540 | Making LCD Thermometer With Arduino And LM35/36;https://create.arduino.cc/projecthub/TheGadgetBoy/making-lcd-thermometer-with-arduino-and-lm35-36-c058f0;Arduino;Arduino 541 | Arduino Sonar;https://create.arduino.cc/projecthub/faweiz/arduino-radar-69b8fe;Arduino;Arduino 542 | Getting started with IMU (6 DOF) motion sensor;https://create.arduino.cc/projecthub/Aritro/getting-started-with-imu-6-dof-motion-sensor-96e066;Arduino;Arduino 543 | WiFi IR Blaster;https://create.arduino.cc/projecthub/BuddyC/wifi-ir-blaster-af6bca;Arduino;Arduino 544 | DHT11 /DHT22 Temperature Sensor;https://create.arduino.cc/projecthub/porrey/dht11-dht22-temperature-sensor-077790;Arduino;Arduino 545 | Water Quality Monitoring System;https://create.arduino.cc/projecthub/chanhj/water-quality-monitoring-system-ddcb43;Arduino;Arduino 546 | IoT Pet Feeder;https://create.arduino.cc/projecthub/circuito-io-team/iot-pet-feeder-10a4f3;Arduino;Arduino 547 | How to Make a Big 3D Printer at Home Using Arduino;https://create.arduino.cc/projecthub/DesiEngineer/how-to-make-a-big-3d-printer-at-home-using-arduino-4a7b79;Arduino;Arduino 548 | Control LED from web app using ESP8266 Serial WIFI module;https://create.arduino.cc/projecthub/jaiprak/control-led-from-web-app-using-esp8266-serial-wifi-module-cdf419;Arduino;Arduino 549 | Electronic Piano Keyboard With Preset Songs;https://create.arduino.cc/projecthub/lindsi8784/electronic-piano-keyboard-with-preset-songs-74ee7c;Arduino;Arduino 550 | Connect to Blynk using ESP8266 as Arduino Uno wifi shield;https://create.arduino.cc/projecthub/nolan-mathews/connect-to-blynk-using-esp8266-as-arduino-uno-wifi-shield-m1-46a453;Arduino;Arduino 551 | Hand Gesture Controlled Robot;https://create.arduino.cc/projecthub/mayooghgirish/hand-gesture-controlled-robot-4d7587;Arduino;Arduino 552 | Home Smart Home;https://create.arduino.cc/projecthub/iddi/home-smart-home-ab15ed;Arduino;Arduino 553 | Mini Arduino CNC;https://create.arduino.cc/projecthub/me_zain/mini-arduino-cnc-7e4e30;Arduino;Arduino 554 | Arduino Fingerprint Sensor Tutorial;https://create.arduino.cc/projecthub/nickthegreek82/arduino-fingerprint-sensor-tutorial-103bb4;Arduino;Arduino 555 | Magnet Levitation with Arduino;https://create.arduino.cc/projecthub/jsirgado/magnet-levitation-with-arduino-eeeee4;Arduino;Arduino 556 | Arduino Altair 8800 Simulator;https://create.arduino.cc/projecthub/david-hansel/arduino-altair-8800-simulator-3594a6;Arduino;Arduino 557 | Arduino Wireless Weather Station;https://create.arduino.cc/projecthub/nickthegreek82/arduino-wireless-weather-station-dad470;Arduino;Arduino 558 | Make your first Arduino robot - The best beginners guide!;https://create.arduino.cc/projecthub/muhammedazhar/make-your-first-arduino-robot-the-best-beginners-guide-d21a4f;Arduino;Arduino 559 | Plant Communicator;https://create.arduino.cc/projecthub/arduino/plant-communicator-7ea06f;Arduino;Arduino 560 | Arduino Lie Detector;https://create.arduino.cc/projecthub/BuildItDR/arduino-lie-detector-a0b914;Arduino;Arduino 561 | Arduino with IR Sensor;https://create.arduino.cc/projecthub/Raushancpr/arduino-with-ir-sensor-1579b6;Arduino;Arduino 562 | Otto DIY+ Arduino Bluetooth robot easy to 3D Print;https://create.arduino.cc/projecthub/ottoplus/otto-diy-arduino-bluetooth-robot-easy-to-3d-print-33406c;Arduino;Arduino 563 | Arduino Game By LCD;https://create.arduino.cc/projecthub/muhamd-magdy/arduino-game-by-lcd-9a3bc2;Arduino;Arduino 564 | Smart Thermostat ;https://create.arduino.cc/projecthub/Arduino_Genuino/smart-thermostat-e1f400;Arduino;Arduino 565 | Personal Weather Station (Arduino+ ESP8266 + Thingspeak);https://create.arduino.cc/projecthub/Blue_jack/personal-weather-station-arduino-esp8266-thingspeak-8d5cba;Arduino;Arduino 566 | Control Arduino Uno Using ESP8266 WiFi Module and Blynk App;https://create.arduino.cc/projecthub/adithya-tg/control-arduino-uno-using-esp8266-wifi-module-and-blynk-app-504494;Arduino;Arduino 567 | Clock Set Date Time;https://create.arduino.cc/projecthub/tittiamo68/clock-set-date-time-0d46a4;Arduino;Arduino 568 | Easy Motion and Gesture Detection by PIR Sensor & Arduino;https://create.arduino.cc/projecthub/electropeak/easy-motion-and-gesture-detection-by-pir-sensor-arduino-101fcc;Arduino;Arduino 569 | Stringent, the $15 Wall Plotter;https://create.arduino.cc/projecthub/fredrikstridsman/stringent-the-15-wall-plotter-d965ca;Arduino;Arduino 570 | Arduino-Based Universal AC Motor Speed Controller;https://create.arduino.cc/projecthub/saulius-bandzevicius/arduino-based-universal-ac-motor-speed-controller-a4ceaf;Arduino;Arduino 571 | Arduino Kitchen Timer;https://create.arduino.cc/projecthub/i-and-myself/arduino-kitchen-timer-db8ba6;Arduino;Arduino 572 | Send and Receive Text Messages (SMS) with GSM SIM900 Shield;https://create.arduino.cc/projecthub/mitov/send-and-receive-text-messages-sms-with-gsm-sim900-shield-6d53c6;Arduino;Arduino 573 | Arduino LIDAR;https://create.arduino.cc/projecthub/Abhinav_Abhi/arduino-lidar-917404;Arduino;Arduino 574 | J.A.R.V.I.S. : A Virtual Home Assistant;https://create.arduino.cc/projecthub/blitzkrieg/j-a-r-v-i-s-a-virtual-home-assistant-d61255;Arduino;Arduino 575 | Arduino UNO Guitar Pedal;https://create.arduino.cc/projecthub/electrosmash/arduino-uno-guitar-pedal-b2ba96;Arduino;Arduino 576 | Ultrasonic Map-Maker using an Arduino Yun;https://create.arduino.cc/projecthub/Satyavrat/ultrasonic-map-maker-using-an-arduino-yun-37c72e;Arduino;Arduino 577 | Take Control Over Lego Power Functions;https://create.arduino.cc/projecthub/Notthemarsian/take-control-over-lego-power-functions-ee0bfa;Arduino;Arduino 578 | Old-School Two-Way Pager with Arduino;https://create.arduino.cc/projecthub/mschaus/old-school-two-way-pager-with-arduino-cb4785;Arduino;Arduino 579 | Simplest UNO Digital Clock Ever;https://create.arduino.cc/projecthub/plouc68000/simplest-uno-digital-clock-ever-4613aa;Arduino;Arduino 580 | nRF24L01+ with ATtiny85 3 Pins;https://create.arduino.cc/projecthub/arjun/nrf24l01-with-attiny85-3-pins-74a1f2;Arduino;Arduino 581 | Speak to Arduino and Control It with Google Assistant;https://create.arduino.cc/projecthub/electropeak/speak-to-arduino-and-control-it-with-google-assistant-3791ee;Arduino;Arduino 582 | Mind Control Drone;https://create.arduino.cc/projecthub/WesleyCMD/mind-control-drone-c8b28a;Arduino;Arduino 583 | Herb Box Eco System;https://create.arduino.cc/projecthub/walwode/herb-box-eco-system-7c51b3;Arduino;Arduino 584 | Solar Panel Sun Tracker - Phone Charger;https://create.arduino.cc/projecthub/FIELDING/solar-panel-sun-tracker-phone-charger-f669ce;Arduino;Arduino 585 | Pool Controller;https://create.arduino.cc/projecthub/mmackes/pool-controller-8dfa69;Arduino;Arduino 586 | Arduino DTH22 Humidity Temperature With LCD I2C 16x2 Display;https://create.arduino.cc/projecthub/giftedmedia/arduino-dth22-humidity-temperature-with-lcd-i2c-16x2-display-8fe3c9;Arduino;Arduino 587 | Speech Recognition and Synthesis with Arduino;https://create.arduino.cc/projecthub/msb4180/speech-recognition-and-synthesis-with-arduino-2f0363;Arduino;Arduino 588 | Crazy Engineer’s Drawing Robot Arduino GRBL CoreXY Drawbot ;https://create.arduino.cc/projecthub/arnabdasbwn/crazy-engineer-s-drawing-robot-arduino-grbl-corexy-drawbot-fb5269;Arduino;Arduino 589 | Don't Buy a GSM Module, Use Your Old Phone!;https://create.arduino.cc/projecthub/BuildItDR/don-t-buy-a-gsm-module-use-your-old-phone-4b0d4b;Arduino;Arduino 590 | Android App-Based Home Automation System Using IOT;https://create.arduino.cc/projecthub/autoshack/android-app-based-home-automation-system-using-iot-4cad38;Arduino;Arduino 591 | Ultrasonic Security System;https://create.arduino.cc/projecthub/Krepak/ultrasonic-security-system-3afe13;Arduino;Arduino 592 | Indoor Air Quality Monitoring System;https://create.arduino.cc/projecthub/east-west-university/indoor-air-quality-monitoring-system-5b5244;Arduino;Arduino 593 | Arduino UNO Mini-Weather Station;https://create.arduino.cc/projecthub/igorF2/arduino-uno-mini-weather-station-31b555;Arduino;Arduino 594 | Vibration Sensor Module;https://create.arduino.cc/projecthub/albertoz/vibration-sensor-module-c88067;Arduino;Arduino 595 | Arduino Indoor Garden;https://create.arduino.cc/projecthub/mega-das/arduino-indoor-garden-5d975c;Arduino;Arduino 596 | Arduino Clock with Neopixel Ring Animation;https://create.arduino.cc/projecthub/sfrwmaker/arduino-clock-with-neopixel-ring-animation-ff3422;Arduino;Arduino 597 | FM Radio;https://create.arduino.cc/projecthub/Notthemarsian/fm-radio-97715f;Arduino;Arduino 598 | Arduino Keyless Door Lock System with Keypad and LCD;https://create.arduino.cc/projecthub/diy-hacking/arduino-keyless-door-lock-system-with-keypad-and-lcd-bcad2e;Arduino;Arduino 599 | Arduino Dynamic Web Control;https://create.arduino.cc/projecthub/phpoc_man/arduino-dynamic-web-control-8da805;Arduino;Arduino 600 | How to make mini CNC 2D plotter using scrap DVD drive, L293D;https://create.arduino.cc/projecthub/user421848217/how-to-make-mini-cnc-2d-plotter-using-scrap-dvd-drive-l293d-420016;Arduino;Arduino 601 | Track ME;https://create.arduino.cc/projecthub/Tiobel/track-me-457576;Arduino;Arduino 602 | Servo Motor Using Arduino & PCA9685 16 Chanel Module;https://create.arduino.cc/projecthub/jithinsanal1610/servo-motor-using-arduino-pca9685-16-chanel-module-d9666e;Arduino;Arduino 603 | Open Source Pulse Oximeter for COVID-19;https://create.arduino.cc/projecthub/gatoninja236/open-source-pulse-oximeter-for-covid-19-4764c5;Arduino;Arduino 604 | AI-Thinker AI-Cloud Inside ESP8266 Update Firmware(REVIEWED);https://create.arduino.cc/projecthub/luciorocha/ai-thinker-ai-cloud-inside-esp8266-update-firmware-reviewed-3e306c;Arduino;Arduino 605 | Telegram Bot with ESP8266;https://create.arduino.cc/projecthub/coderscafe/telegram-bot-with-esp8266-dbada8;Arduino;Arduino 606 | Arduino TEA5767 FM Radio Receiver;https://create.arduino.cc/projecthub/nickthegreek82/arduino-tea5767-fm-radio-receiver-543480;Arduino;Arduino 607 | Arduino PC Monitor;https://create.arduino.cc/projecthub/zakrzu/arduino-pc-monitor-66c07a;Arduino;Arduino 608 | Programming ATmega8 Using Arduino IDE;https://create.arduino.cc/projecthub/hami/programming-atmega8-using-arduino-ide-90c2ad;Arduino;Arduino 609 | Lightweight Arduino GSM Mobile Phone;https://create.arduino.cc/projecthub/Avishek/lightweight-arduino-gsm-mobile-phone-b241d3;Arduino;Arduino 610 | Wi-fi Controlled FPV Rover Robot (with Arduino and ESP8266);https://create.arduino.cc/projecthub/igorF2/wi-fi-controlled-fpv-rover-robot-with-arduino-and-esp8266-383a8c;Arduino;Arduino 611 | Robotic Arm from Recycled Materials;https://create.arduino.cc/projecthub/circuito-io-team/robotic-arm-from-recycled-materials-7e318a;Arduino;Arduino 612 | Control your Light System Using Smart Phone;https://create.arduino.cc/projecthub/ahmedyassin/control-your-light-system-using-smart-phone-3463b9;Arduino;Arduino 613 | Love You Pillow;https://create.arduino.cc/projecthub/arduino/love-you-pillow-f08931;Arduino;Arduino 614 | Arduino Based Amazon Echo Using 1Sheeld;https://create.arduino.cc/projecthub/ahmedismail3115/arduino-based-amazon-echo-using-1sheeld-84fa6f;Arduino;Arduino 615 | Automatic Plant Watering System with Arduino;https://create.arduino.cc/projecthub/robotgeek-projects-team/automatic-plant-watering-system-with-arduino-9d3d8e;Arduino;Arduino 616 | Smart Garbage Monitoring System Using Arduino 101;https://create.arduino.cc/projecthub/Technovation/smart-garbage-monitoring-system-using-arduino-101-3b813c;Arduino;Arduino 617 | Food Detector;https://create.arduino.cc/projecthub/crispylel/food-detector-6178cc;Arduino;Arduino 618 | Voice Controlled Car;https://create.arduino.cc/projecthub/Yug_Ajmera/voice-controlled-car-983ef1;Arduino;Arduino 619 | DIY Logic Analyzer;https://create.arduino.cc/projecthub/vincenzo-g/diy-logic-analyzer-f61ee5;Arduino;Arduino 620 | Arduino Temperature Control;https://create.arduino.cc/projecthub/pandhoit/arduino-temperature-control-397dad;Arduino;Arduino 621 | Visualising sensor data using Arduino and Processing;https://create.arduino.cc/projecthub/sowmith/visualising-sensor-data-using-arduino-and-processing-e707f0;Arduino;Arduino 622 | Blockly@rduino: Create Code with Blocks;https://create.arduino.cc/projecthub/libreduc/blockly-rduino-create-code-with-blocks-b6d3e4;Arduino;Arduino 623 | 48 x 8 Scrolling LED Matrix using Arduino.;https://create.arduino.cc/projecthub/kksjunior/48-x-8-scrolling-led-matrix-using-arduino-9a53b8;Arduino;Arduino 624 | Gesture Recognition Using Accelerometer and ESP;https://create.arduino.cc/projecthub/mellis/gesture-recognition-using-accelerometer-and-esp-71faa1;Arduino;Arduino 625 | Arduino Spider Robot (Quadruped);https://create.arduino.cc/projecthub/mega-das/arduino-spider-robot-quadruped-57b832;Arduino;Arduino 626 | Arduino 4WD RC Car;https://create.arduino.cc/projecthub/andriy-baranov/arduino-4wd-rc-car-639953;Arduino;Arduino 627 | OSEPP LCD and keypad shield;https://create.arduino.cc/projecthub/niftyjoeman/osepp-lcd-and-keypad-shield-d5b46e;Arduino;Arduino 628 | Alexa Based Smart Home Monitoring;https://create.arduino.cc/projecthub/adithya-tg/alexa-based-smart-home-monitoring-e36b7f;Arduino;Arduino 629 | Arduino Controlled Pinball Machine;https://create.arduino.cc/projecthub/BobB/arduino-controlled-pinball-machine-525863;Arduino;Arduino 630 | Soil Moisture Sensor With LCD Display;https://create.arduino.cc/projecthub/PatelDarshil/soil-moisture-sensor-with-lcd-display-71d6df;Arduino;Arduino 631 | Maze Solver Robot, using Artificial Intelligence;https://create.arduino.cc/projecthub/mjrobot/maze-solver-robot-using-artificial-intelligence-4318cf;Arduino;Arduino 632 | BMP280: Measure Temperature, Pressure and Altitude;https://create.arduino.cc/projecthub/SurtrTech/bmp280-measure-temperature-pressure-and-altitude-e1c857;Arduino;Arduino 633 | How to Configure NeoPixels Using Vixen Lights and Arduino;https://create.arduino.cc/projecthub/nenitoshouse/how-to-configure-neopixels-using-vixen-lights-and-arduino-527631;Arduino;Arduino 634 | Home Management System - Control your home from a website;https://create.arduino.cc/projecthub/ahmedel-hinidy2014/home-management-system-control-your-home-from-a-website-076846;Arduino;Arduino 635 | Automated Staircase RGB LED Lights ;https://create.arduino.cc/projecthub/notenoughtech-com/automated-staircase-rgb-led-lights-7d26d5;Arduino;Arduino 636 | Arduino Ethernet Rfid card reader;https://create.arduino.cc/projecthub/smerkousdavid/arduino-ethernet-rfid-card-reader-1ffdee;Arduino;Arduino 637 | Control your light system with your voice;https://create.arduino.cc/projecthub/maharaafat93/control-your-light-system-by-your-voice-bbabff;Arduino;Arduino 638 | Arduino Sunflower;https://create.arduino.cc/projecthub/Rick_Findus/arduino-sunflower-c4fd84;Arduino;Arduino 639 | Smart Disinfection and Sanitation Tunnel;https://create.arduino.cc/projecthub/yugn27/smart-disinfection-and-sanitation-tunnel-aefe50;Arduino;Arduino 640 | Health Band - A Smart Assistant for the Elderly;https://create.arduino.cc/projecthub/Technovation/health-band-a-smart-assistant-for-the-elderly-0fed12;Arduino;Arduino 641 | Soldering Iron Controller for Hakko 907 v.2;https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-v-2-fc75d7;Arduino;Arduino 642 | Windows PC Lock/Unlock Using RFID ;https://create.arduino.cc/projecthub/kksjunior/windows-pc-lock-unlock-using-rfid-5021a6;Arduino;Arduino 643 | IoT Made Easy w/ UNO, ESP-01, ThingSpeak & MIT App Inventor;https://create.arduino.cc/projecthub/mjrobot/iot-made-easy-w-uno-esp-01-thingspeak-mit-app-inventor-da6a50;Arduino;Arduino 644 | Arduino Traffic Light Simulator;https://create.arduino.cc/projecthub/techno_z/arduino-traffic-light-simulator-2ec9f7;Arduino;Arduino 645 | How to make Arduino based Automatic Door Opening;https://create.arduino.cc/projecthub/Vijendra/how-to-make-arduino-based-automatic-door-opening-3eb5cc;Arduino;Arduino 646 | Bluetooth RC Car with Remote Arduino;https://create.arduino.cc/projecthub/windowsiot/bluetooth-rc-car-with-remote-arduino-5f09c9;Arduino;Arduino 647 | DIY Flight Instruments for Horizon and Compass;https://create.arduino.cc/projecthub/Aritro/diy-flight-instruments-for-horizon-and-compass-43e2f6;Arduino;Arduino 648 | Visualising 3D Motion of IMU sensor;https://create.arduino.cc/projecthub/Aritro/visualising-3d-motion-of-imu-sensor-3933b0;Arduino;Arduino 649 | DIY Anemometer: Wind Speed Sensor Device;https://create.arduino.cc/projecthub/achindra/diy-anemometer-wind-speed-sensor-device-84a2e3;Arduino;Arduino 650 | Bluetooth-Controlled Car;https://create.arduino.cc/projecthub/Yogeshmodi/bluetooth-controlled-car-e8c90e;Arduino;Arduino 651 | Air Surfer;https://create.arduino.cc/projecthub/antonramenskiy/air-surfer-a2d80f;Arduino;Arduino 652 | Alzheimer's Assistant;https://create.arduino.cc/projecthub/abdullahsadiq/alzheimer-s-assistant-a017ad;Arduino;Arduino 653 | Use the Force... Or your Brainwaves?;https://create.arduino.cc/projecthub/Imetomi/use-the-force-or-your-brainwaves-9e839b;Arduino;Arduino 654 | WaterPi: Houseplant Remote Watering and Monitoring System;https://create.arduino.cc/projecthub/demirhanaydin/waterpi-houseplant-remote-watering-and-monitoring-system-340400;Arduino;Arduino 655 | The hydroMazing Smart Garden System;https://create.arduino.cc/projecthub/bitsandbots/the-hydromazing-smart-garden-system-a802e5;Arduino;Arduino 656 | ArduTester V1.13: The Arduino UNO Transistor Tester;https://create.arduino.cc/projecthub/plouc68000/ardutester-v1-13-the-arduino-uno-transistor-tester-dbafb4;Arduino;Arduino 657 | Arduino Touch Tic-Tac-Toe Game;https://create.arduino.cc/projecthub/nickthegreek82/arduino-touch-tic-tac-toe-game-792816;Arduino;Arduino 658 | Using a Wii Nunchuk with Arduino;https://create.arduino.cc/projecthub/infusion/using-a-wii-nunchuk-with-arduino-597254;Arduino;Arduino 659 | Distance Sensor and OLED;https://create.arduino.cc/projecthub/javier-munoz-saez/distance-sensor-and-oled-ad9e35;Arduino;Arduino 660 | Lcd Display in Real Time.;https://create.arduino.cc/projecthub/YoussefSabaa/lcd-display-in-real-time-ea0b7b;Arduino;Arduino 661 | Control Up to 65,280 Relays with Your Arduino!;https://create.arduino.cc/projecthub/chuygen/control-up-to-65-280-relays-with-your-arduino-6a6256;Arduino;Arduino 662 | Temperature sensor;https://create.arduino.cc/projecthub/trduunze/temperature-sensor-36c420;Arduino;Arduino 663 | Arduino Mp3 player + Distance sensor = FUN;https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-distance-sensor-fun-6b1bce;Arduino;Arduino 664 | Arduino TV out cable;https://create.arduino.cc/projecthub/paulscott56/arduino-tv-out-cable-64de69;Arduino;Arduino 665 | 10 Buttons Using 1 Interrupt;https://create.arduino.cc/projecthub/Svizel_pritula/10-buttons-using-1-interrupt-2bd1f8;Arduino;Arduino 666 | Arduino Sending Sensor Data to MySQL Server (PHPMYADMIN);https://create.arduino.cc/projecthub/embedotronics-technologies/arduino-sending-sensor-data-to-mysql-server-phpmyadmin-a604d4;Arduino;Arduino 667 | Monitor Your Energy Bill via Modbus, MKR WiFi 1010 and RS485;https://create.arduino.cc/projecthub/123325/monitor-your-energy-bill-via-modbus-mkr-wifi-1010-and-rs485-814e5e;Arduino;Arduino 668 | Making a Wooden LED Clock;https://create.arduino.cc/projecthub/andrew-jones/making-a-wooden-led-clock-84b9ea;Arduino;Arduino 669 | Arduino, Monitoring Door-Opening via Gmail;https://create.arduino.cc/projecthub/phpoc_man/arduino-monitoring-door-opening-via-gmail-a609af;Arduino;Arduino 670 | Arduino Robot With PS2 Controller (PlayStation 2 Joystick);https://create.arduino.cc/projecthub/igorF2/arduino-robot-with-ps2-controller-playstation-2-joystick-85bddc;Arduino;Arduino 671 | Bluetooth Controlled Car;https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-car-2c60e9;Arduino;Arduino 672 | Line Follower Robot - PID Control - Android Setup;https://create.arduino.cc/projecthub/mjrobot/line-follower-robot-pid-control-android-setup-e5113a;Arduino;Arduino 673 | Controlling an LED Matrix with Arduino Uno;https://create.arduino.cc/projecthub/igorF2/controlling-an-led-matrix-with-arduino-uno-0a9e94;Arduino;Arduino 674 | Triple CNC Machine;https://create.arduino.cc/projecthub/TheTNR/triple-cnc-machine-802a60;Arduino;Arduino 675 | GSM based Home Automation;https://create.arduino.cc/projecthub/brink-io/gsm-based-home-automation-fe5e57;Arduino;Arduino 676 | GSM Home Alarm V1.0;https://create.arduino.cc/projecthub/Tiobel/gsm-home-alarm-v1-0-41e4dc;Arduino;Arduino 677 | Arduino Color Detection;https://create.arduino.cc/projecthub/mjrobot/arduino-color-detection-57e4ce;Arduino;Arduino 678 | Mini-Vintage Internet Radio ;https://create.arduino.cc/projecthub/guischall/mini-vintage-internet-radio-bbf840;Arduino;Arduino 679 | Plant Monitoring System using AWS IoT;https://create.arduino.cc/projecthub/carmelito/plant-monitoring-system-using-aws-iot-6cb054;Arduino;Arduino 680 | AR DRONE and 1SHEELD - Discover the world around your drone;https://create.arduino.cc/projecthub/team-omega-d2/ar-drone-and-1sheeld-discover-the-world-around-your-drone-de6a16;Arduino;Arduino 681 | Pavlov's Cat;https://create.arduino.cc/projecthub/arduino/pavlov-s-cat-7e6577;Arduino;Arduino 682 | Simple FM Radio;https://create.arduino.cc/projecthub/sfrwmaker/simple-fm-radio-5bb328;Arduino;Arduino 683 | $10 Portable Arduino Weather Station (AWS);https://create.arduino.cc/projecthub/GeekRex/10-portable-arduino-weather-station-aws-ccf41f;Arduino;Arduino 684 | Bluetooth Speaker w/ Music-Reactive LED Matrix;https://create.arduino.cc/projecthub/Modustrial_Maker/bluetooth-speaker-w-music-reactive-led-matrix-7abcb3;Arduino;Arduino 685 | rDUINOScope;https://create.arduino.cc/projecthub/dEskoG/rduinoscope-4d399c;Arduino;Arduino 686 | Arduino Sun Tracker Turret;https://create.arduino.cc/projecthub/robotgeek-projects-team/arduino-sun-tracker-turret-06cba9;Arduino;Arduino 687 | How to create a website communicating Arduino by using PHP ;https://create.arduino.cc/projecthub/kutluhan-aktar/how-to-create-a-website-communicating-arduino-by-using-php-ce5232;Arduino;Arduino 688 | Bluetooth Controlled Servo;https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-servo-439997;Arduino;Arduino 689 | 4x4x4 LED cube with Arduino Uno and 1sheeld;https://create.arduino.cc/projecthub/ihassanibrahim7/voice-controlled-led-cube-with-arduino-uno-and-1sheeld-69afc2;Arduino;Arduino 690 | Home Made Arduino Based MPPT Charge Controller;https://create.arduino.cc/projecthub/electronicslovers/home-made-arduino-based-mppt-charge-controller-74f645;Arduino;Arduino 691 | Soldering Iron Controller for Hakko 907;https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-8c5866;Arduino;Arduino 692 | Arduino Without External Clock Crystal on ATmega328;https://create.arduino.cc/projecthub/techmirtz/arduino-without-external-clock-crystal-on-atmega328-d4fcc4;Arduino;Arduino 693 | Arduino CNC Plotter (Drawing Machine);https://create.arduino.cc/projecthub/mega-das/arduino-cnc-plotter-drawing-machine-a73ea2;Arduino;Arduino 694 | Bluetooth Door Lock (Arduino);https://create.arduino.cc/projecthub/BuildItDR/bluetooth-door-lock-arduino-bc2035;Arduino;Arduino 695 | WALTER - The Arduino Photovore Insect;https://create.arduino.cc/projecthub/studikasus/walter-the-arduino-photovore-insect-708207;Arduino;Arduino 696 | DIY Si4730 All Band Radio (LW, MW, SW, FM);https://create.arduino.cc/projecthub/mircemk/diy-si4730-all-band-radio-lw-mw-sw-fm-1894d9;Arduino;Arduino 697 | DIY Arduino Based Pulse Induction Metal Detector;https://create.arduino.cc/projecthub/mircemk/diy-arduino-based-pulse-induction-metal-detector-c6f244;Arduino;Arduino 698 | Track and Control Your Car Remotely;https://create.arduino.cc/projecthub/Ashraf_Nabil/tracking-and-controlling-your-car-remotely-using-arduino-and-cc10ed;Arduino;Arduino 699 | Pac-Man LED Pixel Panel Costume;https://create.arduino.cc/projecthub/pix3lot/pac-man-led-pixel-panel-costume-515666;Arduino;Arduino 700 | Arduino - PV MPPT Solar Charger;https://create.arduino.cc/projecthub/abhi_verma/arduino-pv-mppt-solar-charger-371474;Arduino;Arduino 701 | Arduino I2C communication with Raspi 2 WIOT;https://create.arduino.cc/projecthub/phantom_override/arduino-i2c-ommunication-with-raspi-2-wiot-63d599;Arduino;Arduino 702 | Easiest Line Follower Robot;https://create.arduino.cc/projecthub/Zubayer/easiest-line-follower-robot-635bc0;Arduino;Arduino 703 | Using the MAX30100 wearable pulse sensor with Arduino ;https://create.arduino.cc/projecthub/protocentral/using-the-max30100-wearable-pulse-sensor-with-arduino-9b6984;Arduino;Arduino 704 | Arduino Pressure Measuring and Logging;https://create.arduino.cc/projecthub/Fillbee/arduino-pressure-measuring-and-logging-42189b;Arduino;Arduino 705 | Arduino MIDI Arpeggiator;https://create.arduino.cc/projecthub/dra/arduino-midi-arpeggiator-3bd731;Arduino;Arduino 706 | Temperature and Humidity Data Logger;https://create.arduino.cc/projecthub/Guitarman1/temperature-and-humidity-data-logger-5e587e;Arduino;Arduino 707 | DIY Universal CNC Machine;https://create.arduino.cc/projecthub/gatoninja236/diy-universal-cnc-machine-e15b87;Arduino;Arduino 708 | DIY Hand Sanitizer Dispenser Using Arduino;https://create.arduino.cc/projecthub/MissionCritical/diy-hand-sanitizer-dispenser-using-arduino-143de1;Arduino;Arduino 709 | Arduino Mp3 player Catalex;https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-catalex-2effef;Arduino;Arduino 710 | A Glove That Translate Sign Language Into Text and Speech;https://create.arduino.cc/projecthub/173799/a-glove-that-translate-sign-language-into-text-and-speech-c91b13;Arduino;Arduino 711 | Hacking A RC Car To Control It Using An Android Device;https://create.arduino.cc/projecthub/mjrobot/hacking-a-rc-car-to-control-it-using-an-android-device-7d5b9a;Arduino;Arduino 712 | Make an Arduino Temperature Sensor (thermistor tutorial);https://create.arduino.cc/projecthub/iasonas-christoulakis/make-an-arduino-temperature-sensor-thermistor-tutorial-b26ed3;Arduino;Arduino 713 | Liquid Level Sensing Using a Laser ToF Sensor;https://create.arduino.cc/projecthub/team-protocentral/liquid-level-sensing-using-a-laser-tof-sensor-d04232;Arduino;Arduino 714 | Ultrasonic Glasses for the Blind;https://create.arduino.cc/projecthub/gardnertech/ultrasonic-glasses-for-the-blind-142156;Arduino;Arduino 715 | DC Motor Controlling Library;https://create.arduino.cc/projecthub/ambhatt/dc-motor-controlling-library-a74319;Arduino;Arduino 716 | Automatic Sliding Door for the Garage;https://create.arduino.cc/projecthub/DVDMDN/automatic-sliding-door-for-the-garage-c7b1ba;Arduino;Arduino 717 | Intruder Alarm with Text Message Notification;https://create.arduino.cc/projecthub/MatthewHallberg/intruder-alarm-with-text-message-notification-a38ae9;Arduino;Arduino 718 | MeArm Robot Arm - Your Robot - V1.0;https://create.arduino.cc/projecthub/benbobgray/mearm-robot-arm-your-robot-v1-0-326702;Arduino;Arduino 719 | Using the YL-39 + YL-69 Soil Humidity Sensor with Arduino;https://create.arduino.cc/projecthub/nekhbet/using-the-yl-39-yl-69-soil-humidity-sensor-with-arduino-968268;Arduino;Arduino 720 | Ever Blooming Mechanical Tulip;https://create.arduino.cc/projecthub/jiripraus/ever-blooming-mechanical-tulip-1b0323;Arduino;Arduino 721 | WARAN - Home Automation;https://create.arduino.cc/projecthub/arjun/waran-home-automation-e84a26;Arduino;Arduino 722 | Simple Alarm Clock with DS1302 RTC;https://create.arduino.cc/projecthub/SurtrTech/simple-alarm-clock-with-ds1302-rtc-a92d7b;Arduino;Arduino 723 | SIM800L GPRS Module with Arduino AT Commands;https://create.arduino.cc/projecthub/EasyMades/sim800l-gprs-module-with-arduino-at-commands-d3f3f7;Arduino;Arduino 724 | Arduino Quadcopter;https://create.arduino.cc/projecthub/robocircuits/arduino-quadcopter-e618c6;Arduino;Arduino 725 | Measure your reaction time;https://create.arduino.cc/projecthub/Blue_jack/measure-your-reaction-time-d68f90;Arduino;Arduino 726 | DIY Grow LED Light Designing a Better Sun;https://create.arduino.cc/projecthub/dymonxd/diy-grow-led-light-designing-a-better-sun-1adec1;Arduino;Arduino 727 | Bluetooth control led with lcd led status display real time.;https://create.arduino.cc/projecthub/YoussefSabaa/bluetooth-control-led-with-lcd-led-status-display-real-time-58f9ca;Arduino;Arduino 728 | Heart Rate Monitor Using IoT;https://create.arduino.cc/projecthub/technopaths/heart-rate-monitor-using-iot-ddafca;Arduino;Arduino 729 | PID Control Line Follower Robot;https://create.arduino.cc/projecthub/kittenbot/pid-control-line-follower-robot-d4535c;Arduino;Arduino 730 | Raspberry Pi and Arduino Laptop;https://create.arduino.cc/projecthub/BuildItDR/raspberry-pi-and-arduino-laptop-bf50f5;Arduino;Arduino 731 | BrewBench;https://create.arduino.cc/projecthub/brewbench/brewbench-d64d90;Arduino;Arduino 732 | Arduino Trash-Bot (Auto-Open/Close Trash Bin);https://create.arduino.cc/projecthub/ashraf_minhaj/arduino-trash-bot-auto-open-close-trash-bin-fef238;Arduino;Arduino 733 | A fall detection system based on Arduino, Windows and Azure;https://create.arduino.cc/projecthub/JiongShi/a-fall-detection-system-based-on-arduino-windows-and-azure-2c03cf;Arduino;Arduino 734 | SmartAgro;https://create.arduino.cc/projecthub/andreiflorian/smartagro-e46213;Arduino;Arduino 735 | Android Arduino RC Car;https://create.arduino.cc/projecthub/rafitc/android-arduino-rc-car-e633d7;Arduino;Arduino 736 | Mobile Controlled Bluetooth Car;https://create.arduino.cc/projecthub/vishal-soni/mobile-controlled-bluetooth-car-easy-simple-hc-05-59a002;Arduino;Arduino 737 | Gesture Controlled Trainable Arduino Robot Arm via Bluetooth;https://create.arduino.cc/projecthub/KureBasRobotics/gesture-controlled-trainable-arduino-robot-arm-via-bluetooth-4a1e57;Arduino;Arduino 738 | Garage Parking Assistant;https://create.arduino.cc/projecthub/Bcjams/garage-parking-assistant-11446b;Arduino;Arduino 739 | Arduino Tutorial : Mini Piano ;https://create.arduino.cc/projecthub/rahulkhanna/arduino-tutorial-mini-piano-08f8b8;Arduino;Arduino 740 | Automatic Watering System;https://create.arduino.cc/projecthub/PRosenb/automatic-watering-system-160d90;Arduino;Arduino 741 | Arduino and AC Devices - Automatic Lights;https://create.arduino.cc/projecthub/shakram02/arduino-and-ac-devices-automatic-lights-71ff56;Arduino;Arduino 742 | Traffic Light Information System;https://create.arduino.cc/projecthub/38611/traffic-light-information-system-3f0e9e;Arduino;Arduino 743 | Arduino Smart car ;https://create.arduino.cc/projecthub/faweiz/arduino-smart-car-9496c4;Arduino;Arduino 744 | WiFi ESP8266 and DHT22 Sensor;https://create.arduino.cc/projecthub/hbolanos2001/wifi-esp8266-and-dht22-sensor-09d455;Arduino;Arduino 745 | Arduino Pokéball;https://create.arduino.cc/projecthub/MarJoh/arduino-pokeball-5555d8;Arduino;Arduino 746 | Arduino Cloud Sensor Tower;https://create.arduino.cc/projecthub/Arduino_Genuino/arduino-cloud-sensor-tower-787ec9;Arduino;Arduino 747 | Picture The Weather;https://create.arduino.cc/projecthub/windowsiot/picture-of-the-weather-a4c5c2;Arduino;Arduino 748 | Connecting Anduino to IFTTT;https://create.arduino.cc/projecthub/bcarbs/connecting-anduino-to-ifttt-1686ad;Arduino;Arduino 749 | RGB LED Strips Controller;https://create.arduino.cc/projecthub/ThereIsNoTry/rgb-led-strips-controller-b15300;Arduino;Arduino 750 | Bluetooth Nerf Turret;https://create.arduino.cc/projecthub/Little_french_kev/bluetooth-nerf-turret-03363b;Arduino;Arduino 751 | MKR Zero Weather Data Logger;https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-zero-weather-data-logger-574190;Arduino;Arduino 752 | Dual Axis Solar Tracker Panel with Auto and Manual Mode;https://create.arduino.cc/projecthub/ioarvanit/dual-axis-solar-tracker-panel-with-auto-and-manual-mode-41cfd9;Arduino;Arduino 753 | Arduino - Serial Communication Visual Studio;https://create.arduino.cc/projecthub/whitebank/arduino-serial-communication-visual-studio-3f5c77;Arduino;Arduino 754 | pixy cmuCAM + Arduino;https://create.arduino.cc/projecthub/niftyjoeman/pixy-cmucam-arduino-3ac141;Arduino;Arduino 755 | PLC Training Center;https://create.arduino.cc/projecthub/saifalikabi/plc-training-center-213b18;Arduino;Arduino 756 | Making a Cheap Laser Rangefinder for Arduino;https://create.arduino.cc/projecthub/iliasam/making-a-cheap-laser-rangefinder-for-arduino-4dd849;Arduino;Arduino 757 | Mini LED Matrix Clock;https://create.arduino.cc/projecthub/mircemk/mini-led-matrix-clock-d4f5f5;Arduino;Arduino 758 | Simple Home Automation Using Bluetooth, Android and Arduino;https://create.arduino.cc/projecthub/kksjunior/simple-home-automation-using-bluetooth-android-and-arduino-2157b3;Arduino;Arduino 759 | DIY SMD Rework Station;https://create.arduino.cc/projecthub/makerbr555/diy-smd-rework-station-28b6f5;Arduino;Arduino 760 | Digital Force Gauge & Weight Scale w/ Loadcell & Arduino;https://create.arduino.cc/projecthub/electropeak/digital-force-gauge-weight-scale-w-loadcell-arduino-7a7fd5;Arduino;Arduino 761 | Date, Time, Temperature and Humidity Display;https://create.arduino.cc/projecthub/chamathkv/date-time-temperature-and-humidity-display-b05086;Arduino;Arduino 762 | Blinds (Or Any AC Power Motor) Control;https://create.arduino.cc/projecthub/gomecin/blinds-or-any-ac-power-motor-control-27f633;Arduino;Arduino 763 | Android Motion Detector Camera with Arduino/MCU;https://create.arduino.cc/projecthub/walid-mafuj/android-motion-detector-camera-with-arduino-mcu-306789;Arduino;Arduino 764 | My motorbike Telemetry;https://create.arduino.cc/projecthub/lentzlive/my-motorbike-telemetry-c73c0f;Arduino;Arduino 765 | How to Use Modbus with Arduino;https://create.arduino.cc/projecthub/hwhardsoft/how-to-use-modbus-with-arduino-6f434b;Arduino;Arduino 766 | Extremely Sensitive Cheap Homemade Seismometer;https://create.arduino.cc/projecthub/mircemk/extremely-sensitive-cheap-homemade-seismometer-175231;Arduino;Arduino 767 | Arduino MIDI Stepper Synth;https://create.arduino.cc/projecthub/JonJonKayne/arduino-midi-stepper-synth-d291ae;Arduino;Arduino 768 | $20 Zigbee Door Chime;https://create.arduino.cc/projecthub/BuddyC/20-zigbee-door-chime-98f016;Arduino;Arduino 769 | Arduino HID-Based CNC Pendant;https://create.arduino.cc/projecthub/edr1924/arduino-hid-based-cnc-pendant-aefa13;Arduino;Arduino 770 | Using Serial Monitor to Control Servo Motor;https://create.arduino.cc/projecthub/Kub_Luk/using-serial-monitor-to-control-servo-motor-cc1daf;Arduino;Arduino 771 | Mini Elevator;https://create.arduino.cc/projecthub/fishy-circuits/mini-elevator-3ad6f4;Arduino;Arduino 772 | Arduino Clock;https://create.arduino.cc/projecthub/Arduino_Scuola/arduino-clock-df2b76;Arduino;Arduino 773 | Unlock your door with a knock;https://create.arduino.cc/projecthub/2684/open-your-door-with-a-special-knock-using-arduino-android-phone-and-1sheeld-d4e6fc;Arduino;Arduino 774 | Read PWM, Decode RC Receiver Input, and Apply Fail-Safe;https://create.arduino.cc/projecthub/kelvineyeone/read-pwm-decode-rc-receiver-input-and-apply-fail-safe-6b90eb;Arduino;Arduino 775 | AWS - Arduino Weather Station;https://create.arduino.cc/projecthub/GilettaStefano/aws-arduino-weather-station-9e5a21;Arduino;Arduino 776 | SMS based Home Automation system using 1SHEELD;https://create.arduino.cc/projecthub/tanishq/sms-based-home-automation-system-using-1sheeld-5c4823;Arduino;Arduino 777 | Automated Garden;https://create.arduino.cc/projecthub/thomas_sxt/automated-garden-77bee8;Arduino;Arduino 778 | Version 2.0 Advanced Attendance System (Without Ethernet);https://create.arduino.cc/projecthub/gadgetprogrammers/version-2-0-advanced-attendance-system-without-ethernet-0402ba;Arduino;Arduino 779 | Speech Recognition with Arduino and BitVoicer Server;https://create.arduino.cc/projecthub/msb4180/speech-recognition-with-arduino-and-bitvoicer-server-460477;Arduino;Arduino 780 | Arduino Shield NCS314 NIXIE Tubes Clock IN-14;https://create.arduino.cc/projecthub/gra_and_afch/arduino-shield-ncs314-nixie-tubes-clock-in-14-20932b;Arduino;Arduino 781 | Sliding Gate Automation ;https://create.arduino.cc/projecthub/LasithIshan/sliding-gate-automation-c87496;Arduino;Arduino 782 | Arduino Laser Tripwire;https://create.arduino.cc/projecthub/ianabcumming/arduino-laser-tripwire-31e473;Arduino;Arduino 783 | DIY 3-Axis CNC VMC;https://create.arduino.cc/projecthub/amitnandileo/diy-3-axis-cnc-vmc-4817ba;Arduino;Arduino 784 | Infinity mirror clock;https://create.arduino.cc/projecthub/TheTNR/infinity-mirror-clock-b00c6a;Arduino;Arduino 785 | From KY-039 To Heart Rate;https://create.arduino.cc/projecthub/Johan_Ha/from-ky-039-to-heart-rate-0abfca;Arduino;Arduino 786 | Your Environmental Data on Arduino IoT Cloud;https://create.arduino.cc/projecthub/148064/your-environmental-data-on-arduino-iot-cloud-4e29bf;Arduino;Arduino 787 | Ultrasonic Range Detector With Arduino;https://create.arduino.cc/projecthub/Salmanfarisvp/ultrasonic-range-detector-with-arduino-46c96c;Arduino;Arduino 788 | Face Tracking Using Arduino;https://create.arduino.cc/projecthub/WolfxPac/face-tracking-using-arduino-b35b6b;Arduino;Arduino 789 | Robotcar Controlled Using G-Sensor Smartphone;https://create.arduino.cc/projecthub/RemoteXY/robotcar-controlled-using-g-sensor-smartphone-9f7eec;Arduino;Arduino 790 | Arduino Easy Weather Station With BME280 Sensor;https://create.arduino.cc/projecthub/nickthegreek82/arduino-easy-weather-station-with-bme280-sensor-cbb5d2;Arduino;Arduino 791 | Make an Arduino Memory Game;https://create.arduino.cc/projecthub/Jerepondumie/make-an-arduino-memory-game-73f55e;Arduino;Arduino 792 | DCF77 Analyzer/Clock v2.0;https://create.arduino.cc/projecthub/edr1924/dcf77-analyzer-clock-v2-0-c25404;Arduino;Arduino 793 | Arduino-Powered Smart Light (Works with Amazon Echo);https://create.arduino.cc/projecthub/tinker-project/arduino-powered-smart-light-works-with-amazon-echo-9e20fd;Arduino;Arduino 794 | Level Platform Using Accelerometer;https://create.arduino.cc/projecthub/mtashiro/level-platform-using-accelerometer-80a343;Arduino;Arduino 795 | Android Things Word Clock;https://create.arduino.cc/projecthub/daniele-bonaldo/android-things-word-clock-46cc14;Arduino;Arduino 796 | Automatic Coffee Machine;https://create.arduino.cc/projecthub/thomas_sxt/automatic-coffee-machine-950544;Arduino;Arduino 797 | Tricks for Controlling DC Motors;https://create.arduino.cc/projecthub/tolgadurudogan/tricks-for-controlling-dc-motors-3a05a5;Arduino;Arduino 798 | DIY Solar Tracker Arduino Project ITA;https://create.arduino.cc/projecthub/Ingeimaks/diy-solar-tracker-arduino-project-ita-78ad78;Arduino;Arduino 799 | Ambient Light Sensor Using Photo Resistor and LED Lights!;https://create.arduino.cc/projecthub/DCamino/ambient-light-sensor-using-photo-resistor-and-led-lights-9b7f39;Arduino;Arduino 800 | IoT4Car;https://create.arduino.cc/projecthub/frankzhao/iot4car-1b07f1;Arduino;Arduino 801 | Arduino Nano Clock with 4x64 LED Matrix;https://create.arduino.cc/projecthub/M-V-P/arduino-nano-clock-with-4x64-led-matrix-409730;Arduino;Arduino 802 | Arduino Bluetooth Camera (ABC);https://create.arduino.cc/projecthub/alf81010/arduino-bluetooth-camera-abc-107c3d;Arduino;Arduino 803 | Face-Masks Disinfection Device — needlab;https://create.arduino.cc/projecthub/needlab/face-masks-disinfection-device-needlab-3ed2f5;Arduino;Arduino 804 | Arduino Data Glasses for My Multimeter;https://create.arduino.cc/projecthub/AlainsProjects/arduino-data-glasses-for-my-multimeter-bb4e59;Arduino;Arduino 805 | Smart Blinds;https://create.arduino.cc/projecthub/Froz3nArcher/smart-blinds-573548;Arduino;Arduino 806 | Easy-to-Build Pet Feeder - Phone App control soon!;https://create.arduino.cc/projecthub/edr1924/easy-to-build-pet-feeder-phone-app-control-soon-86c1ef;Arduino;Arduino 807 | WalaBeer Tank;https://create.arduino.cc/projecthub/Abysmal/walabeer-tank-20a2ed;Arduino;Arduino 808 | Snacks Vending Machine Powered By Arduino;https://create.arduino.cc/projecthub/Sevenmojoe/snacks-vending-machine-powered-by-arduino-f03296;Arduino;Arduino 809 | DIY: A 5 Minutes Contactless OLED Thermometer With Arduino;https://create.arduino.cc/projecthub/TheGadgetBoy/diy-a-5-minutes-contactless-oled-thermometer-with-arduino-857a1d;Arduino;Arduino 810 | Fire From Water ;https://create.arduino.cc/projecthub/ben-eagan/fire-from-water-9e6ae4;Arduino;Arduino 811 | 25 kHz 4 Pin PWM Fan Control with Arduino Uno;https://create.arduino.cc/projecthub/tylerpeppy/25-khz-4-pin-pwm-fan-control-with-arduino-uno-3005a1;Arduino;Arduino 812 | DIY Relay Outlet Arduino;https://create.arduino.cc/projecthub/makerguide/diy-relay-outlet-arduino-ce3653;Arduino;Arduino 813 | How to Build a DIY Arduino-Based Smart Home Hub with 1Sheeld;https://create.arduino.cc/projecthub/amrmostaafaa/how-to-build-a-diy-arduino-based-smart-home-hub-with-1sheeld-79d405;Arduino;Arduino 814 | Temperature Monitor with DHT22 and I2C 16x2 LCD;https://create.arduino.cc/projecthub/adrakhmat/temperature-monitor-with-dht22-and-i2c-16x2-lcd-3ddd39;Arduino;Arduino 815 | Arduino IoT Cloud Amazon Alexa Integration;https://create.arduino.cc/projecthub/303628/arduino-iot-cloud-amazon-alexa-integration-4e6078;Arduino;Arduino 816 | POV Cylinder with Arduino Due;https://create.arduino.cc/projecthub/hanoba_DIY/pov-cylinder-with-arduino-due-7016d5;Arduino;Arduino 817 | PS3 Controller Control Servo Wireless;https://create.arduino.cc/projecthub/YoussefSabaa/ps3-controller-control-servo-wireless-c6b8db;Arduino;Arduino 818 | PuzzleBox;https://create.arduino.cc/projecthub/arduino/puzzlebox-c1f374;Arduino;Arduino 819 | Solar Tracker V2.0;https://create.arduino.cc/projecthub/BrownDogGadgets/solar-tracker-v2-0-07ef11;Arduino;Arduino 820 | Arduino GrowBox Controller;https://create.arduino.cc/projecthub/Yarosia/arduino-growbox-controller-efb9fa;Arduino;Arduino 821 | Arduino MEGA Guitar Pedal;https://create.arduino.cc/projecthub/electrosmash/arduino-mega-guitar-pedal-2bc87a;Arduino;Arduino 822 | KITtyBot;https://create.arduino.cc/projecthub/StaffanEk/kittybot-f21cc0;Arduino;Arduino 823 | Arduino controlled RGB LED strip;https://create.arduino.cc/projecthub/2460/arduino-controlled-rgb-led-strip-0d6f0e;Arduino;Arduino 824 | LEGO Wall-E with Arduino;https://create.arduino.cc/projecthub/monsterbacke/lego-wall-e-with-arduino-cba9fa;Arduino;Arduino 825 | BLE Bot 9000;https://create.arduino.cc/projecthub/29284/ble-bot-9000-c150b8;Arduino;Arduino 826 | Calibrating My Servos;https://create.arduino.cc/projecthub/jeremy-lindsay/calibrating-my-servos-fa27ce;Arduino;Arduino 827 | CO2 Monitoring with K30 Sensor;https://create.arduino.cc/projecthub/alfred333/co2-monitoring-with-k30-sensor-86f6d9;Arduino;Arduino 828 | Pressure Pad Interfacing with Arduino;https://create.arduino.cc/projecthub/ashish21senapati/pressure-pad-interfacing-with-arduino-efacad;Arduino;Arduino 829 | Face Tracking Camera;https://create.arduino.cc/projecthub/Little_french_kev/face-tracking-camera-afbef5;Arduino;Arduino 830 | Heart Rate Monitoring System;https://create.arduino.cc/projecthub/hrms/heart-rate-monitoring-system-8da2fa;Arduino;Arduino 831 | UltrasonicEyes;https://create.arduino.cc/projecthub/unexpectedmaker/ultrasoniceyes-b9fd38;Arduino;Arduino 832 | Arduino Weather Station ;https://create.arduino.cc/projecthub/woutvdr/arduino-weather-station-6d5ca2;Arduino;Arduino 833 | MKR FOX 1200 Weather Monitor;https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-fox-1200-weather-monitor-6a94e2;Arduino;Arduino 834 | COVID - 19 Non Contact Thermometer;https://create.arduino.cc/projecthub/akshayjoseph666/covid-19-non-contact-thermometer-ad448a;Arduino;Arduino 835 | RFID Door Lock with Arduino;https://create.arduino.cc/projecthub/robotgeek-projects-team/rfid-door-lock-with-arduino-89cad2;Arduino;Arduino 836 | touch sensor;https://create.arduino.cc/projecthub/CodeRocks/touch-sensor-01d36e;Arduino;Arduino 837 | Arduino/Android - BLUETOOTH Multi Servo Motor Control;https://create.arduino.cc/projecthub/vandenbrande/arduino-android-bluetooth-multi-servo-motor-control-28adc9;Arduino;Arduino 838 | The Nerd;https://create.arduino.cc/projecthub/arduino/the-nerd-0144f9;Arduino;Arduino 839 | WiDC: Wi-Fi-Controlled FPV Robot;https://create.arduino.cc/projecthub/igorF2/widc-wi-fi-controlled-fpv-robot-8f1e09;Arduino;Arduino 840 | Web-Controlled LED Animations with Raspberry Pi and Arduino;https://create.arduino.cc/projecthub/bportaluri/web-controlled-led-animations-with-raspberry-pi-and-arduino-112025;Arduino;Arduino 841 | Arduino Compatible Nano NeoPixel Controller;https://create.arduino.cc/projecthub/whimsy-makerspace/arduino-compatible-nano-neopixel-controller-6f0c4b;Arduino;Arduino 842 | Arduino-based Collision Detection Warning System;https://create.arduino.cc/projecthub/Vijendra/arduino-based-collision-detection-warning-system-d1beec;Arduino;Arduino 843 | Arduino LCD Thermostat;https://create.arduino.cc/projecthub/gatoninja236/arduino-lcd-thermostat-a02f52;Arduino;Arduino 844 | Suzie Model One - CNC Machine;https://create.arduino.cc/projecthub/RFCaldas/suzie-model-one-cnc-machine-b4536f;Arduino;Arduino 845 | A DIY Smart Insole to Check Your Pressure Distribution;https://create.arduino.cc/projecthub/Juliette/a-diy-smart-insole-to-check-your-pressure-distribution-a5ceae;Arduino;Arduino 846 | Arduino Countdown Timer;https://create.arduino.cc/projecthub/tylerpeppy/arduino-countdown-timer-fc2fd9;Arduino;Arduino 847 | Simplest Way for Voice Recognition Project Using c#toarduino;https://create.arduino.cc/projecthub/Jalal_Mansoori/simplest-way-for-voice-recognition-project-using-c-toarduino-105138;Arduino;Arduino 848 | TFT Graphing: Live History Graphs;https://create.arduino.cc/projecthub/andreiflorian/tft-graphing-live-history-graphs-744f3b;Arduino;Arduino 849 | Connecting an N-Channel MOSFET;https://create.arduino.cc/projecthub/ejshea/connecting-an-n-channel-mosfet-7e0242;Arduino;Arduino 850 | Internal Timers of Arduino;https://create.arduino.cc/projecthub/Marcazzan_M/internal-timers-of-arduino-58f6c9;Arduino;Arduino 851 | Control Servos using Wii Nunchuk;https://create.arduino.cc/projecthub/mtashiro/control-servos-using-wii-nunchuk-9136bd;Arduino;Arduino 852 | Clone Infrared Signals with Arduino;https://create.arduino.cc/projecthub/richardosgood/clone-infrared-signals-with-arduino-3a3cb2;Arduino;Arduino 853 | One Button to Rule Them All;https://create.arduino.cc/projecthub/Arduino_Genuino/one-button-to-rule-them-all-915bbe;Arduino;Arduino 854 | Smart Energy Monitor Based on Arduino ;https://create.arduino.cc/projecthub/Mr-Joe/smart-energy-monitor-based-on-arduino-05f042;Arduino;Arduino 855 | Robot for supercool indoor navigation;https://create.arduino.cc/projecthub/team-oblu/robot-for-supercool-indoor-navigation-95047f;Arduino;Arduino 856 | IoT-Based Smart Street Light System;https://create.arduino.cc/projecthub/sagnik2017ghosh/iot-based-smart-street-light-system-8e9929;Arduino;Arduino 857 | Arduino and Addressable LED;https://create.arduino.cc/projecthub/talofer99/arduino-and-addressable-led-b8403f;Arduino;Arduino 858 | Arduino Air Quality Monitor with DSM501A Sensor;https://create.arduino.cc/projecthub/mircemk/arduino-air-quality-monitor-with-dsm501a-sensor-b4f8fc;Arduino;Arduino 859 | Kaleidoscope Infinity Mirror;https://create.arduino.cc/projecthub/Lucas_Ainsworth/kaleidoscope-infinity-mirror-bdcd36;Arduino;Arduino 860 | Measure Any AC Current with ACS712;https://create.arduino.cc/projecthub/SurtrTech/measure-any-ac-current-with-acs712-70aa85;Arduino;Arduino 861 | Local and Remote Programmable Robotic Arm;https://create.arduino.cc/projecthub/mjrobot/local-and-remote-programmable-robotic-arm-f6ba98;Arduino;Arduino 862 | Arduino DMX-512 Tester Controller;https://create.arduino.cc/projecthub/daniel3514/arduino-dmx-512-tester-controller-977c89;Arduino;Arduino 863 | How Easy Is It to Use a Thermistor?!;https://create.arduino.cc/projecthub/Marcazzan_M/how-easy-is-it-to-use-a-thermistor-e39321;Arduino;Arduino 864 | Arduino - Control Arm Robot via Web;https://create.arduino.cc/projecthub/phpoc_man/arduino-control-arm-robot-via-web-379ef3;Arduino;Arduino 865 | Arduino Audio Reactive Desk Light;https://create.arduino.cc/projecthub/haziq-azri/arduino-audio-reactive-desk-light-7ef416;Arduino;Arduino 866 | Smart Irrigation Controller;https://create.arduino.cc/projecthub/chuygen/smart-irrigation-controller-44ad38;Arduino;Arduino 867 | Arduino Controlled Artificial Candle Lights;https://create.arduino.cc/projecthub/laserbrain/arduino-controlled-artificial-candle-lights-65a46d;Arduino;Arduino 868 | Measuring Solar Radiation with Arduino;https://create.arduino.cc/projecthub/jeffrey2/measuring-solar-radiation-with-arduino-f741ac;Arduino;Arduino 869 | Home Plant Watering System;https://create.arduino.cc/projecthub/sfrwmaker/home-plant-watering-system-64550a;Arduino;Arduino 870 | Life Band - Health Assistant For Elderly;https://create.arduino.cc/projecthub/user06254/life-band-health-assistant-for-elderly-70e6f6;Arduino;Arduino 871 | DIY Arduino + GY-906 Infrared Thermometer;https://create.arduino.cc/projecthub/hardyedela/diy-arduino-gy-906-infrared-thermometer-5881aa;Arduino;Arduino 872 | 7-Segment Clock with Arduino Nano + DS3231 + LDR;https://create.arduino.cc/projecthub/ingo-lohs/7-segment-clock-with-arduino-nano-ds3231-ldr-286f4b;Arduino;Arduino 873 | EasyFFT: Fast Fourier Transform (FFT) for Arduino;https://create.arduino.cc/projecthub/abhilashpatel121/easyfft-fast-fourier-transform-fft-for-arduino-9d2677;Arduino;Arduino 874 | Frequency and Duty Cycle Measurement Using Arduino;https://create.arduino.cc/projecthub/ambhatt/frequency-and-duty-cycle-measurement-using-arduino-1e4896;Arduino;Arduino 875 | Turn your RC Car to Bluetooth RC car;https://create.arduino.cc/projecthub/GeekRex/turn-your-rc-car-to-bluetooth-rc-car-1b0689;Arduino;Arduino 876 | Heart Rate Monitor (Wearable and Wireless Using ECG);https://create.arduino.cc/projecthub/aka3d6/heart-rate-monitor-wearable-and-wireless-using-ecg-e96dce;Arduino;Arduino 877 | Morse Code Communication Using Arduino;https://create.arduino.cc/projecthub/Jalal_Mansoori/morse-code-communication-using-arduino-f339c0;Arduino;Arduino 878 | GPS Datalogger, Spatial Analysis, and Azure IoT Hub.;https://create.arduino.cc/projecthub/ShawnCruise/gps-datalogger-spatial-analysis-and-azure-iot-hub-072956;Arduino;Arduino 879 | Water Leakage Detector and Valve Control;https://create.arduino.cc/projecthub/ThereIsNoTry/water-leakage-detector-and-valve-control-f45048;Arduino;Arduino 880 | Controlling an Arduino from a Pi3 using I2C;https://create.arduino.cc/projecthub/aardweeno/controlling-an-arduino-from-a-pi3-using-i2c-59817b;Arduino;Arduino 881 | Control Arduino Robot Arm with Android App;https://create.arduino.cc/projecthub/slantconcepts/control-arduino-robot-arm-with-android-app-1c0d96;Arduino;Arduino 882 | Display BMP Pictures from SD Card on TFT LCD Shield;https://create.arduino.cc/projecthub/SurtrTech/display-bmp-pictures-from-sd-card-on-tft-lcd-shield-f3074c;Arduino;Arduino 883 | Smart Door with Face Unlock;https://create.arduino.cc/projecthub/divinsmathew/smart-door-with-face-unlock-273e06;Arduino;Arduino 884 | Control a 7 Segment Display with a keypad!;https://create.arduino.cc/projecthub/Isaac100/control-a-7-segment-display-with-a-keypad-4ca90a;Arduino;Arduino 885 | Keypad Door Lock with Changeable Code;https://create.arduino.cc/projecthub/SurtrTech/keypad-door-lock-with-changeable-code-468b15;Arduino;Arduino 886 | MKR1000 Temp and Humidity Sensor;https://create.arduino.cc/projecthub/doncoleman/mkr1000-temp-and-humidity-sensor-8f22ed;Arduino;Arduino 887 | A Lightning Detector for Arduino;https://create.arduino.cc/projecthub/runtimeprojects/a-lightning-detector-for-arduino-9f679c;Arduino;Arduino 888 | Arduino Marble Maze Labyrinth;https://create.arduino.cc/projecthub/AhmedAzouz/arduino-marble-maze-labyrinth-bd9ea6;Arduino;Arduino 889 | Morse Code Transceiver;https://create.arduino.cc/projecthub/achindra/morse-code-transceiver-b5ae38;Arduino;Arduino 890 | RFID Based Attendance System Using Arduino;https://create.arduino.cc/projecthub/highvoltages/rfid-based-attendance-system-using-arduino-f3602f;Arduino;Arduino 891 | HID Prox RFID to Arduino;https://create.arduino.cc/projecthub/shakataganai/hid-prox-rfid-to-arduino-bd9b8a;Arduino;Arduino 892 | Hacking Qualcomm (Quick Charge) QC 2.0/3.0 With ATtiny85;https://create.arduino.cc/projecthub/PSoC_Rocks/hacking-qualcomm-quick-charge-qc-2-0-3-0-with-attiny85-b7627d;Arduino;Arduino 893 | IoT Using ESP8266-01 and Arduino;https://create.arduino.cc/projecthub/ahmedibrrahim/iot-using-esp8266-01-and-arduino-afa35e;Arduino;Arduino 894 | Securely Connecting an Arduino MKR WiFi 1010 to AWS IoT Core;https://create.arduino.cc/projecthub/Arduino_Genuino/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core-a9f365;Arduino;Arduino 895 | Eye Motion Tracking Using Infrared Sensor;https://create.arduino.cc/projecthub/H0meMadeGarbage/eye-motion-tracking-using-infrared-sensor-227467;Arduino;Arduino 896 | Arduino-Based Automatic Guitar Tuner;https://create.arduino.cc/projecthub/metrowest_aug/arduino-based-automatic-guitar-tuner-2093fe;Arduino;Arduino 897 | RFID Door Unlock;https://create.arduino.cc/projecthub/keebie81/rfid-door-unlock-fa66ea;Arduino;Arduino 898 | RFID+Relay+RFID Door Lock Code = RFID PC Switch!;https://create.arduino.cc/projecthub/Heathen_Hacks-v2/rfid-relay-rfid-door-lock-code-rfid-pc-switch-eee1d1;Arduino;Arduino 899 | Countdown Timer;https://create.arduino.cc/projecthub/peejster/countdown-timer-375682;Arduino;Arduino 900 | MKRFox1200 Weather Station;https://create.arduino.cc/projecthub/antoine-de-chassey/mkrfox1200-weather-station-255543;Arduino;Arduino 901 | Arduino Nano: Control 2 Stepper Motors With Joystick;https://create.arduino.cc/projecthub/mitov/arduino-nano-control-2-stepper-motors-with-joystick-52b391;Arduino;Arduino 902 | Windows IOT - Automate your power outlets;https://create.arduino.cc/projecthub/iddi/windows-iot-automate-your-power-outlets-b1ba1e;Arduino;Arduino 903 | Talking Smart Glass for the Blind;https://create.arduino.cc/projecthub/B45i/talking-smart-glass-for-the-blind-87d31e;Arduino;Arduino 904 | Smart Door Lock Using WiFi Login Page by Arduino & ESP8266;https://create.arduino.cc/projecthub/electropeak/smart-door-lock-using-wifi-login-page-by-arduino-esp8266-e13825;Arduino;Arduino 905 | Sienci Mill One - Simple and Affordable Desktop CNC ;https://create.arduino.cc/projecthub/sienci_labs/sienci-mill-one-simple-and-affordable-desktop-cnc-a18278;Arduino;Arduino 906 | Domotic Greenhouse;https://create.arduino.cc/projecthub/cormaz/domotic-greenhouse-71573f;Arduino;Arduino 907 | DIY Retro Look FM Radio with TEA5767 Module;https://create.arduino.cc/projecthub/mircemk/diy-retro-look-fm-radio-with-tea5767-module-370b88;Arduino;Arduino 908 | Arduino - Web-Based Two-Player Game ;https://create.arduino.cc/projecthub/khanhhs/arduino-web-based-two-player-game-584daa;Arduino;Arduino 909 | Robot Arm with Controller;https://create.arduino.cc/projecthub/H0meMadeGarbage/robot-arm-with-controller-2038df;Arduino;Arduino 910 | How to read temperature and humidity on Blynk with DHT11;https://create.arduino.cc/projecthub/Prince_Matthew/how-to-read-temperature-and-humidity-on-blynk-with-dht11-f5fbae;Arduino;Arduino 911 | Doorbell;https://create.arduino.cc/projecthub/Arduino_Genuino/doorbell-36646c;Arduino;Arduino 912 | Gyroscope Fun with NeoPixel Ring;https://create.arduino.cc/projecthub/danionescu/gyroscope-fun-with-neopixel-ring-3a0b84;Arduino;Arduino 913 | Stair Climbing Robot;https://create.arduino.cc/projecthub/jjj/stair-climbing-robot-ad2203;Arduino;Arduino 914 | Super Easy to Build 1Sheeld 2 Wheel Drive Robot;https://create.arduino.cc/projecthub/13766/super-easy-to-build-1sheeld-2-wheel-drive-robot-cb9b66;Arduino;Arduino 915 | DIY Idea with RFID;https://create.arduino.cc/projecthub/Raushancpr/diy-idea-with-rfid-89e41d;Arduino;Arduino 916 | Portable Electrocardiograph (ECG);https://create.arduino.cc/projecthub/warcraft12321/portable-electrocardiograph-ecg-5a77fd;Arduino;Arduino 917 | rfid attendance system using arduino with GSM;https://create.arduino.cc/projecthub/sarful/rfid-attendance-system-using-arduino-with-gsm-1535c4;Arduino;Arduino 918 | Arduino WhatsApp Messages - Send WhatsApp Messages Using Pi;https://create.arduino.cc/projecthub/highvoltages/arduino-whatsapp-messages-send-whatsapp-messages-using-pi-605f52;Arduino;Arduino 919 | Arduino Apple Watch;https://create.arduino.cc/projecthub/Karlstrom/arduino-apple-watch-4879aa;Arduino;Arduino 920 | Simple and Smart Air Purifier System;https://create.arduino.cc/projecthub/aaronkow/simple-and-smart-air-purifier-system-8604ab;Arduino;Arduino 921 | Autobot Using Lego NXT Motors and Sensor;https://create.arduino.cc/projecthub/mtashiro/autobot-using-lego-nxt-motors-and-sensor-56ad60;Arduino;Arduino 922 | Controlling toy quadcopter(s) with Arduino;https://create.arduino.cc/projecthub/geekphysical/controlling-toy-quadcopter-s-with-arduino-6b4dcf;Arduino;Arduino 923 | I2S Theremin;https://create.arduino.cc/projecthub/Arduino_Genuino/i2s-theremin-cec47a;Arduino;Arduino 924 | Nano 33 IoT + EC/pH/ORP + WebAPK;https://create.arduino.cc/projecthub/uFire/nano-33-iot-ec-ph-orp-webapk-82ab54;Arduino;Arduino 925 | M1 Rover;https://create.arduino.cc/projecthub/AhmedAzouz/m1-rover-362c05;Arduino;Arduino 926 | Beautifully Finished Humidity and Temperature Sensor;https://create.arduino.cc/projecthub/WickedMakers/beautifully-finished-humidity-and-temperature-sensor-87ada5;Arduino;Arduino 927 | PC Controlled Robotic Arm;https://create.arduino.cc/projecthub/AhmedAzouz/pc-controlled-robotic-arm-841a41;Arduino;Arduino 928 | DIY Arduino Fire Alarm System At Home;https://create.arduino.cc/projecthub/mrmodder/diy-arduino-fire-alarm-system-at-home-c70970;Arduino;Arduino 929 | Snake LED Matrix Game;https://create.arduino.cc/projecthub/arduino-bro/snake-led-matrix-game-1c7222;Arduino;Arduino 930 | Water Softener;https://create.arduino.cc/projecthub/moty/water-softener-507b67;Arduino;Arduino 931 | How to modify analog output range of Arduino Due;https://create.arduino.cc/projecthub/ArduPic/how-to-modify-analog-output-range-of-arduino-due-6edfb5;Arduino;Arduino 932 | Tito - Arduino UNO 3D-printed robot;https://create.arduino.cc/projecthub/cparrapa/tito-arduino-uno-3d-printed-robot-9f7777;Arduino;Arduino 933 | Control Arduino Rover using Firmata and Xbox One Controller;https://create.arduino.cc/projecthub/svelde/control-arduino-rover-using-firmata-and-xbox-one-controller-70c51a;Arduino;Arduino 934 | In Servo We Trust!;https://create.arduino.cc/projecthub/Maya/in-servo-we-trust-6725f1;Arduino;Arduino 935 | An Urban Plant Watering Solution;https://create.arduino.cc/projecthub/james-yu/an-urban-plant-watering-solution-43a6eb;Arduino;Arduino 936 | How to Make an IR Sensor;https://create.arduino.cc/projecthub/Manikantsavadatti/how-to-make-an-ir-sensor-66786b;Arduino;Arduino 937 | Height Measure using VL53L0X;https://create.arduino.cc/projecthub/H0meMadeGarbage/height-measure-using-vl53l0x-aa4f4c;Arduino;Arduino 938 | How to Hack IR Remotes;https://create.arduino.cc/projecthub/tatco/how-to-hack-ir-remotes-2d8b18;Arduino;Arduino 939 | Enter the house like a Sith Lord;https://create.arduino.cc/projecthub/peejster/enter-the-house-like-a-sith-lord-337d91;Arduino;Arduino 940 | FizViz - Large Scale Physical Visualizations for Your Stats!;https://create.arduino.cc/projecthub/iot-design-shop/fizviz-large-scale-physical-visualizations-for-your-stats-03249d;Arduino;Arduino 941 | GPS Location Display With GPS And TFT Display Shields;https://create.arduino.cc/projecthub/mitov/gps-location-display-with-gps-and-tft-display-shields-ed38ec;Arduino;Arduino 942 | Security System Using Arduino Bluetooth Camera;https://create.arduino.cc/projecthub/amrmostaafaa/security-system-using-arduino-bluetooth-camera-616c4d;Arduino;Arduino 943 | Arduino Uno Autonomous Car;https://create.arduino.cc/projecthub/hannahmcneelyy/arduino-uno-autonomous-car-c45fd1;Arduino;Arduino 944 | Micro Soldering Station;https://create.arduino.cc/projecthub/paul0/micro-soldering-station-8f1d8f;Arduino;Arduino 945 | Temperature Controled Charcoal Smoker;https://create.arduino.cc/projecthub/dbarbee/temperature-controled-charcoal-smoker-58db49;Arduino;Arduino 946 | IoT Garage Door Monitor/Opener with Finger Print Scanner;https://create.arduino.cc/projecthub/Plastibots/iot-garage-door-monitor-opener-with-finger-print-scanner-f16e3f;Arduino;Arduino 947 | Light Control Using Arduino and Amazon Alexa;https://create.arduino.cc/projecthub/rajesh3/light-control-using-arduino-and-amazon-alexa-4de729;Arduino;Arduino 948 | Arduino Amiga Floppy Disk Reader (V1);https://create.arduino.cc/projecthub/robsmithdev/arduino-amiga-floppy-disk-reader-v1-485582;Arduino;Arduino 949 | Clock without using RTC in Arduino with Temperature and humi;https://create.arduino.cc/projecthub/ahmadordi/clock-without-using-rtc-in-arduino-with-temperature-and-humi-58e76e;Arduino;Arduino 950 | TV remote controlled Light and Fan;https://create.arduino.cc/projecthub/rishabh411/tv-remote-controlled-light-and-fan-f4bffc;Arduino;Arduino 951 | DIY Auto Voice Record and Playback;https://create.arduino.cc/projecthub/gadgetprogrammers/diy-auto-voice-record-and-playback-7a47d7;Arduino;Arduino 952 | WebServerBlink Using Arduino Uno WiFi;https://create.arduino.cc/projecthub/Salmanfarisvp/webserverblink-using-arduino-uno-wifi-bd5c59;Arduino;Arduino 953 | Minimal MIDI Drum Kit with 3D Printer;https://create.arduino.cc/projecthub/ryokosaka/minimal-midi-drum-kit-with-3d-printer-5633d2;Arduino;Arduino 954 | Arduino and Android Based Password Protected Door Lock;https://create.arduino.cc/projecthub/taifur/arduino-and-android-based-password-protected-door-lock-36887d;Arduino;Arduino 955 | Control Your Light Switch with Your Smartphone;https://create.arduino.cc/projecthub/alasdair-allan/control-your-light-switch-with-your-smartphone-a74c24;Arduino;Arduino 956 | Two Mode Robot Controlling through Android and Windowsphone8;https://create.arduino.cc/projecthub/Anas/two-mode-robot-controlling-through-android-and-windowsphone8-8c7564;Arduino;Arduino 957 | RGB Backlight + MSGEQ7 Audio Visualizer;https://create.arduino.cc/projecthub/PhilKey/rgb-backlight-msgeq7-audio-visualizer-e0054e;Arduino;Arduino 958 | Control Dual Axis FPV Camera Cradle with Joystick Module;https://create.arduino.cc/projecthub/SurtrTech/control-dual-axis-fpv-camera-cradle-with-joystick-module-6ee514;Arduino;Arduino 959 | Arduino Modules - Flame Sensor;https://create.arduino.cc/projecthub/SURYATEJA/arduino-modules-flame-sensor-6322fb;Arduino;Arduino 960 | Arduino Color Mixer;https://create.arduino.cc/projecthub/shakram02/arduino-color-mixer-d6264a;Arduino;Arduino 961 | Automatic 360° Photography Turntable;https://create.arduino.cc/projecthub/circuito-io-team/automatic-360-photography-turntable-586b1e;Arduino;Arduino 962 | Bluetooth Controlled Pick And Place Robot;https://create.arduino.cc/projecthub/ahmedibrrahim/bluetooth-controlled-pick-and-place-robot-992d06;Arduino;Arduino 963 | Clean Water AI;https://create.arduino.cc/projecthub/clean-water-ai/clean-water-ai-e40806;Arduino;Arduino 964 | Arduino - Web-Based Car Race Brick Game;https://create.arduino.cc/projecthub/Homer/arduino-web-based-car-race-brick-game-cb1b30;Arduino;Arduino 965 | Intelligent Charger for 9V NiMH Rechargeable Batteries V1;https://create.arduino.cc/projecthub/aleksand1975/intelligent-charger-for-9v-nimh-rechargeable-batteries-v1-61cbd6;Arduino;Arduino 966 | Homemade Claw Machine;https://create.arduino.cc/projecthub/-MMM-/homemade-claw-machine-0f26aa;Arduino;Arduino 967 | Really Homemade Oximeter Sensor;https://create.arduino.cc/projecthub/giulio-pons/really-homemade-oximeter-sensor-7cf6a1;Arduino;Arduino 968 | CNC (Mostly 3D Printed);https://create.arduino.cc/projecthub/jweers1/cnc-mostly-3d-printed-0f3613;Arduino;Arduino 969 | Alexa Controlled LEDs Through Arduino Yún;https://create.arduino.cc/projecthub/ben-eagan/alexa-controlled-leds-through-arduino-yun-ac1171;Arduino;Arduino 970 | Arduino - Take Picture - Upload to Google Drive;https://create.arduino.cc/projecthub/phpoc_man/arduino-take-picture-upload-to-google-drive-2d1cd3;Arduino;Arduino 971 | Arduino Menu on a Nokia 5110 Lcd Using a Rotary Encoder;https://create.arduino.cc/projecthub/nickthegreek82/arduino-menu-on-a-nokia-5110-lcd-using-a-rotary-encoder-f62f0f;Arduino;Arduino 972 | Turn Lights On When Approaching Home;https://create.arduino.cc/projecthub/andreiflorian/turn-lights-on-when-approaching-home-2634da;Arduino;Arduino 973 | Bluetooth Based Home Automation;https://create.arduino.cc/projecthub/brink-io/bluetooth-based-home-automation-6cb613;Arduino;Arduino 974 | Rocky Rover: Robotic Vision System PixyCam & Arduino 101;https://create.arduino.cc/projecthub/RONDAGDAG/rocky-rover-robotic-vision-system-pixycam-arduino-101-bd16f0;Arduino;Arduino 975 | Smart Humidifier;https://create.arduino.cc/projecthub/taifur/smart-humidifier-dac66f;Arduino;Arduino 976 | DIY Plant Moisture Sensor;https://create.arduino.cc/projecthub/millerman4487/diy-plant-moisture-sensor-474543;Arduino;Arduino 977 | Jamstack ecommerce site with Gatsby & Stripe Checkout;https://howtocode.io/jamstack-gatsby-stripe-ecommerce;Javascript;Gatsby, Stripe, Vercel, Jamstack 978 | Jamstack membership site with Eleventy & Memberstack;https://howtocode.io/jamstack-eleventy-memberstack;Javascript;Eleventy, Surge, Jamstack 979 | Jamstack blog with Hugo & Netlify;https://howtocode.io/jamstack-hugo-netlify-zapier;Javascript;Hugo, Netlify, Zapier, Jamstack 980 | Build a Travel Site with Tailwind CSS;https://howtocode.io/tutorials/tailwind-css-travel-site;HTML;HTML, CSS, Tailwind 981 | Create a Roguelike game in C++ and Unreal Engine;https://www.tomlooman.com/stanford-cs193u/;C++;C++, Unreal Engine 982 | Make a GameBoy Advance game;http://coranac.com/tonc/text/;C/C++;C/C++, GameBoy 983 | Learn C/C++ by making you own game engine;https://www.3dgep.com/cpp-fast-track-1-getting-started/;C/C++;C/C++, OpenGL 984 | Advanced Unity tutorials to learn about games and graphics;https://catlikecoding.com/unity/tutorials/;C#;C#, Unity, CG 985 | Build your own JIRA with Rust (Rust London Code Dojo);https://github.com/LukeMathWalker/build-your-own-jira-with-rust;Rust;Rust 986 | A Jira clone built with Vuejs & Nodejs/Graphql;https://github.com/Datlyfe/jira_clone;Javascript;Vue, NodeJS, GraphQL 987 | Rebuilding Git in Ruby;https://thoughtbot.com/blog/rebuilding-git-in-ruby;Ruby;Ruby, CVS 988 | Hecto: Build your own text editor in Rust;https://www.philippflenker.com/hecto/;Rust;Rust 989 | Implement your own model to generate text;https://bestofcode.net/blog/text-generation/;Javascript;Markov Models, Javascript, Statistics 990 | Reinforcement Learning based Q-Learning;https://github.com/adityagoel28/RL-Q-Learning;Python;Jupyter Notebook -------------------------------------------------------------------------------- /scripts/check_dead_links.py: -------------------------------------------------------------------------------- 1 | import time 2 | 3 | import requests 4 | import pandas as pd 5 | 6 | 7 | CODES = set([400, 404, 403, 408, 409, 501, 502, 503]) 8 | 9 | df = pd.read_csv("projects.csv", sep=";")["url"] 10 | 11 | 12 | for i, url in df.iteritems(): 13 | print(i) 14 | 15 | r = requests.get(url) 16 | status_code = r.status_code 17 | 18 | if status_code in CODES: 19 | print(f"Broken link {i} - Code {status_code}") 20 | 21 | time.sleep(5) 22 | -------------------------------------------------------------------------------- /scripts/check_duplicated.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | 3 | 4 | df = pd.read_csv("projects.csv", sep=";") 5 | print(df.shape) 6 | 7 | df.drop_duplicates(subset=["url"], inplace=True) 8 | print(df.shape) 9 | 10 | df.to_csv("new.csv", sep=";", index=None) 11 | -------------------------------------------------------------------------------- /scripts/create_filter.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | 3 | 4 | JS_FRAMEWORKS = set( 5 | [ 6 | "Gatsby", 7 | "Eleventy", 8 | "Hugo", 9 | "Node", 10 | "NodeJS", 11 | "React", 12 | "React Native", 13 | "Angular", 14 | "Vue", 15 | "VueJS", 16 | "NextJS", 17 | "Adonis JS", 18 | ] 19 | ) 20 | 21 | LANGUAGES = set( 22 | [ 23 | "Python", 24 | "C/C++", 25 | "C#", 26 | "Clojure", 27 | "F#", 28 | "Julia", 29 | "Java", 30 | "Javascript", 31 | "Rust", 32 | "Ruby", 33 | "Haskell", 34 | "Golang", 35 | "PHP", 36 | "HTML", 37 | "Scala", 38 | "Swift", 39 | "Ocaml", 40 | "Scala", 41 | "Arduino", 42 | "Kotlin", 43 | "Dart", 44 | "Erlang", 45 | "Elixir", 46 | "TypeScript", 47 | ] 48 | ) 49 | 50 | 51 | df = pd.read_csv("test.csv", sep=";") 52 | new_values = [] 53 | 54 | for c, i in df["technology"].iteritems(): 55 | split_techno = i.split(", ") 56 | 57 | if split_techno[0] in JS_FRAMEWORKS: 58 | new_values.append("Javascript") 59 | else: 60 | if len(split_techno) == 1: 61 | new_values.append(split_techno[0]) 62 | else: 63 | if split_techno[0] in LANGUAGES: 64 | new_values.append(split_techno[0]) 65 | else: 66 | new_values.append(split_techno[1]) 67 | 68 | 69 | df["main_language"] = new_values 70 | df["url"] = df["url"].str.rstrip() 71 | 72 | new_df = df[["title", "url", "main_language", "technology"]] 73 | 74 | new_df.to_csv("new_test.csv", sep=";", index=None) 75 | -------------------------------------------------------------------------------- /scripts/scrape_arduino.py: -------------------------------------------------------------------------------- 1 | import time 2 | 3 | import requests 4 | from bs4 import BeautifulSoup 5 | 6 | 7 | BASE_URL = "https://create.arduino.cc/projecthub?sort=popular&type=tutorial&page=" 8 | PAGES = 20 9 | 10 | with open("arduino.txt", "a") as f: 11 | 12 | for page_number in range(1, PAGES): 13 | 14 | print(page_number) 15 | 16 | r = requests.get(f"{BASE_URL}{page_number}") 17 | soup = BeautifulSoup(r.text, "html.parser") 18 | 19 | a = soup.find_all("a", class_="project-link-with-ref") 20 | 21 | for i in range(1, len(a), 2): 22 | f.write(f"{a[i].string};https://create.arduino.cc{a[i].get('href')};Arduino\n") 23 | 24 | time.sleep(2) 25 | --------------------------------------------------------------------------------