# learn-x-by-doing-y **Repository Path**: limo/learn-x-by-doing-y ## Basic Information - **Project Name**: learn-x-by-doing-y - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-10 - **Last Updated**: 2021-03-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Build an Interpreter [http://www.craftinginterpreters.com/](http://www.craftinginterpreters.com/) - 主要语言:C/C++ - 技术知识:C/C++ ## Memory Allocators 101 - Write a simple memory allocator [https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a Shell in C [https://brennan.io/2015/01/16/write-a-shell-in-c/](https://brennan.io/2015/01/16/write-a-shell-in-c/) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a FUSE Filesystem [https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/](https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/) - 主要语言:C/C++ - 技术知识:C/C++ ## Build Your Own Text Editor [http://viewsourcecode.org/snaptoken/kilo/](http://viewsourcecode.org/snaptoken/kilo/) - 主要语言:C/C++ - 技术知识:C/C++ ## Build Your Own Lisp [http://www.buildyourownlisp.com/](http://www.buildyourownlisp.com/) - 主要语言:C/C++ - 技术知识:C/C++ ## How to Program an NES Game in C [https://nesdoug.com/](https://nesdoug.com/) - 主要语言:C/C++ - 技术知识:C/C++ ## Write an OS from scratch [https://github.com/tuhdo/os01](https://github.com/tuhdo/os01) - 主要语言:C/C++ - 技术知识:C/C++ ## How to create an OS from scratch [https://github.com/cfenollosa/os-tutorial](https://github.com/cfenollosa/os-tutorial) - 主要语言:C/C++ - 技术知识:C/C++ ## Building a CHIP-8 Emulator [https://austinmorlan.com/posts/chip8_emulator/](https://austinmorlan.com/posts/chip8_emulator/) - 主要语言:C/C++ - 技术知识:C/C++ ## Beginning Game Programming with C++ and SDL [http://lazyfoo.net/tutorials/SDL/](http://lazyfoo.net/tutorials/SDL/) - 主要语言:C/C++ - 技术知识:C/C++ ## Implementing a Key-Value Store [http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/](http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/) - 主要语言:C/C++ - 技术知识:C/C++ ## Tiny Renderer or how OpenGL works: software rendering in 500 lines of code [https://github.com/ssloy/tinyrenderer/wiki](https://github.com/ssloy/tinyrenderer/wiki) - 主要语言:C/C++ - 技术知识:C/C++ ## Understandable RayTracing in 256 lines of bare C++ [https://github.com/ssloy/tinyraytracer/wiki](https://github.com/ssloy/tinyraytracer/wiki) - 主要语言:C/C++ - 技术知识:C/C++ ## KABOOM! in 180 lines of bare C++ [https://github.com/ssloy/tinykaboom/wiki](https://github.com/ssloy/tinykaboom/wiki) - 主要语言:C/C++ - 技术知识:C/C++ ## 486 lines of C++: old-school FPS in a weekend [https://github.com/ssloy/tinyraycaster/wiki](https://github.com/ssloy/tinyraycaster/wiki) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a minimal x86-64 JIT compiler in C++ [https://solarianprogrammer.com/2018/01/10/writing-minimal-x86-64-jit-compiler-cpp/](https://solarianprogrammer.com/2018/01/10/writing-minimal-x86-64-jit-compiler-cpp/) - 主要语言:C/C++ - 技术知识:C/C++ ## Build a Live Code-reloader Library for C++ [http://howistart.org/posts/cpp/1/index.html](http://howistart.org/posts/cpp/1/index.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a hash table in C [https://github.com/jamesroutley/write-a-hash-table](https://github.com/jamesroutley/write-a-hash-table) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's Build a Simple Database [https://cstack.github.io/db_tutorial/](https://cstack.github.io/db_tutorial/) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's Write a Kernel [http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel](http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a Bootloader in C [http://3zanders.co.uk/2017/10/13/writing-a-bootloader/](http://3zanders.co.uk/2017/10/13/writing-a-bootloader/) - 主要语言:C/C++ - 技术知识:C/C++ ## Linux Container in 500 Lines of Code [https://blog.lizzie.io/linux-containers-in-500-loc.html](https://blog.lizzie.io/linux-containers-in-500-loc.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Write Your Own Virtual Machine [https://justinmeiners.github.io/lc3-vm/](https://justinmeiners.github.io/lc3-vm/) - 主要语言:C/C++ - 技术知识:C/C++ ## Learning KVM - Implement Your Own Linux Kernel [https://david942j.blogspot.com/2018/10/note-learning-kvm-implement-your-own.html](https://david942j.blogspot.com/2018/10/note-learning-kvm-implement-your-own.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a C compiler [https://norasandler.com/2017/11/29/Write-a-Compiler.html](https://norasandler.com/2017/11/29/Write-a-Compiler.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Implementing a Language with LLVM [https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm) - 主要语言:C/C++ - 技术知识:C/C++ ## Meta Crush Saga: a C++17 compile-time game [https://jguegant.github.io//jguegant.github.io/blogs/tech/meta-crush-saga.html](https://jguegant.github.io//jguegant.github.io/blogs/tech/meta-crush-saga.html) - 主要语言:C/C++ - 技术知识:C/C++ ## High-Performance Matrix Multiplication [https://gist.github.com/nadavrot/5b35d44e8ba3dd718e595e40184d03f0](https://gist.github.com/nadavrot/5b35d44e8ba3dd718e595e40184d03f0) - 主要语言:C/C++ - 技术知识:C/C++ ## Space Invaders from Scratch [http://nicktasios.nl/posts/space-invaders-from-scratch-part-1.html](http://nicktasios.nl/posts/space-invaders-from-scratch-part-1.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Tetris Tutorial in C++ Platform Independent [http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/](http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a Linux Debugger [https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/) - 主要语言:C/C++ - 技术知识:C/C++ ## Learn C# By Building a Simple RPG Game [http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/](http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/) - 主要语言:C# - 技术知识:C# ## Create a Rogue-like game in C# [https://roguesharp.wordpress.com/](https://roguesharp.wordpress.com/) - 主要语言:C# - 技术知识:C# ## Create a Blank App with C# and Xamarin [https://www.intertech.com/Blog/xamarin-tutorial-part-1-create-a-blank-app/](https://www.intertech.com/Blog/xamarin-tutorial-part-1-create-a-blank-app/) - 主要语言:C# - 技术知识:C# ## Build iOS Photo Library App with Xamarin and Visual Studio [https://www.raywenderlich.com/134049/building-ios-apps-with-xamarin-and-visual-studio](https://www.raywenderlich.com/134049/building-ios-apps-with-xamarin-and-visual-studio) - 主要语言:C# - 技术知识:C# ## Building the CoreWiki [https://www.youtube.com/playlist?list=PLVMqA0_8O85yC78I4Xj7z48ES48IQBa7p](https://www.youtube.com/playlist?list=PLVMqA0_8O85yC78I4Xj7z48ES48IQBa7p) - 主要语言:C# - 技术知识:C# ## Build a Twitter Bot with Clojure [http://howistart.org/posts/clojure/1/index.html](http://howistart.org/posts/clojure/1/index.html) - 主要语言:Clojure - 技术知识:Clojure ## Building a Spell-Checker [https://bernhardwenzel.com/articles/clojure-spellchecker/](https://bernhardwenzel.com/articles/clojure-spellchecker/) - 主要语言:Clojure - 技术知识:Clojure ## Building a JIRA integration with Clojure & Atlassian Connect [https://hackernoon.com/building-a-jira-integration-with-clojure-atlassian-connect-506ebd112807](https://hackernoon.com/building-a-jira-integration-with-clojure-atlassian-connect-506ebd112807) - 主要语言:Clojure - 技术知识:Clojure ## Prototyping with Clojure [https://github.com/aliaksandr-s/prototyping-with-clojure](https://github.com/aliaksandr-s/prototyping-with-clojure) - 主要语言:Clojure - 技术知识:Clojure ## Building a Simple Chat App With Elixir and Phoenix [https://sheharyar.me/blog/simple-chat-phoenix-elixir/](https://sheharyar.me/blog/simple-chat-phoenix-elixir/) - 主要语言:Elixir - 技术知识:Elixir ## 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](https://medium.com/free-code-camp/how-to-write-a-super-fast-link-shortener-with-elixir-phoenix-and-mnesia-70ffa1564b3c) - 主要语言:Elixir - 技术知识:Elixir ## 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](https://medium.com/@kansi/chatbus-build-your-first-multi-user-chat-room-app-with-erlang-otp-b55f72064901) - 主要语言:Erlang - 技术知识:Erlang ## 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](http://marianoguerra.org/posts/making-a-chat-app-with-erlang-rebar-cowboy-and-bullet.html) - 主要语言:Erlang - 技术知识:Erlang ## Write your own Excel in 100 lines of F# [http://tomasp.net/blog/2018/write-your-own-excel](http://tomasp.net/blog/2018/write-your-own-excel) - 主要语言:F# - 技术知识:F# ## Build a Simple HTTP Server with Java [http://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html](http://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html) - 主要语言:Java - 技术知识:Java ## Build an Android Flashlight App [https://www.youtube.com/watch?v=dhWL4DC7Krs](https://www.youtube.com/watch?v=dhWL4DC7Krs) - 主要语言:Java - 技术知识:Java ## Build a Spring Boot App with User Authentication [https://scotch.io/tutorials/build-a-spring-boot-app-with-user-authentication](https://scotch.io/tutorials/build-a-spring-boot-app-with-user-authentication) - 主要语言:Java - 技术知识:Java ## Build 30 things in 30 days with 30 tutorials [https://javascript30.com](https://javascript30.com) - 主要语言:Javascript - 技术知识:Javascript ## Build an App in Pure JS [https://medium.com/codingthesmartway-com-blog/pure-javascript-building-a-real-world-application-from-scratch-5213591cfcd6](https://medium.com/codingthesmartway-com-blog/pure-javascript-building-a-real-world-application-from-scratch-5213591cfcd6) - 主要语言:Javascript - 技术知识:Javascript ## Build a Jupyter Notebook Extension [https://link.medium.com/wWUO7TN8SS](https://link.medium.com/wWUO7TN8SS) - 主要语言:Javascript - 技术知识:Javascript ## Build A Loading Screen [https://medium.freecodecamp.org/how-to-build-a-delightful-loading-screen-in-5-minutes-847991da509f](https://medium.freecodecamp.org/how-to-build-a-delightful-loading-screen-in-5-minutes-847991da509f) - 主要语言:Javascript - 技术知识:Javascript ## Build an HTML Calculator with JS [https://medium.freecodecamp.org/how-to-build-an-html-calculator-app-from-scratch-using-javascript-4454b8714b98](https://medium.freecodecamp.org/how-to-build-an-html-calculator-app-from-scratch-using-javascript-4454b8714b98) - 主要语言:Javascript - 技术知识:Javascript ## Create Serverless React.js Apps [http://serverless-stack.com/](http://serverless-stack.com/) - 主要语言:Javascript - 技术知识:React ## Create a Trello Clone [http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1/](http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1/) - 主要语言:Javascript - 技术知识:React ## 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](https://www.zcfy.cc/original/create-a-character-voting-app-using-react-node-js-mongodb-and-socket-io) - 主要语言:Javascript - 技术知识:React ## React Tutorial: Cloning Yelp [https://www.fullstackreact.com/articles/react-tutorial-cloning-yelp/](https://www.fullstackreact.com/articles/react-tutorial-cloning-yelp/) - 主要语言:Javascript - 技术知识:React ## 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](https://teropa.info/blog/2015/09/10/full-stack-redux-tutorial.html) - 主要语言:Javascript - 技术知识:React ## Build a Twitter Stream with React and Node [https://scotch.io/tutorials/build-a-real-time-twitter-stream-with-node-and-react-js](https://scotch.io/tutorials/build-a-real-time-twitter-stream-with-node-and-react-js) - 主要语言:Javascript - 技术知识:React ## 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](https://scotch.io/tutorials/build-a-serverless-mern-story-app-with-webtask-io-zero-to-deploy-1) - 主要语言:Javascript - 技术知识:React ## 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](https://codeburst.io/build-simple-medium-com-on-node-js-and-react-js-a278c5192f47) - 主要语言:Javascript - 技术知识:React ## Integrate MailChimp in JS [https://medium.freecodecamp.org/how-to-integrate-mailchimp-in-a-javascript-web-app-2a889fb43f6f](https://medium.freecodecamp.org/how-to-integrate-mailchimp-in-a-javascript-web-app-2a889fb43f6f) - 主要语言:Javascript - 技术知识:React ## Build A Chrome Extension with React + Parcel [https://medium.freecodecamp.org/building-chrome-extensions-in-react-parcel-79d0240dd58f](https://medium.freecodecamp.org/building-chrome-extensions-in-react-parcel-79d0240dd58f) - 主要语言:Javascript - 技术知识:React ## Build A ToDo App With React Native [https://blog.hasura.io/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a](https://blog.hasura.io/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a) - 主要语言:Javascript - 技术知识:React ## Make a Chat Application [https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a](https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a) - 主要语言:Javascript - 技术知识:React ## Create a News App with React Native [https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627](https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627) - 主要语言:Javascript - 技术知识:React ## Learn Webpack For React [https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) - 主要语言:Javascript - 技术知识:React ## Testing React App With Pupepeteer and Jest [https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) - 主要语言:Javascript - 技术知识:React ## Build Your Own React Boilerplate [https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f](https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) - 主要语言:Javascript - 技术知识:React ## Code The Game Of Life With React [https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174](https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174) - 主要语言:Javascript - 技术知识:React ## A Basic React+Redux Introductory Tutorial [https://hackernoon.com/a-basic-react-redux-introductory-tutorial-adcc681eeb5e](https://hackernoon.com/a-basic-react-redux-introductory-tutorial-adcc681eeb5e) - 主要语言:Javascript - 技术知识:React ## Build an Appointment Scheduler [https://hackernoon.com/build-an-appointment-scheduler-using-react-twilio-and-cosmic-js-95377f6d1040](https://hackernoon.com/build-an-appointment-scheduler-using-react-twilio-and-cosmic-js-95377f6d1040) - 主要语言:Javascript - 技术知识:React ## Build A Chat App with Sentiment Analysis [https://codeburst.io/build-a-chat-app-with-sentiment-analysis-using-next-js-c43ebf3ea643](https://codeburst.io/build-a-chat-app-with-sentiment-analysis-using-next-js-c43ebf3ea643) - 主要语言:Javascript - 技术知识:React ## Build A Full Stack Web Application Setup [https://hackernoon.com/full-stack-web-application-using-react-node-js-express-and-webpack-97dbd5b9d708](https://hackernoon.com/full-stack-web-application-using-react-node-js-express-and-webpack-97dbd5b9d708) - 主要语言:Javascript - 技术知识:React ## Create Todoist clone with React and Firebase [https://www.youtube.com/watch?v=hT3j87FMR6M](https://www.youtube.com/watch?v=hT3j87FMR6M) - 主要语言:Javascript - 技术知识:React ## Build A Random Quote Machine [https://www.youtube.com/watch?v=3QngsWA9IEE](https://www.youtube.com/watch?v=3QngsWA9IEE) - 主要语言:Javascript - 技术知识:React ## Build an Instagram Clone with Angular 1.x [https://hackhands.com/building-instagram-clone-angularjs-satellizer-nodejs-mongodb/](https://hackhands.com/building-instagram-clone-angularjs-satellizer-nodejs-mongodb/) - 主要语言:Javascript - 技术知识:Angular ## Build an offline-capable Hacker News client with Angular 2+ [https://houssein.me/angular2-hacker-news](https://houssein.me/angular2-hacker-news) - 主要语言:Javascript - 技术知识:Angular ## Build a Google+ clone with Django and AngularJS with Angular 1.x [https://thinkster.io/django-angularjs-tutorial](https://thinkster.io/django-angularjs-tutorial) - 主要语言:Javascript - 技术知识:Angular ## 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](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 ## 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](https://medium.com/@tomastrajan/how-to-build-responsive-layouts-with-bootstrap-4-and-angular-6-cfbb108d797b) - 主要语言:Javascript - 技术知识:Angular ## ToDo App with Angular 5 [http://www.discoversdk.com/blog/angular-5-to-do-list-app-part-1](http://www.discoversdk.com/blog/angular-5-to-do-list-app-part-1) - 主要语言:Javascript - 技术知识:Angular ## 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](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 ## Build a real-time Markdown Editor with NodeJS [https://scotch.io/tutorials/building-a-real-time-markdown-viewer](https://scotch.io/tutorials/building-a-real-time-markdown-viewer) - 主要语言:Javascript - 技术知识:NodeJS ## Test-Driven Development with NodeJS, Postgres and Knex [http://mherman.org/blog/2016/04/28/test-driven-development-with-node/](http://mherman.org/blog/2016/04/28/test-driven-development-with-node/) - 主要语言:Javascript - 技术知识:NodeJS ## 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](https://codeburst.io/build-a-simple-twitter-bot-with-node-js-in-just-38-lines-of-code-ed92db9eb078) - 主要语言:Javascript - 技术知识:NodeJS ## Create A Simple RESTFUL Web App [https://closebrace.com/tutorials/2017-03-02/creating-a-simple-restful-web-app-with-nodejs-express-and-mongodb](https://closebrace.com/tutorials/2017-03-02/creating-a-simple-restful-web-app-with-nodejs-express-and-mongodb) - 主要语言:Javascript - 技术知识:NodeJS ## Build A Simple Search Bot in 30 minutes [https://medium.freecodecamp.org/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1](https://medium.freecodecamp.org/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1) - 主要语言:Javascript - 技术知识:NodeJS ## Build A Job Scraping Web App [https://medium.freecodecamp.org/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc](https://medium.freecodecamp.org/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc) - 主要语言:Javascript - 技术知识:NodeJS ## 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](https://medium.com/@anas.mammeri/vue-2-firebase-how-to-build-a-vue-app-with-firebase-authentication-system-in-15-minutes-fdce6f289c3c) - 主要语言:Javascript - 技术知识:Vue ## Vue.js Application Tutorial – Creating a Simple Budgeting App with Vue [https://matthiashager.com/complete-vuejs-application-tutorial/](https://matthiashager.com/complete-vuejs-application-tutorial/) - 主要语言:Javascript - 技术知识:Vue ## Build a Blog with Vue, GraphQL and Apollo [https://scotch.io/tutorials/build-a-blog-with-vue-graphql-and-apollo-client](https://scotch.io/tutorials/build-a-blog-with-vue-graphql-and-apollo-client) - 主要语言:Javascript - 技术知识:Vue ## Build a full stack web application using MEVN MongoDB, Express, Vue, NodeJS stack [https://medium.com/@anaida07/mevn-stack-application-part-1-3a27b61dcae0](https://medium.com/@anaida07/mevn-stack-application-part-1-3a27b61dcae0) - 主要语言:Javascript - 技术知识:Vue ## Vue.js To-Do List Tutorial [https://www.youtube.com/watch?v=78tNYZUS-ps](https://www.youtube.com/watch?v=78tNYZUS-ps) - 主要语言:Javascript - 技术知识:Vue ## Keddit - Learn Kotlin While Developing an Android Application [https://medium.com/@juanchosaravia/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664](https://medium.com/@juanchosaravia/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664) - 主要语言:Kotlin - 技术知识:Kotlin ## Mining Twitter Data with Python [https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/](https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/) - 主要语言:Python - 技术知识:Python ## Scrape a Website with Scrapy and MongoDB [https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/](https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/) - 主要语言:Python - 技术知识:Python ## 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/](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 ## Which Movie Should I Watch using BeautifulSoup [https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1](https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1) - 主要语言:Python - 技术知识:Python ## Build a Microblog with Flask [https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world) - 主要语言:Python - 技术知识:Python ## Create a Blog Web App In Django [https://tutorial.djangogirls.org/en/](https://tutorial.djangogirls.org/en/) - 主要语言:Python - 技术知识:Python ## Choose Your Own Adventure Presentations [https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html](https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html) - 主要语言:Python - 技术知识:Python ## Build a Todo List with Flask and RethinkDB [https://realpython.com/blog/python/rethink-flask-a-simple-todo-list-powered-by-flask-and-rethinkdb/](https://realpython.com/blog/python/rethink-flask-a-simple-todo-list-powered-by-flask-and-rethinkdb/) - 主要语言:Python - 技术知识:Python ## Build a Todo List with Django and Test-Driven Development [http://www.obeythetestinggoat.com/](http://www.obeythetestinggoat.com/) - 主要语言:Python - 技术知识:Python ## Build a RESTful Microservice in Python [http://www.skybert.net/python/developing-a-restful-micro-service-in-python/](http://www.skybert.net/python/developing-a-restful-micro-service-in-python/) - 主要语言:Python - 技术知识:Python ## Microservices with Docker, Flask, and React [https://testdriven.io/](https://testdriven.io/) - 主要语言:Python - 技术知识:Python ## Build A Simple Web App With Flask [https://pythonspot.com/flask-web-app-with-python/](https://pythonspot.com/flask-web-app-with-python/) - 主要语言:Python - 技术知识:Python ## Build a RESTful API with Flask – The TDD Way [https://scotch.io/tutorials/build-a-restful-api-with-flask-the-tdd-way](https://scotch.io/tutorials/build-a-restful-api-with-flask-the-tdd-way) - 主要语言:Python - 技术知识:Python ## Create A Django API in under 20 minutes [https://codeburst.io/create-a-django-api-in-under-20-minutes-2a082a60f6f3](https://codeburst.io/create-a-django-api-in-under-20-minutes-2a082a60f6f3) - 主要语言:Python - 技术知识:Python ## Build a Reddit Bot [http://pythonforengineers.com/build-a-reddit-bot-part-1/](http://pythonforengineers.com/build-a-reddit-bot-part-1/) - 主要语言:Python - 技术知识:Python ## How to Make a Reddit Bot - YouTube [https://www.youtube.com/watch?v=krTUf7BpTc0](https://www.youtube.com/watch?v=krTUf7BpTc0) - 主要语言:Python - 技术知识:Python ## Build a Facebook Messenger Bot [https://blog.hartleybrody.com/fb-messenger-bot/](https://blog.hartleybrody.com/fb-messenger-bot/) - 主要语言:Python - 技术知识:Python ## Making a Reddit + Facebook Messenger Bot [https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/](https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/) - 主要语言:Python - 技术知识:Python ## How To Create a Telegram Bot Using Python [https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/](https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/) - 主要语言:Python - 技术知识:Python ## Create a Twitter Bot In Python [https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607](https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607) - 主要语言:Python - 技术知识:Python ## Learn Python For Data Science by Doing Several Projects [https://www.youtube.com/watch?v=T5pRlIbr6gg](https://www.youtube.com/watch?v=T5pRlIbr6gg) - 主要语言:Python - 技术知识:Python ## Write Linear Regression From Scratch in Python [https://www.youtube.com/watch?v=uwwWVAgJBcM](https://www.youtube.com/watch?v=uwwWVAgJBcM) - 主要语言:Python - 技术知识:Python ## Step-By-Step Machine Learning In Python [https://machinelearningmastery.com/machine-learning-in-python-step-by-step/](https://machinelearningmastery.com/machine-learning-in-python-step-by-step/) - 主要语言:Python - 技术知识:Python ## Predict Quality Of Wine [https://medium.freecodecamp.org/using-machine-learning-to-predict-the-quality-of-wines-9e2e13d7480d](https://medium.freecodecamp.org/using-machine-learning-to-predict-the-quality-of-wines-9e2e13d7480d) - 主要语言:Python - 技术知识:Python ## Solving A Fruits Classification Problem [https://towardsdatascience.com/solving-a-simple-classification-problem-with-python-fruits-lovers-edition-d20ab6b071d2](https://towardsdatascience.com/solving-a-simple-classification-problem-with-python-fruits-lovers-edition-d20ab6b071d2) - 主要语言:Python - 技术知识:Python ## Learn Unsupervised Learning with Python [https://towardsdatascience.com/unsupervised-learning-with-python-173c51dc7f03](https://towardsdatascience.com/unsupervised-learning-with-python-173c51dc7f03) - 主要语言:Python - 技术知识:Python ## Build Your Own Neural Net from Scratch in Python [https://towardsdatascience.com/how-to-build-your-own-neural-network-from-scratch-in-python-68998a08e4f6](https://towardsdatascience.com/how-to-build-your-own-neural-network-from-scratch-in-python-68998a08e4f6) - 主要语言:Python - 技术知识:Python ## Linear Regression in Python without sklearn [https://medium.com/we-are-orb/linear-regression-in-python-without-scikit-learn-50aef4b8d122](https://medium.com/we-are-orb/linear-regression-in-python-without-scikit-learn-50aef4b8d122) - 主要语言:Python - 技术知识:Python ## Multivariate Linear Regression without sklearn [https://medium.com/we-are-orb/multivariate-linear-regression-in-python-without-scikit-learn-7091b1d45905](https://medium.com/we-are-orb/multivariate-linear-regression-in-python-without-scikit-learn-7091b1d45905) - 主要语言:Python - 技术知识:Python ## Music Recommender using KNN [https://towardsdatascience.com/how-to-build-a-simple-song-recommender-296fcbc8c85](https://towardsdatascience.com/how-to-build-a-simple-song-recommender-296fcbc8c85) - 主要语言:Python - 技术知识:Python ## Find Similar Quora Questions [https://towardsdatascience.com/finding-similar-quora-questions-with-bow-tfidf-and-random-forest-c54ad88d1370](https://towardsdatascience.com/finding-similar-quora-questions-with-bow-tfidf-and-random-forest-c54ad88d1370) - 主要语言:Python - 技术知识:Python ## Build A Document Scanner [https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/](https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/) - 主要语言:Python - 技术知识:Python ## Build A Face Detector using OpenCV and Deep Learning [https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/](https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/) - 主要语言:Python - 技术知识:Python ## 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/](https://www.pyimagesearch.com/2018/06/18/face-recognition-with-opencv-python-and-deep-learning/) - 主要语言:Python - 技术知识:Python ## Detect The Salient Features in an Image [https://www.pyimagesearch.com/2018/07/16/opencv-saliency-detection/](https://www.pyimagesearch.com/2018/07/16/opencv-saliency-detection/) - 主要语言:Python - 技术知识:Python ## Build A Barcode Scanner [https://www.pyimagesearch.com/2018/05/21/an-opencv-barcode-and-qr-code-scanner-with-zbar/](https://www.pyimagesearch.com/2018/05/21/an-opencv-barcode-and-qr-code-scanner-with-zbar/) - 主要语言:Python - 技术知识:Python ## Learn Face Clustering with Python [https://www.pyimagesearch.com/2018/07/09/face-clustering-with-python/](https://www.pyimagesearch.com/2018/07/09/face-clustering-with-python/) - 主要语言:Python - 技术知识:Python ## Object Tracking with Camshift [https://www.pyimagesearch.com/wp-content/uploads/2014/11/opencv_crash_course_camshift.pdf](https://www.pyimagesearch.com/wp-content/uploads/2014/11/opencv_crash_course_camshift.pdf) - 主要语言:Python - 技术知识:Python ## Semantic Segmentation with OpenCV and Deep Learning [https://www.pyimagesearch.com/2018/09/03/semantic-segmentation-with-opencv-and-deep-learning/](https://www.pyimagesearch.com/2018/09/03/semantic-segmentation-with-opencv-and-deep-learning/) - 主要语言:Python - 技术知识:Python ## Text Detection in Images and Videos [https://www.pyimagesearch.com/2018/08/20/opencv-text-detection-east-text-detector/](https://www.pyimagesearch.com/2018/08/20/opencv-text-detection-east-text-detector/) - 主要语言:Python - 技术知识:Python ## People Counter using OpenCV [https://www.pyimagesearch.com/2018/08/13/opencv-people-counter/](https://www.pyimagesearch.com/2018/08/13/opencv-people-counter/) - 主要语言:Python - 技术知识:Python ## Tracking Multiple Objects with OpenCV [https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/](https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/) - 主要语言:Python - 技术知识:Python ## Neural Style Transfer with OpenCV [https://www.pyimagesearch.com/2018/08/27/neural-style-transfer-with-opencv/](https://www.pyimagesearch.com/2018/08/27/neural-style-transfer-with-opencv/) - 主要语言:Python - 技术知识:Python ## OpenCV OCR and Text Recognition [https://www.pyimagesearch.com/2018/09/17/opencv-ocr-and-text-recognition-with-tesseract/](https://www.pyimagesearch.com/2018/09/17/opencv-ocr-and-text-recognition-with-tesseract/) - 主要语言:Python - 技术知识:Python ## Text Skew Correction Tutorial [https://www.pyimagesearch.com/2017/02/20/text-skew-correction-opencv-python/](https://www.pyimagesearch.com/2017/02/20/text-skew-correction-opencv-python/) - 主要语言:Python - 技术知识:Python ## Facial Landmark Detection Tutorial [https://www.pyimagesearch.com/2017/04/03/facial-landmarks-dlib-opencv-python/](https://www.pyimagesearch.com/2017/04/03/facial-landmarks-dlib-opencv-python/) - 主要语言:Python - 技术知识:Python ## 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/](https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentation-using-mask-r-cnn-in-opencv-python-c/) - 主要语言:Python - 技术知识:Python ## 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/](https://www.pyimagesearch.com/2015/05/04/target-acquired-finding-targets-in-drone-and-quadcopter-video-streams-using-python-and-opencv/) - 主要语言:Python - 技术知识:Python ## EigenFaces using OpenCV [https://www.learnopencv.com/eigenface-using-opencv-c-python/](https://www.learnopencv.com/eigenface-using-opencv-c-python/) - 主要语言:Python - 技术知识:Python ## Faster 5-point Facial Landmark Detection Tutorial [https://www.pyimagesearch.com/2018/04/02/faster-facial-landmark-detector-with-dlib/](https://www.pyimagesearch.com/2018/04/02/faster-facial-landmark-detector-with-dlib/) - 主要语言:Python - 技术知识:Python ## Hand Keypoint Detection [https://www.learnopencv.com/hand-keypoint-detection-using-deep-learning-and-opencv/](https://www.learnopencv.com/hand-keypoint-detection-using-deep-learning-and-opencv/) - 主要语言:Python - 技术知识:Python ## Dlib Correlation Object Tracking [https://www.pyimagesearch.com/2018/10/22/object-tracking-with-dlib/](https://www.pyimagesearch.com/2018/10/22/object-tracking-with-dlib/) - 主要语言:Python - 技术知识:Python ## Image Stitching with OpenCV and Python [https://www.pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/](https://www.pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/) - 主要语言:Python - 技术知识:Python ## Instance Segmentation with OpenCV [https://www.pyimagesearch.com/2018/11/26/instance-segmentation-with-opencv/](https://www.pyimagesearch.com/2018/11/26/instance-segmentation-with-opencv/) - 主要语言:Python - 技术知识:Python ## Face mask detector [https://www.pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/](https://www.pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/) - 主要语言:Python - 技术知识:Python ## Using Convolutional Neural Nets to Detect Facial Keypoints [http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/](http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/) - 主要语言:Python - 技术知识:Python ## Generate an Average Face using Python and OpenCV [https://www.learnopencv.com/average-face-opencv-c-python-tutorial/](https://www.learnopencv.com/average-face-opencv-c-python-tutorial/) - 主要语言:Python - 技术知识:Python ## Break A Captcha System using CNNs [https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710](https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710) - 主要语言:Python - 技术知识:Python ## Use pre-trained Inception model to provide image predictions [https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) - 主要语言:Python - 技术知识:Python ## Create your first CNN [https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) - 主要语言:Python - 技术知识:Python ## Build A Facial Recognition Pipeline [https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8) - 主要语言:Python - 技术知识:Python ## Build An Image Caption Generator [https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f](https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f) - 主要语言:Python - 技术知识:Python ## Make your Own Face Recognition System [https://medium.freecodecamp.org/making-your-own-face-recognition-system-29a8e728107c](https://medium.freecodecamp.org/making-your-own-face-recognition-system-29a8e728107c) - 主要语言:Python - 技术知识:Python ## 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](https://towardsdatascience.com/how-i-trained-a-language-detection-ai-in-20-minutes-with-a-97-accuracy-fdeca0fb7724) - 主要语言:Python - 技术知识:Python ## Object Detection With Neural Networks [https://towardsdatascience.com/object-detection-with-neural-networks-a4e2c46b4491](https://towardsdatascience.com/object-detection-with-neural-networks-a4e2c46b4491) - 主要语言:Python - 技术知识:Python ## Learn Twitter Sentiment Analysis [https://towardsdatascience.com/another-twitter-sentiment-analysis-bb5b01ebad90](https://towardsdatascience.com/another-twitter-sentiment-analysis-bb5b01ebad90) - 主要语言:Python - 技术知识:Python ## Use Transfer Learning for custom image classification [https://becominghuman.ai/transfer-learning-retraining-inception-v3-for-custom-image-classification-2820f653c557](https://becominghuman.ai/transfer-learning-retraining-inception-v3-for-custom-image-classification-2820f653c557) - 主要语言:Python - 技术知识:Python ## Learn to Code a simple Neural Network in 11 lines of Python [https://iamtrask.github.io/2015/07/12/basic-python-network/](https://iamtrask.github.io/2015/07/12/basic-python-network/) - 主要语言:Python - 技术知识:Python ## Build a Neural Network using Gradient Descent Approach [https://iamtrask.github.io/2015/07/27/python-network-part2/](https://iamtrask.github.io/2015/07/27/python-network-part2/) - 主要语言:Python - 技术知识:Python ## Train a Keras Model To Generate Colors [https://heartbeat.fritz.ai/how-to-train-a-keras-model-to-generate-colors-3bc79e54971b](https://heartbeat.fritz.ai/how-to-train-a-keras-model-to-generate-colors-3bc79e54971b) - 主要语言:Python - 技术知识:Python ## 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/](https://www.pyimagesearch.com/2018/09/10/keras-tutorial-how-to-get-started-with-keras-deep-learning-and-python/) - 主要语言:Python - 技术知识:Python ## Use EigenFaces and FisherFaces on Faces94 dataset [https://nicholastsmith.wordpress.com/2016/02/18/eigenfaces-versus-fisherfaces-on-the-faces94-database-with-scikit-learn/](https://nicholastsmith.wordpress.com/2016/02/18/eigenfaces-versus-fisherfaces-on-the-faces94-database-with-scikit-learn/) - 主要语言:Python - 技术知识:Python ## Kaggle MNIST Digit Recognizer Tutorial [https://medium.com/@lvarruda/how-to-get-top-2-position-on-kaggles-mnist-digit-recognizer-48185d80a2d4](https://medium.com/@lvarruda/how-to-get-top-2-position-on-kaggles-mnist-digit-recognizer-48185d80a2d4) - 主要语言:Python - 技术知识:Python ## Fashion MNIST tutorial with tf.keras [https://medium.com/tensorflow/hello-deep-learning-fashion-mnist-with-keras-50fcff8cd74a](https://medium.com/tensorflow/hello-deep-learning-fashion-mnist-with-keras-50fcff8cd74a) - 主要语言:Python - 技术知识:Python ## CNN using Keras to automatically classify root health [https://www.pyimagesearch.com/2018/10/15/deep-learning-hydroponics-and-medical-marijuana/](https://www.pyimagesearch.com/2018/10/15/deep-learning-hydroponics-and-medical-marijuana/) - 主要语言:Python - 技术知识:Python ## Keras vs Tensorflow [https://www.pyimagesearch.com/2018/10/08/keras-vs-tensorflow-which-one-is-better-and-which-one-should-i-learn/](https://www.pyimagesearch.com/2018/10/08/keras-vs-tensorflow-which-one-is-better-and-which-one-should-i-learn/) - 主要语言:Python - 技术知识:Python ## Deep Learning and Medical Image Analysis for Malaria Detection [https://www.pyimagesearch.com/2018/12/03/deep-learning-and-medical-image-analysis-with-keras/](https://www.pyimagesearch.com/2018/12/03/deep-learning-and-medical-image-analysis-with-keras/) - 主要语言:Python - 技术知识:Python ## Transfer Learning for Image Classification using Keras [https://towardsdatascience.com/transfer-learning-for-image-classification-using-keras-c47ccf09c8c8](https://towardsdatascience.com/transfer-learning-for-image-classification-using-keras-c47ccf09c8c8) - 主要语言:Python - 技术知识:Python ## Code a Smile Classifier using CNNS in Python [https://github.com/kylemcdonald/SmileCNN](https://github.com/kylemcdonald/SmileCNN) - 主要语言:Python - 技术知识:Python ## Natural Language Processing using scikit-learn [https://towardsdatascience.com/natural-language-processing-count-vectorization-with-scikit-learn-e7804269bb5e](https://towardsdatascience.com/natural-language-processing-count-vectorization-with-scikit-learn-e7804269bb5e) - 主要语言:Python - 技术知识:Python ## Code a Taylor Swift Lyrics Generator [https://towardsdatascience.com/ai-generates-taylor-swifts-song-lyrics-6fd92a03ef7e](https://towardsdatascience.com/ai-generates-taylor-swifts-song-lyrics-6fd92a03ef7e) - 主要语言:Python - 技术知识:Python ## Build a Simple Interpreter [https://ruslanspivak.com/lsbasi-part1/](https://ruslanspivak.com/lsbasi-part1/) - 主要语言:Python - 技术知识:Python ## Build a Simple Blockchain in Python [https://hackernoon.com/learn-blockchains-by-building-one-117428612f46](https://hackernoon.com/learn-blockchains-by-building-one-117428612f46) - 主要语言:Python - 技术知识:Python ## Write a NoSQL Database in Python [https://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/](https://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/) - 主要语言:Python - 技术知识:Python ## Building a Gas Pump Scanner with OpenCV/Python/iOS [https://hackernoon.com/building-a-gas-pump-scanner-with-opencv-python-ios-116fe6c9ae8b](https://hackernoon.com/building-a-gas-pump-scanner-with-opencv-python-ios-116fe6c9ae8b) - 主要语言:Python - 技术知识:Python ## Build a Distributed Streaming System with Python and Kafka [https://codequs.com/p/S14jQ5UyG/build-a-distributed-streaming-system-with-apache-kafka-and-python](https://codequs.com/p/S14jQ5UyG/build-a-distributed-streaming-system-with-apache-kafka-and-python) - 主要语言:Python - 技术知识:Python ## Writing a basic x86-64 JIT compiler from scratch in stock Python [https://csl.name/post/python-jit/](https://csl.name/post/python-jit/) - 主要语言:Python - 技术知识:Python ## Making a low level Linux debugger [https://blog.asrpo.com/making_a_low_level_debugger](https://blog.asrpo.com/making_a_low_level_debugger) - 主要语言:Python - 技术知识:Python ## Implementing a Search Engine [http://www.ardendertat.com/2011/05/30/how-to-implement-a-search-engine-part-1-create-index/](http://www.ardendertat.com/2011/05/30/how-to-implement-a-search-engine-part-1-create-index/) - 主要语言:Python - 技术知识:Python ## Build the Game of Life [https://robertheaton.com/2018/07/20/project-2-game-of-life/](https://robertheaton.com/2018/07/20/project-2-game-of-life/) - 主要语言:Python - 技术知识:Python ## Create terminal ASCII art [https://robertheaton.com/2018/06/12/programming-projects-for-advanced-beginners-ascii-art/](https://robertheaton.com/2018/06/12/programming-projects-for-advanced-beginners-ascii-art/) - 主要语言:Python - 技术知识:Python ## Write a Tic-Tac-Toe AI [https://robertheaton.com/2018/10/09/programming-projects-for-advanced-beginners-3-a/](https://robertheaton.com/2018/10/09/programming-projects-for-advanced-beginners-3-a/) - 主要语言:Python - 技术知识:Python ## Create photomosaic art [https://robertheaton.com/2018/11/03/programming-project-4-photomosaics/](https://robertheaton.com/2018/11/03/programming-project-4-photomosaics/) - 主要语言:Python - 技术知识:Python ## Build the game Snake in the terminal [https://robertheaton.com/2018/12/02/programming-project-5-snake/](https://robertheaton.com/2018/12/02/programming-project-5-snake/) - 主要语言:Python - 技术知识:Python ## Write yourself a Git [https://wyag.thb.lt/](https://wyag.thb.lt/) - 主要语言:Python - 技术知识:Python ## A Python implementation of a Python bytecode runner [https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html](https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html) - 主要语言:Python - 技术知识:Python ## 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/](https://www.thepolyglotdeveloper.com/2016/12/create-real-time-chat-app-golang-angular-2-websockets/) - 主要语言:Golang - 技术知识:Golang ## Building Go Web Applications and Microservices Using Gin [https://semaphoreci.com/community/tutorials/building-go-web-applications-and-microservices-using-gin](https://semaphoreci.com/community/tutorials/building-go-web-applications-and-microservices-using-gin) - 主要语言:Golang - 技术知识:Golang ## 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](https://semaphoreci.com/community/tutorials/how-to-use-godog-for-behavior-driven-development-in-go) - 主要语言:Golang - 技术知识:Golang ## Building Blockchain in Go [https://jeiwan.net/posts/building-blockchain-in-go-part-1/](https://jeiwan.net/posts/building-blockchain-in-go-part-1/) - 主要语言:Golang - 技术知识:Golang ## Build Web Application with GoLang [https://legacy.gitbook.com/book/astaxie/build-web-application-with-golang/details](https://legacy.gitbook.com/book/astaxie/build-web-application-with-golang/details) - 主要语言:Golang - 技术知识:Golang ## Building a container from scratch in Go - Liz Rice Microscaling Systems [https://www.youtube.com/watch?v=8fi7uSYlOdc](https://www.youtube.com/watch?v=8fi7uSYlOdc) - 主要语言:Golang - 技术知识:Golang ## How To Build A Blog With Laravel [https://www.youtube.com/playlist?list=PLwAKR305CRO-Q90J---jXVzbOd4CDRbVx](https://www.youtube.com/playlist?list=PLwAKR305CRO-Q90J---jXVzbOd4CDRbVx) - 主要语言: PHP - 技术知识: PHP ## Make Your Own Blog in Pure PHP [http://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog](http://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog) - 主要语言:PHP - 技术知识:PHP ## Build A Real Estate Website Example with SilverStripe [https://www.silverstripe.org/learn/lessons/](https://www.silverstripe.org/learn/lessons/) - 主要语言:PHP - 技术知识:PHP ## Building Realtime Chat App with Laravel 5.4 and VueJS [https://www.youtube.com/playlist?list=PLXsbBbd36_uVjOFH_P25__XAyGsohXWlv](https://www.youtube.com/playlist?list=PLXsbBbd36_uVjOFH_P25__XAyGsohXWlv) - 主要语言: PHP - 技术知识: PHP ## Build A Social Network: Laravel 5 - Youtube [https://www.youtube.com/playlist?list=PLfdtiltiRHWGGxaR6uFtwZnnbcXqyq8JD](https://www.youtube.com/playlist?list=PLfdtiltiRHWGGxaR6uFtwZnnbcXqyq8JD) - 主要语言: PHP - 技术知识: PHP ## Build a full-featured multi-tenant app with Laravel [https://medium.com/@ashokgelal/writing-a-full-featured-multi-tenant-laravel-app-from-scratch-a0e1a7350d9d](https://medium.com/@ashokgelal/writing-a-full-featured-multi-tenant-laravel-app-from-scratch-a0e1a7350d9d) - 主要语言:PHP - 技术知识:PHP ## Implement a Language with LLVM in OCaml [https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm-in-objective-caml](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm-in-objective-caml) - 主要语言:OCaml - 技术知识:OCaml ## Build a Network Stack with Ruby [https://medium.com/geckoboard-under-the-hood/how-to-build-a-network-stack-in-ruby-f73aeb1b661b](https://medium.com/geckoboard-under-the-hood/how-to-build-a-network-stack-in-ruby-f73aeb1b661b) - 主要语言:Ruby - 技术知识:Ruby ## Build your own Redis [https://rohitpaulk.com/articles/redis-0](https://rohitpaulk.com/articles/redis-0) - 主要语言:Ruby - 技术知识:Ruby ## 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](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 ## Build a Social Network using Rails [https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233](https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233) - 主要语言:Ruby - 技术知识:Ruby, Ruby on Rails ## How To Build a Ruby on Rails Application [https://www.digitalocean.com/community/tutorials/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 ## Write You a Haskell - Build a modern functional compiler [http://dev.stephendiehl.com/fun/](http://dev.stephendiehl.com/fun/) - 主要语言:Haskell - 技术知识:Haskell ## Write Yourself a Scheme in 48 hours [https://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours](https://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours) - 主要语言:Haskell - 技术知识:Haskell ## Write You A Scheme, Version 2 [https://github.com/write-you-a-scheme-v2/scheme](https://github.com/write-you-a-scheme-v2/scheme) - 主要语言:Haskell - 技术知识:Haskell ## Roll Your Own IRC Bot [https://wiki.haskell.org/Roll_your_own_IRC_bot](https://wiki.haskell.org/Roll_your_own_IRC_bot) - 主要语言:Haskell - 技术知识:Haskell ## Let's Build A Basic Compiler in Haskell [https://g-ford.github.io/cradle/](https://g-ford.github.io/cradle/) - 主要语言:Haskell - 技术知识:Haskell ## Making Movie Monad [https://lettier.github.io/posts/2016-08-15-making-movie-monad.html](https://lettier.github.io/posts/2016-08-15-making-movie-monad.html) - 主要语言:Haskell - 技术知识:Haskell ## Build Web Apps with Shiny [http://shiny.rstudio.com/tutorial/](http://shiny.rstudio.com/tutorial/) - 主要语言:R - 技术知识:R ## Build A Cryptocurrency Bot [https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1](https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1) - 主要语言:R - 技术知识:R ## Learn Associate Rule Mining in R [https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50](https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50) - 主要语言:R - 技术知识:R ## A Simple Web App in Rust [http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-1/](http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-1/) - 主要语言:Rust - 技术知识:Rust ## Write an OS in pure Rust [https://os.phil-opp.com/](https://os.phil-opp.com/) - 主要语言:Rust - 技术知识:Rust ## Build a browser engine in Rust [https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html](https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html) - 主要语言:Rust - 技术知识:Rust ## Write a Microservice in Rust [http://www.goldsborough.me/rust/web/tutorial/2018/01/20/17-01-11-writing_a_microservice_in_rust/](http://www.goldsborough.me/rust/web/tutorial/2018/01/20/17-01-11-writing_a_microservice_in_rust/) - 主要语言:Rust - 技术知识:Rust ## Learning Rust with Too Many Linked Lists [http://cglab.ca/~abeinges/blah/too-many-lists/book/README.html](http://cglab.ca/~abeinges/blah/too-many-lists/book/README.html) - 主要语言:Rust - 技术知识:Rust ## Rust in Detail: Writing Scalable Chat Service from Scratch [https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html](https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html) - 主要语言:Rust - 技术知识:Rust ## 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/](https://aimlesslygoingforward.com/blog/2019/02/09/writing-a-rust-roguelike-for-the-desktop-and-the-web/) - 主要语言:Rust - 技术知识:Rust ## Simple actor-based blockchain [https://www.freecodecamp.org/news/how-to-build-a-simple-actor-based-blockchain-aac1e996c177/](https://www.freecodecamp.org/news/how-to-build-a-simple-actor-based-blockchain-aac1e996c177/) - 主要语言:Scala - 技术知识:Scala ## No Magic: Regular Expressions [https://rcoh.svbtle.com/no-magic-regular-expressions](https://rcoh.svbtle.com/no-magic-regular-expressions) - 主要语言:Scala - 技术知识:Scala ## Hacking with Swift - Learn Swift by doing 39 projects [https://www.hackingwithswift.com/read](https://www.hackingwithswift.com/read) - 主要语言:Swift - 技术知识:Swift ## 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/](https://www.freecodecamp.org/news/how-to-create-a-travel-bucket-list-map-with-gatsby-react-leaflet-graphcms/) - 主要语言:Javascript - 技术知识:Gatsby, Leaflet, GraphCMS, HTML, CSS ## Memory Card Game with Vue.js [https://www.freecodecamp.org/news/how-to-build-a-memory-card-game-with-vuejs/](https://www.freecodecamp.org/news/how-to-build-a-memory-card-game-with-vuejs/) - 主要语言:Javascript - 技术知识:Vue, Javascript, HTML, CSS ## Strapi and GatsbyJS Course - Portfolio Project [https://www.youtube.com/watch?v=Oc_ITwxiG-Y](https://www.youtube.com/watch?v=Oc_ITwxiG-Y) - 主要语言:Javascript - 技术知识:Gatsby, Strapi, Javascript, HTML, CSS ## Storybook - NodeJS, Express, MongoDB and Google OAuth [https://www.youtube.com/watch?v=SBvmnHTQIPY](https://www.youtube.com/watch?v=SBvmnHTQIPY) - 主要语言:Javascript - 技术知识:NodeJS, Javascript, MongoDB, HTML, CSS ## Breathe and Relax App - Javascript and CSS Animations [https://www.youtube.com/watch?v=l-1ZrU6avzI](https://www.youtube.com/watch?v=l-1ZrU6avzI) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Node.js CLI For Cryptocurrency Prices [https://www.youtube.com/watch?v=-6OAHsde15E](https://www.youtube.com/watch?v=-6OAHsde15E) - 主要语言:Javascript - 技术知识:NodeJS, Javascript ## React and Tailwind CSS Image Gallery [https://www.youtube.com/watch?v=FiGmAI5e91M](https://www.youtube.com/watch?v=FiGmAI5e91M) - 主要语言:Javascript - 技术知识:React, Tailwind, Javascript, HTML, CSS ## Pomodoro Clock using React [https://www.youtube.com/watch?v=VPrmzk-1Gps&list=PL3cz80ehFCalRswkbzwTJ-zdZxu3iBjkJ](https://www.youtube.com/watch?v=VPrmzk-1Gps&list=PL3cz80ehFCalRswkbzwTJ-zdZxu3iBjkJ) - 主要语言:Javascript - 技术知识:React, Javascript, HTML, CSS ## Keyword Density Tool with Laravel from Scratch [https://www.freecodecamp.org/news/how-to-build-a-keyword-density-tool-with-laravel/](https://www.freecodecamp.org/news/how-to-build-a-keyword-density-tool-with-laravel/) - 主要语言:PHP - 技术知识:PHP, Laravel, JQuery, AJAX, SEO ## YouTube Clone using Yii2 PHP Framework [https://www.youtube.com/watch?v=whuIf33v2Ug](https://www.youtube.com/watch?v=whuIf33v2Ug) - 主要语言:PHP - 技术知识:Yii2, PHP ## Reddit Clone with React, GraphQL and Amplify [https://www.freecodecamp.org/news/how-to-build-a-full-stack-serverless-application-with-react-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 ## Full-Stack Yelp Clone with React and GraphQL [https://www.freecodecamp.org/news/how-to-create-a-full-stack-yelp-clone-with-react-graphql/](https://www.freecodecamp.org/news/how-to-create-a-full-stack-yelp-clone-with-react-graphql/) - 主要语言:Javascript - 技术知识:React, GraphQL, HTML, CSS, Javascript ## 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/](https://www.freecodecamp.org/news/building-a-simple-pokemon-web-app-with-react-hooks-and-context-api/) - 主要语言:Javascript - 技术知识:React, HTML, CSS, Javascript ## Watershed Monitor using Javascript and Rails [https://dev.to/jessesbyers/watershed-monitor-javascript-and-rails-project-576c](https://dev.to/jessesbyers/watershed-monitor-javascript-and-rails-project-576c) - 主要语言:Ruby - 技术知识:Ruby, Ruby on Rails, Javascript ## Climate Data Dashboard using React and Redux [https://dev.to/jessesbyers/climate-data-dashboard-react-redux-project-1ilb](https://dev.to/jessesbyers/climate-data-dashboard-react-redux-project-1ilb) - 主要语言:Javascript - 技术知识:React, Redux, HTML, CSS, Javascript ## Flipping UNO Cards using only CSS [https://dev.to/comscience/flipping-uno-cards-using-only-css-4jb9](https://dev.to/comscience/flipping-uno-cards-using-only-css-4jb9) - 主要语言:HTML - 技术知识:HTML, CSS ## 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](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 ## Spotify Login Animation With React Navigation [https://dev.to/elaziziyoussouf/spotify-login-animation-with-react-navigation-v5-4od7](https://dev.to/elaziziyoussouf/spotify-login-animation-with-react-navigation-v5-4od7) - 主要语言:Javascript - 技术知识:React, HTML, CSS, Javascript ## Dynamic Weather Interface with just CSS [https://dev.to/comscience/dynamic-weather-app-using-just-css-cp2](https://dev.to/comscience/dynamic-weather-app-using-just-css-cp2) - 主要语言:HTML - 技术知识:HTML, CSS ## Simple CRUD App with Airtable and Vue [https://dev.to/codeply/build-a-simple-crud-app-with-airtable-api-vue-vuetify-5565](https://dev.to/codeply/build-a-simple-crud-app-with-airtable-api-vue-vuetify-5565) - 主要语言:Javascript - 技术知识:Vue, Vuetify, Airtable, API, HTML ## Full Stack RPG Character Generator with MEVN stack [https://www.freecodecamp.org/news/build-a-full-stack-mevn-app/](https://www.freecodecamp.org/news/build-a-full-stack-mevn-app/) - 主要语言:Javascript - 技术知识:NodeJS, MongoDB, Express, Vue, HTML ## Todo App with the PERN stack [https://www.freecodecamp.org/news/learn-the-pern-stack-full-course/](https://www.freecodecamp.org/news/learn-the-pern-stack-full-course/) - 主要语言:Javascript - 技术知识:Express, React, NodeJS, PostgreSQL, HTML ## 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/](https://www.freecodecamp.org/news/how-to-create-a-summer-road-trip-mapping-app-with-gatsby-and-leaflet/) - 主要语言:Javascript - 技术知识:React, Gatsby, Leaflet ## 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/](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 ## Flashcard Quiz With React [https://www.youtube.com/watch?v=hEtZ040fsD8](https://www.youtube.com/watch?v=hEtZ040fsD8) - 主要语言:Javascript - 技术知识:React, API, Javascript, HTML, CSS ## Whack-a-Mole with pure Javascript [https://www.youtube.com/watch?v=o93jem7oPnA](https://www.youtube.com/watch?v=o93jem7oPnA) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## NOKIA 3310 Snake Game using Javascript [https://www.youtube.com/watch?v=rui2tRRVtc0](https://www.youtube.com/watch?v=rui2tRRVtc0) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Rock Paper Scissors in vanilla Javascript [https://www.youtube.com/watch?v=mXrTIpYoCPE](https://www.youtube.com/watch?v=mXrTIpYoCPE) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Tetris with pure Javascript [https://www.youtube.com/watch?v=GWPGz9hrVMk](https://www.youtube.com/watch?v=GWPGz9hrVMk) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Meme Maker with React [https://medium.com/free-code-camp/react-for-beginners-building-a-meme-maker-with-react-7164d3d3e55f](https://medium.com/free-code-camp/react-for-beginners-building-a-meme-maker-with-react-7164d3d3e55f) - 主要语言:Javascript - 技术知识:React, Javascript, HTML, CSS ## Evernote Clone with React [https://www.youtube.com/watch?v=I250xdtUvy8](https://www.youtube.com/watch?v=I250xdtUvy8) - 主要语言:Javascript - 技术知识:React, Firebase, NodeJS, Javascript, HTML ## Developer Meetup App with Vue [https://www.youtube.com/watch?v=FXY1UyQfSFw&list=PL55RiY5tL51qxUbODJG9cgrsVd7ZHbPrt&index=2&t=32s](https://www.youtube.com/watch?v=FXY1UyQfSFw&list=PL55RiY5tL51qxUbODJG9cgrsVd7ZHbPrt&index=2&t=32s) - 主要语言:Javascript - 技术知识:Vue, Firebase, Vuetify, Javascript, HTML ## Real-Time Chat App with Vue [https://vuejsdevelopers.com/2017/10/16/vue-js-firestore/](https://vuejsdevelopers.com/2017/10/16/vue-js-firestore/) - 主要语言:Javascript - 技术知识:Vue, Firebase, Vuex, Javascript, HTML ## Cryptocurrency Tracker with Vue [https://medium.com/eliteng/build-a-cryptocurrency-tracker-with-vue-js-c0efd4c0139e](https://medium.com/eliteng/build-a-cryptocurrency-tracker-with-vue-js-c0efd4c0139e) - 主要语言:Javascript - 技术知识:Vue, Vuetify, API, Javascript, HTML ## Multiplayer Quiz Game with Vue [https://medium.com/front-end-weekly/build-a-multiplayer-quiz-game-with-vue-js-ca22bad8fb52](https://medium.com/front-end-weekly/build-a-multiplayer-quiz-game-with-vue-js-ca22bad8fb52) - 主要语言:Javascript - 技术知识:Vue, Pusher, NodeJS, Express, Javascript ## Minesweeper Game with Vue [https://medium.com/javascript-in-plain-english/minesweeper-rebuild-with-vue-vuex-and-vuetify-ab1921e5258e](https://medium.com/javascript-in-plain-english/minesweeper-rebuild-with-vue-vuex-and-vuetify-ab1921e5258e) - 主要语言:Javascript - 技术知识:Vue, Vuex, Vuetify, Javascript, HTML ## Instagram Clone with Vue [https://medium.com/fullstackio/tutorial-build-an-instagram-clone-with-vue-js-and-cssgram-24a9f3de0408](https://medium.com/fullstackio/tutorial-build-an-instagram-clone-with-vue-js-and-cssgram-24a9f3de0408) - 主要语言:Javascript - 技术知识:Vue, CSSGram, Javascript, HTML, CSS ## 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](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 ## Chat Interface [https://www.florin-pop.com/blog/2019/04/chat-interface/](https://www.florin-pop.com/blog/2019/04/chat-interface/) - 主要语言:HTML - 技术知识:HTML, CSS ## Pure CSS3 Tooltip [https://www.florin-pop.com/blog/2019/05/pure-css-tooltip/](https://www.florin-pop.com/blog/2019/05/pure-css-tooltip/) - 主要语言:HTML - 技术知识:HTML, CSS ## Social Media Buttons [https://www.florin-pop.com/blog/2019/07/social-media-buttons/](https://www.florin-pop.com/blog/2019/07/social-media-buttons/) - 主要语言:HTML - 技术知识:HTML, CSS ## Testimonial Card [https://www.florin-pop.com/blog/2019/07/testimonial-card/](https://www.florin-pop.com/blog/2019/07/testimonial-card/) - 主要语言:HTML - 技术知识:HTML, CSS ## Navigation Bar with CSS3 Flexbox [https://freshman.tech/flexbox-navbar/](https://freshman.tech/flexbox-navbar/) - 主要语言:HTML - 技术知识:HTML, CSS ## Mobile App Layout with CSS3 Flexbox [https://freshman.tech/flexbox-mobile-app/](https://freshman.tech/flexbox-mobile-app/) - 主要语言:HTML - 技术知识:HTML, CSS ## Reddit-inspired Loading Spinner [https://www.freecodecamp.org/news/how-to-build-a-reddit-inspired-loading-spinner-with-only-html-and-css-5b2fca3fdca/](https://www.freecodecamp.org/news/how-to-build-a-reddit-inspired-loading-spinner-with-only-html-and-css-5b2fca3fdca/) - 主要语言:HTML - 技术知识:HTML, CSS ## Calendar with CSS3 Grid [https://www.freecodecamp.org/news/how-to-build-a-calendar-with-css-grid/](https://www.freecodecamp.org/news/how-to-build-a-calendar-with-css-grid/) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Tetris Game in React [https://www.youtube.com/watch?v=ZGOaCxX8HIU](https://www.youtube.com/watch?v=ZGOaCxX8HIU) - 主要语言:Javascript - 技术知识:React, Javascript, HTML, CSS ## 2D Breakout Game [https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_Breakout_game_pure_Javascript](https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_Breakout_game_pure_Javascript) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Sprite Animation [https://medium.com/dailyjs/how-to-build-a-simple-sprite-animation-in-javascript-b764644244aa](https://medium.com/dailyjs/how-to-build-a-simple-sprite-animation-in-javascript-b764644244aa) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Snake Game [https://www.freecodecamp.org/news/think-like-a-programmer-how-to-build-snake-using-only-javascript-html-and-css-7b1479c3339e/](https://www.freecodecamp.org/news/think-like-a-programmer-how-to-build-snake-using-only-javascript-html-and-css-7b1479c3339e/) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Memory Game [https://medium.com/free-code-camp/vanilla-javascript-tutorial-build-a-memory-game-in-30-minutes-e542c4447eae](https://medium.com/free-code-camp/vanilla-javascript-tutorial-build-a-memory-game-in-30-minutes-e542c4447eae) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Simple Authentication and Authorization [https://medium.com/javascript-in-plain-english/simple-authentication-and-authorization-in-graphql-5293c0458fc](https://medium.com/javascript-in-plain-english/simple-authentication-and-authorization-in-graphql-5293c0458fc) - 主要语言:Javascript - 技术知识:NodeJS, GraphQL, Apollo, Javascript, HTML ## Cryptocurrency Tracker [https://medium.com/javascript-in-plain-english/build-a-cryptocurrency-tracker-with-next-js-and-apollo-graphql-c776cff6b8bf](https://medium.com/javascript-in-plain-english/build-a-cryptocurrency-tracker-with-next-js-and-apollo-graphql-c776cff6b8bf) - 主要语言:Javascript - 技术知识:NextJS, GraphQL, Apollo, NodeJS, Javascript ## Instant Search With Vanilla Javascript [https://www.florin-pop.com/blog/2019/06/vanilla-javascript-instant-search/](https://www.florin-pop.com/blog/2019/06/vanilla-javascript-instant-search/) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Calculator App [https://zellwk.com/blog/calculator-part-1](https://zellwk.com/blog/calculator-part-1) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Simple Budgeting App [https://matthiashager.com/complete-vuejs-application-tutorial](https://matthiashager.com/complete-vuejs-application-tutorial) - 主要语言:Javascript - 技术知识:Vue, Bulma, Javascript, CSS, HTML ## Search Bot [https://www.freecodecamp.org/news/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1/](https://www.freecodecamp.org/news/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1/) - 主要语言:Javascript - 技术知识:NodeJS, Twilio, Cheerio, API, Automation ## Todo App [http://www.discoversdk.com/blog/intro-to-angular-and-the-evolution-of-the-web](http://www.discoversdk.com/blog/intro-to-angular-and-the-evolution-of-the-web) - 主要语言:Javascript - 技术知识:Angular, TypeScript, RxJS, HTML, CSS ## Game of Life [https://www.freecodecamp.org/news/create-gameoflife-with-react-in-one-hour-8e686a410174](https://www.freecodecamp.org/news/create-gameoflife-with-react-in-one-hour-8e686a410174) - 主要语言:Javascript - 技术知识:React, 2D, Javascript, HTML, CSS ## News App [https://www.freecodecamp.org/news/create-a-news-app-using-react-native-ced249263627](https://www.freecodecamp.org/news/create-a-news-app-using-react-native-ced249263627) - 主要语言:Javascript - 技术知识:React Native, NodeJS, API, React, Javascript ## Chat App [https://www.freecodecamp.org/news/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a/](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 ## Todo App [https://hasura.io/blog/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a](https://hasura.io/blog/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a) - 主要语言:Javascript - 技术知识:React Native, GraphQL, Apollo, API, Hasura ## Chrome Extension [https://www.freecodecamp.org/news/building-chrome-extensions-in-react-parcel-79d0240dd58f/](https://www.freecodecamp.org/news/building-chrome-extensions-in-react-parcel-79d0240dd58f/) - 主要语言:Javascript - 技术知识:React, Parcel, Javascript, HTML, CSS ## Trello Clone [http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1](http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1) - 主要语言:Javascript - 技术知识:React, Elixir, Phoenix, JWT, Javascript ## Spotify Inspired Web Design [https://www.youtube.com/watch?v=uKgn-To1C4Q](https://www.youtube.com/watch?v=uKgn-To1C4Q) - 主要语言:HTML - 技术知识:HTML, CSS ## Simple Gantt Chart [https://webdesign.tutsplus.com/tutorials/build-a-simple-gantt-chart-with-css-and-javascript--cms-33813](https://webdesign.tutsplus.com/tutorials/build-a-simple-gantt-chart-with-css-and-javascript--cms-33813) - 主要语言:HTML - 技术知识:HTML, CSS, Javascript ## Job Scraping App [https://www.freecodecamp.org/news/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc/](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 ## E-Commerce App [https://www.youtube.com/watch?v=wPQ1-33teR4](https://www.youtube.com/watch?v=wPQ1-33teR4) - 主要语言:Javascript - 技术知识:React, Bootstrap, Javascript, HTML, CSS ## Netflix Landing Page [https://www.youtube.com/watch?v=P7t13SGytRk](https://www.youtube.com/watch?v=P7t13SGytRk) - 主要语言:HTML - 技术知识:HTML, CSS, Javascript ## AI Chatbot [https://www.smashingmagazine.com/2017/08/ai-chatbot-web-speech-api-node-js](https://www.smashingmagazine.com/2017/08/ai-chatbot-web-speech-api-node-js) - 主要语言:Javascript - 技术知识:Javascript, Web Speech API, NodeJS, Express, Socket.io ## Social Networking App [https://www.youtube.com/watch?v=m_u6P5k0vP0](https://www.youtube.com/watch?v=m_u6P5k0vP0) - 主要语言:Javascript - 技术知识:React, NodeJS, Redux, Firebase, REST ## Blockchain [https://www.hackdoor.io/articles/BwJeDQnm/writing-a-blockchain-in-node-js](https://www.hackdoor.io/articles/BwJeDQnm/writing-a-blockchain-in-node-js) - 主要语言:Javascript - 技术知识:NodeJS, Javascript, Cryptography, Blockchain ## BitTorrent Client [https://allenkim67.github.io/programming/2016/05/04/how-to-make-your-own-bittorrent-client.html](https://allenkim67.github.io/programming/2016/05/04/how-to-make-your-own-bittorrent-client.html) - 主要语言:Javascript - 技术知识:NodeJS, Javascript, TCP, Computer Networks ## URL Shortener with Javascript [https://www.freecodecamp.org/news/building-a-simple-url-shortener-with-just-html-and-javascript-6ea1ecda308c/](https://www.freecodecamp.org/news/building-a-simple-url-shortener-with-just-html-and-javascript-6ea1ecda308c/) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Todo List App with Javascript [https://freshman.tech/todo-list](https://freshman.tech/todo-list) - 主要语言:Javascript - 技术知识:Javascript, HTML, CSS ## Javascript Animations with Anime.js [https://medium.com/@ajmeyghani/creating-javascript-animations-with-anime-js-f2b14716cdc6](https://medium.com/@ajmeyghani/creating-javascript-animations-with-anime-js-f2b14716cdc6) - 主要语言:Javascript - 技术知识:Javascript, CSS, Library, HTML, API ## Job Board App with React [https://www.youtube.com/watch?v=lauywdXKEXI](https://www.youtube.com/watch?v=lauywdXKEXI) - 主要语言:Javascript - 技术知识:React, NodeJS, Cron, Javascript, HTML ## Flappy Bird iOS Game using Swift [https://www.raywenderlich.com/3875-how-to-make-a-game-like-flappy-bird](https://www.raywenderlich.com/3875-how-to-make-a-game-like-flappy-bird) - 主要语言:Swift - 技术知识:Swift, XCode, iOS ## Bull's Eye iOS Game using Swift [https://www.raywenderlich.com/4919757-your-first-ios-and-swiftui-app](https://www.raywenderlich.com/4919757-your-first-ios-and-swiftui-app) - 主要语言:Swift - 技术知识:Swift, XCode, iOS ## Task List iOS App using SwiftUI [https://www.raywenderlich.com/5662524-your-second-ios-and-swiftui-app](https://www.raywenderlich.com/5662524-your-second-ios-and-swiftui-app) - 主要语言:Swift - 技术知识:Swift, XCode, iOS ## Restaurant iOS App using SwiftUI [https://www.hackingwithswift.com/quick-start/swiftui/swiftui-tutorial-building-a-complete-project](https://www.hackingwithswift.com/quick-start/swiftui/swiftui-tutorial-building-a-complete-project) - 主要语言:Swift - 技术知识:Swift, XCode, iOS ## Dice iOS App with Swift [https://www.ralfebert.de/ios/beginner-tutorials/iphone-app-xcode/](https://www.ralfebert.de/ios/beginner-tutorials/iphone-app-xcode/) - 主要语言:Swift - 技术知识:Swift, XCode, iOS ## TrueCaller Clone [https://www.youtube.com/watch?v=mlEdGe4vui4](https://www.youtube.com/watch?v=mlEdGe4vui4) - 主要语言:Java - 技术知识:Java, MySQL, XAMPP, Android ## Weather App [https://www.youtube.com/watch?v=wAV2Uqv9KLo](https://www.youtube.com/watch?v=wAV2Uqv9KLo) - 主要语言:Java - 技术知识:Java, API, Android ## E-Commerce App [https://www.youtube.com/watch?v=6keVIot98QU&list=PLxefhmF0pcPlqmH_VfWneUjfuqhreUz-O&index=1](https://www.youtube.com/watch?v=6keVIot98QU&list=PLxefhmF0pcPlqmH_VfWneUjfuqhreUz-O&index=1) - 主要语言:Java - 技术知识:Java, Firebase, Android ## Chat App [https://www.youtube.com/watch?v=fJWFeW09qeE&list=PLzLFqCABnRQftQQETzoVMuteXzNiXmnj8&index=1](https://www.youtube.com/watch?v=fJWFeW09qeE&list=PLzLFqCABnRQftQQETzoVMuteXzNiXmnj8&index=1) - 主要语言:Java - 技术知识:Java, Firebase, Android ## Todo App [https://medium.com/the-web-tub/making-a-todo-app-with-flutter-5c63dab88190](https://medium.com/the-web-tub/making-a-todo-app-with-flutter-5c63dab88190) - 主要语言:Dart - 技术知识:Dart, Flutter, Android, iOS ## Travel App UI [https://www.youtube.com/watch?v=CSa6Ocyog4U](https://www.youtube.com/watch?v=CSa6Ocyog4U) - 主要语言:Dart - 技术知识:Dart, Flutter, Android, iOS ## Reddit Client [https://android.jlelse.eu/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664](https://android.jlelse.eu/learn-kotlin-while-developing-an-android-app-introduction-567e21ff9664) - 主要语言:Kotlin - 技术知识:Kotlin, Android ## Todo App [https://egghead.io/courses/build-a-react-native-todo-application](https://egghead.io/courses/build-a-react-native-todo-application) - 主要语言:Javascript - 技术知识:React Native, Android, iOS, Javascript ## Photo Library Viewer [https://www.raywenderlich.com/1044-building-ios-apps-with-xamarin-and-visual-studio](https://www.raywenderlich.com/1044-building-ios-apps-with-xamarin-and-visual-studio) - 主要语言:C# - 技术知识:C#, iOS, Xamarin, Visual Studio, Android ## 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](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 ## Simple 3D Game using Godot 3.1 [https://www.youtube.com/watch?v=VeCrE-ge8xM&list=PLda3VoSoc_TSBBOBYwcmlamF1UrjVtccZ](https://www.youtube.com/watch?v=VeCrE-ge8xM&list=PLda3VoSoc_TSBBOBYwcmlamF1UrjVtccZ) - 主要语言:C# - 技术知识:Godot, C#, 3D ## Simple Puzzle Game in Godot - Box and Switch [https://www.youtube.com/watch?v=l2wF2gj_hlA](https://www.youtube.com/watch?v=l2wF2gj_hlA) - 主要语言:C# - 技术知识:Godot, C#, 2D ## Game Interface From Scratch in Godot 3 [https://www.youtube.com/watch?v=y1E_y9AIqow](https://www.youtube.com/watch?v=y1E_y9AIqow) - 主要语言:C# - 技术知识:Godot, C#, 2D ## 2D Game with Godot: Player and Enemy [https://www.youtube.com/watch?v=Mc13Z2gboEk](https://www.youtube.com/watch?v=Mc13Z2gboEk) - 主要语言:C# - 技术知识:Godot, C#, 2D ## 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/](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 ## 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/](https://www.freecodecamp.org/news/how-to-build-a-multiplayer-card-game-with-unity-2d-and-mirror/) - 主要语言:C# - 技术知识:C#, Unity, 2D, Mirror ## Roguelike Tutorial in Rust [https://tomassedovic.github.io/roguelike-tutorial/](https://tomassedovic.github.io/roguelike-tutorial/) - 主要语言:Rust - 技术知识:Rust, 2D ## Adventures in Rust - A Basic 2D Game [https://a5huynh.github.io/posts/2018/adventures-in-rust/](https://a5huynh.github.io/posts/2018/adventures-in-rust/) - 主要语言:Rust - 技术知识:Rust, 2D ## Terminal Snake Game with Ruby [https://diatomenterprises.com/gamedev-on-ruby-why-not/](https://diatomenterprises.com/gamedev-on-ruby-why-not/) - 主要语言:Ruby - 技术知识:Ruby, 2D ## Sudoku Solver in C [https://www.youtube.com/watch?v=9aMUyoYDI-0&list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW](https://www.youtube.com/watch?v=9aMUyoYDI-0&list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW) - 主要语言:C/C++ - 技术知识:C/C++, 2D ## Chess Engine In C [https://www.youtube.com/watch?v=bGAfaepBco4&list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg&index=1&t=0s](https://www.youtube.com/watch?v=bGAfaepBco4&list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg&index=1&t=0s) - 主要语言:C/C++ - 技术知识:C/C++, 2D ## Tanks Shooter [https://learn.unity.com/project/tanks-tutorial](https://learn.unity.com/project/tanks-tutorial) - 主要语言:C# - 技术知识:C#, Unity, 3D ## 2D Roguelike [https://learn.unity.com/project/2d-roguelike-tutorial](https://learn.unity.com/project/2d-roguelike-tutorial) - 主要语言:C# - 技术知识:C#, Unity, 2D ## John Lemon's Haunted Jaunt 3D [https://learn.unity.com/project/john-lemon-s-haunted-jaunt-3d-beginner](https://learn.unity.com/project/john-lemon-s-haunted-jaunt-3d-beginner) - 主要语言:C# - 技术知识:C#, Unity, 3D ## VR Beginner: The Escape Room [https://learn.unity.com/project/vr-beginner-the-escape-room](https://learn.unity.com/project/vr-beginner-the-escape-room) - 主要语言:C# - 技术知识:C#, Unity, VR ## Ruby's Adventure [https://learn.unity.com/project/ruby-s-2d-rpg](https://learn.unity.com/project/ruby-s-2d-rpg) - 主要语言:C# - 技术知识:C#, Unity, 2D ## RPG Game [https://learn.unity.com/project/creator-kit-rpg](https://learn.unity.com/project/creator-kit-rpg) - 主要语言:C# - 技术知识:C#, Unity, 2D ## Roll-a-ball [https://learn.unity.com/project/roll-a-ball-tutorial](https://learn.unity.com/project/roll-a-ball-tutorial) - 主要语言:C# - 技术知识:C#, Unity, 3D ## FPS Microgame [https://learn.unity.com/project/fps-template?courseId=5c59cf22edbc2a001f59aa5d](https://learn.unity.com/project/fps-template?courseId=5c59cf22edbc2a001f59aa5d) - 主要语言:C# - 技术知识:C#, Unity ## Platformer Microgame [https://learn.unity.com/project/2d-platformer-template?courseId=5c59cf22edbc2a001f59aa5d](https://learn.unity.com/project/2d-platformer-template?courseId=5c59cf22edbc2a001f59aa5d) - 主要语言:C# - 技术知识:C#, Unity, 2D ## Karting Microgame [https://learn.unity.com/project/karting-template?courseId=5c59cf22edbc2a001f59aa5d](https://learn.unity.com/project/karting-template?courseId=5c59cf22edbc2a001f59aa5d) - 主要语言:C# - 技术知识:C#, Unity ## Handmade Hero [https://handmadehero.org/watch](https://handmadehero.org/watch) - 主要语言:C/C++ - 技术知识:C/C++, OpenGL, 2D ## Breakout [https://learnopengl.com/In-Practice/2D-Game/Breakout](https://learnopengl.com/In-Practice/2D-Game/Breakout) - 主要语言:C/C++ - 技术知识:C/C++, OpenGL, 2D ## Simple RPG Game [http://scottlilly.com/learn-c-by-building-a-simple-rpg-index](http://scottlilly.com/learn-c-by-building-a-simple-rpg-index) - 主要语言:C# - 技术知识:C#, SQL, 2D ## CNN that Detects Pneumonia from Chest X-Rays [https://towardsdatascience.com/pneumonia-detection-pushing-the-boundaries-of-human-ability-with-deep-learning-ce08dbd0dc20](https://towardsdatascience.com/pneumonia-detection-pushing-the-boundaries-of-human-ability-with-deep-learning-ce08dbd0dc20) - 主要语言:Python - 技术知识:CNN, Python ## 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/](https://www.freecodecamp.org/news/how-to-create-auto-updating-data-visualizations-in-python-with-matplotlib-and-aws/) - 主要语言:Python - 技术知识:Python, AWS, Matplotlib ## Twitter Sentiment Analysis Tool using GCP and Node [https://www.freecodecamp.org/news/how-to-build-a-twitter-sentiment-analysis-tool/](https://www.freecodecamp.org/news/how-to-build-a-twitter-sentiment-analysis-tool/) - 主要语言:Javascript - 技术知识:Javascript, NodeJS, API, GCP ## Predict Quality of Wine [https://www.freecodecamp.org/news/using-data-science-to-understand-what-makes-wine-taste-good-669b496c67ee/](https://www.freecodecamp.org/news/using-data-science-to-understand-what-makes-wine-taste-good-669b496c67ee/) - 主要语言:Python - 技术知识:Python, Matplotlib, Numpy, Pandas ## Genetic Algorithms [https://www.youtube.com/watch?v=dSofAXnnFrY](https://www.youtube.com/watch?v=dSofAXnnFrY) - 主要语言:Python - 技术知识:Python, SciKit, Numpy, Pandas ## DeepDream [https://www.youtube.com/watch?v=MrBzgvUNr4w](https://www.youtube.com/watch?v=MrBzgvUNr4w) - 主要语言:Python - 技术知识:Python, TensorFlow, Visualization ## Stock Price Prediction [https://www.youtube.com/watch?v=SSu00IRRraY](https://www.youtube.com/watch?v=SSu00IRRraY) - 主要语言:Python - 技术知识:Python, SciKit, Matplotlib ## Movie Recommendation Systems [https://www.youtube.com/watch?v=9gBC9R-msAk](https://www.youtube.com/watch?v=9gBC9R-msAk) - 主要语言:Python - 技术知识:Python, LightFM ## Twitter Sentiment Analysis [https://www.youtube.com/watch?v=o_OZdbCzHUA](https://www.youtube.com/watch?v=o_OZdbCzHUA) - 主要语言:Python - 技术知识:Python, API ## Create a Voice assistant using python [https://www.geeksforgeeks.org/voice-assistant-using-python/](https://www.geeksforgeeks.org/voice-assistant-using-python/) - 主要语言:Python - 技术知识:Python ## Vue 2 + Pub/Sub: Build a peer to peer multi-user platform for games [https://www.ably.io/tutorials/peer-to-peer-vue](https://www.ably.io/tutorials/peer-to-peer-vue) - 主要语言:Javascript - 技术知识:Vue ## 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](https://medium.com/egen/thinking-of-building-a-contact-tracing-application-heres-what-you-can-do-instead-4522e1d98739) - 主要语言:Python - 技术知识:Python, Django, Javascript ## Build a JPEG Image decoder using Python [https://yasoob.me/posts/understanding-and-writing-jpeg-decoder-in-python/](https://yasoob.me/posts/understanding-and-writing-jpeg-decoder-in-python/) - 主要语言:Python - 技术知识:Python ## Build a Jira clone application with Angular [https://trungk18.com/experience/angular-jira-clone-tutorial-01-planning-and-set-up](https://trungk18.com/experience/angular-jira-clone-tutorial-01-planning-and-set-up) - 主要语言:Javascript - 技术知识:Angular ## Building a Chat Application in Go with ReactJS [https://tutorialedge.net/projects/chat-system-in-go-and-react/part-1-initial-setup/](https://tutorialedge.net/projects/chat-system-in-go-and-react/part-1-initial-setup/) - 主要语言:Golang - 技术知识:Golang, React ## Write your own Zip from scratch in C [https://www.hanshq.net/zip.html](https://www.hanshq.net/zip.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Write Othello Game from scratch in C [https://www.hanshq.net/othello.html](https://www.hanshq.net/othello.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Write BigInt Calculator in C [https://www.hanshq.net/bigint.html](https://www.hanshq.net/bigint.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Getting Started with Rust by Building a Tiny Markdown Compiler [https://jesselawson.org/rust/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 ## Learn Rust by writing a simple game [https://opensource.com/article/20/12/learn-rust](https://opensource.com/article/20/12/learn-rust) - 主要语言:Rust - 技术知识:Rust ## 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](https://developers.caffeina.com/chiccocoin-learn-what-is-a-blockchain-by-creating-one-in-nodejs-12929a89208b?gi=625cde329489) - 主要语言:Javascript - 技术知识:NodeJS ## Learn React by building the HackerNews front page [https://github.com/mking/react-hn](https://github.com/mking/react-hn) - 主要语言:Javascript - 技术知识:React ## Implementing a Virtual Machine in C [https://felixangell.com/blogs/virtual-machine-in-c](https://felixangell.com/blogs/virtual-machine-in-c) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a Game Boy emulator [https://cturt.github.io/cinoop.html](https://cturt.github.io/cinoop.html) - 主要语言:C/C++ - 技术知识:C/C++ ## 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](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++ ## Write an MQTT broker from scratch [https://codepr.github.io/posts/sol-mqtt-broker](https://codepr.github.io/posts/sol-mqtt-broker) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's code a TCP/IP stack [http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/](http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/) - 主要语言:C/C++ - 技术知识:C/C++ ## Astroids Clone [https://gtk.dashgl.com/?folder=Astroids](https://gtk.dashgl.com/?folder=Astroids) - 主要语言:C/C++ - 技术知识:C/C++ ## Brickout Clone [https://gtk.dashgl.com/?folder=Brickout](https://gtk.dashgl.com/?folder=Brickout) - 主要语言:C/C++ - 技术知识:C/C++ ## Chess Engine In C [https://www.youtube.com/playlist?list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg](https://www.youtube.com/playlist?list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg) - 主要语言:C/C++ - 技术知识:C/C++ ## Coding A Sudoku Solver in C [https://www.youtube.com/playlist?list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW](https://www.youtube.com/playlist?list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW) - 主要语言:C/C++ - 技术知识:C/C++ ## Coding a Rogue/Nethack RPG in C [https://www.youtube.com/playlist?list=PLkTXsX7igf8erbWGYT4iSAhpnJLJ0Nk5G](https://www.youtube.com/playlist?list=PLkTXsX7igf8erbWGYT4iSAhpnJLJ0Nk5G) - 主要语言:C/C++ - 技术知识:C/C++ ## Create a Game Loop using C and SDL [https://www.udemy.com/course/game-loop-c-sdl/](https://www.udemy.com/course/game-loop-c-sdl/) - 主要语言:C/C++ - 技术知识:C/C++ ## Creating a 2D platformer [https://www.parallelrealities.co.uk/tutorials/#ppp](https://www.parallelrealities.co.uk/tutorials/#ppp) - 主要语言:C/C++ - 技术知识:C/C++ ## Creating a 2D shoot 'em up [https://www.parallelrealities.co.uk/tutorials/#shooter](https://www.parallelrealities.co.uk/tutorials/#shooter) - 主要语言:C/C++ - 技术知识:C/C++ ## Creating a 2D top-down shooter [https://www.parallelrealities.co.uk/tutorials/#bad](https://www.parallelrealities.co.uk/tutorials/#bad) - 主要语言:C/C++ - 技术知识:C/C++ ## Handmade Hero [https://handmadehero.org/](https://handmadehero.org/) - 主要语言:C/C++ - 技术知识:C/C++ ## Hangman [https://www.youtube.com/playlist?list=PLZ1QII7yudbd2ZHYSEWrSddsvD5PW_r5O](https://www.youtube.com/playlist?list=PLZ1QII7yudbd2ZHYSEWrSddsvD5PW_r5O) - 主要语言:C/C++ - 技术知识:C/C++ ## How to Program a Text Adventure in C [https://helderman.github.io/htpataic/htpataic01.html](https://helderman.github.io/htpataic/htpataic01.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Implementing Solitaire in C [https://jborza.github.io/games/2020/07/12/solitaire-cli.html](https://jborza.github.io/games/2020/07/12/solitaire-cli.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Invaders Clone [https://gtk.dashgl.com/?folder=Invaders](https://gtk.dashgl.com/?folder=Invaders) - 主要语言:C/C++ - 技术知识:C/C++ ## Learn How To Develop Your Own GameBoy Games [https://www.youtube.com/playlist?list=PLeEj4c2zF7PaFv5MPYhNAkBGrkx4iPGJo](https://www.youtube.com/playlist?list=PLeEj4c2zF7PaFv5MPYhNAkBGrkx4iPGJo) - 主要语言:C/C++ - 技术知识:C/C++ ## Learn Video Game Programming in C [https://www.youtube.com/playlist?list=PLT6WFYYZE6uLMcPGS3qfpYm7T_gViYMMt](https://www.youtube.com/playlist?list=PLT6WFYYZE6uLMcPGS3qfpYm7T_gViYMMt) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's Make: Dangerous Dave [https://www.youtube.com/playlist?list=PLSkJey49cOgTSj465v2KbLZ7LMn10bCF9](https://www.youtube.com/playlist?list=PLSkJey49cOgTSj465v2KbLZ7LMn10bCF9) - 主要语言:C/C++ - 技术知识:C/C++ ## Making a game in C from scratch [https://www.youtube.com/playlist?list=PL7Ej6SUky1357r-Lqf_nogZWHssXP-hvH](https://www.youtube.com/playlist?list=PL7Ej6SUky1357r-Lqf_nogZWHssXP-hvH) - 主要语言:C/C++ - 技术知识:C/C++ ## Making a Video Game from Scratch in C [https://www.youtube.com/playlist?list=PLlaINRtydtNWuRfd4Ra3KeD6L9FP_tDE7](https://www.youtube.com/playlist?list=PLlaINRtydtNWuRfd4Ra3KeD6L9FP_tDE7) - 主要语言:C/C++ - 技术知识:C/C++ ## On Tetris and Reimplementation [https://brennan.io/2015/06/12/tetris-reimplementation/](https://brennan.io/2015/06/12/tetris-reimplementation/) - 主要语言:C/C++ - 技术知识:C/C++ ## SDL 2 Isometric Game Tutorial [https://www.youtube.com/playlist?list=PL6Ikt4l3NbVjb7WR-eTgjOBMNCn7f3u7x](https://www.youtube.com/playlist?list=PL6Ikt4l3NbVjb7WR-eTgjOBMNCn7f3u7x) - 主要语言:C/C++ - 技术知识:C/C++ ## Simple Tic Tac Toe in C [https://www.youtube.com/playlist?list=PLZ1QII7yudbc7_ZgXA-gIXmME41Rs2GP5](https://www.youtube.com/playlist?list=PLZ1QII7yudbc7_ZgXA-gIXmME41Rs2GP5) - 主要语言:C/C++ - 技术知识:C/C++ ## Tic-tac-toe Game in C with SDL [https://www.youtube.com/watch?v=gCVMkKgs3uQ](https://www.youtube.com/watch?v=gCVMkKgs3uQ) - 主要语言:C/C++ - 技术知识:C/C++ ## Write The Old-School Fire Effect and Bare-Metal Programming in Assembly and C [https://www.hanshq.net/fire.html](https://www.hanshq.net/fire.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing 2D Games in C using SDL [https://www.youtube.com/watch?v=yFLa3ln16w0](https://www.youtube.com/watch?v=yFLa3ln16w0) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a Game Boy Advance Game [https://www.reinterpretcast.com/writing-a-game-boy-advance-game](https://www.reinterpretcast.com/writing-a-game-boy-advance-game) - 主要语言:C/C++ - 技术知识:C/C++ ## Build a minimal multi-tasking OS kernel for ARM from scratch [https://github.com/jserv/mini-arm-os](https://github.com/jserv/mini-arm-os) - 主要语言:C/C++ - 技术知识:C/C++ ## Build Your Own Shell [https://github.com/tokenrove/build-your-own-shell](https://github.com/tokenrove/build-your-own-shell) - 主要语言:C/C++ - 技术知识:C/C++ ## Building an Operating System for the Raspberry Pi [https://jsandler18.github.io/](https://jsandler18.github.io/) - 主要语言:C/C++ - 技术知识:C/C++ ## Hack the Virtual Memory [https://blog.holbertonschool.com/hack-virtual-memory-stack-registers-assembly-code/](https://blog.holbertonschool.com/hack-virtual-memory-stack-registers-assembly-code/) - 主要语言:C/C++ - 技术知识:C/C++ ## Learning operating system development using Linux kernel and Raspberry Pi [https://github.com/s-matyukevich/raspberry-pi-os](https://github.com/s-matyukevich/raspberry-pi-os) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's build a shell! [https://github.com/kamalmarhubi/shell-workshop](https://github.com/kamalmarhubi/shell-workshop) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's Write a Malloc [https://danluu.com/malloc-tutorial/](https://danluu.com/malloc-tutorial/) - 主要语言:C/C++ - 技术知识:C/C++ ## Roll your own toy UNIX-clone OS [http://www.jamesmolloy.co.uk/tutorial_html/](http://www.jamesmolloy.co.uk/tutorial_html/) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a Simple Memory Allocator [https://arjunsreedharan.org/post/148675821737/write-a-simple-memory-allocator](https://arjunsreedharan.org/post/148675821737/write-a-simple-memory-allocator) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a System Call [https://brennan.io/2016/11/14/kernel-dev-ep3/](https://brennan.io/2016/11/14/kernel-dev-ep3/) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a shell in C [https://danishprakash.github.io/2018/01/15/write-a-shell.html](https://danishprakash.github.io/2018/01/15/write-a-shell.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a Unix Shell [https://indradhanush.github.io/blog/writing-a-unix-shell-part-1](https://indradhanush.github.io/blog/writing-a-unix-shell-part-1) - 主要语言:C/C++ - 技术知识:C/C++ ## Baby's First Garbage Collector [http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/](http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/) - 主要语言:C/C++ - 技术知识:C/C++ ## Compiler Design in C [https://holub.com/goodies/compiler/compilerDesignInC.pdf](https://holub.com/goodies/compiler/compilerDesignInC.pdf) - 主要语言:C/C++ - 技术知识:C/C++ ## Let's Build a Compiler: A C & x86 version [https://github.com/lotabout/Let-s-build-a-compiler](https://github.com/lotabout/Let-s-build-a-compiler) - 主要语言:C/C++ - 技术知识:C/C++ ## Write a C Interpreter [https://github.com/lotabout/write-a-C-interpreter](https://github.com/lotabout/write-a-C-interpreter) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing a Simple Garbage Collector in C [http://maplant.com/gc.html](http://maplant.com/gc.html) - 主要语言:C/C++ - 技术知识:C/C++ ## A dummy blockchain implementation in C [https://myram.xyz/c-blockchain-implementation-1/](https://myram.xyz/c-blockchain-implementation-1/) - 主要语言:C/C++ - 技术知识:C/C++ ## Build Your Own Text Editor [https://viewsourcecode.org/snaptoken/kilo/](https://viewsourcecode.org/snaptoken/kilo/) - 主要语言:C/C++ - 技术知识:C/C++ ## How to Write a Video Player in Less Than 1000 Lines [http://dranger.com/ffmpeg/ffmpeg.html](http://dranger.com/ffmpeg/ffmpeg.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Writing an SVG Library [http://www.codedrome.com/svg-library-in-c/](http://www.codedrome.com/svg-library-in-c/) - 主要语言:C/C++ - 技术知识:C/C++ ## 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](https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work) - 主要语言:C/C++ - 技术知识:C/C++ ## Raycasting engine of Wolfenstein 3D [http://lodev.org/cgtutor/raycasting.html](http://lodev.org/cgtutor/raycasting.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Physically Based Rendering:From Theory To Implementation [http://www.pbr-book.org/](http://www.pbr-book.org/) - 主要语言:C/C++ - 技术知识:C/C++ ## Rasterization: a Practical Implementation [https://www.scratchapixel.com/lessons/3d-basic-rendering/rasterization-practical-implementation/overview-rasterization-algorithm](https://www.scratchapixel.com/lessons/3d-basic-rendering/rasterization-practical-implementation/overview-rasterization-algorithm) - 主要语言:C/C++ - 技术知识:C/C++ ## 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/](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 ## Build your own 3D renderer [https://avik-das.github.io/build-your-own-raytracer/](https://avik-das.github.io/build-your-own-raytracer/) - 主要语言:Java - 技术知识:Java ## 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](http://blog.rogach.org/2015/08/how-to-create-your-own-simple-3d-render.html) - 主要语言:Java - 技术知识:Java ## A 3D Modeller [http://aosabook.org/en/500L/a-3d-modeller.html](http://aosabook.org/en/500L/a-3d-modeller.html) - 主要语言:Python - 技术知识:Python ## Augmented Reality with Python and OpenCV [https://bitesofcode.wordpress.com/2017/09/12/augmented-reality-with-python-and-opencv-part-1/](https://bitesofcode.wordpress.com/2017/09/12/augmented-reality-with-python-and-opencv-part-1/) - 主要语言:Python - 技术知识:Python, OpenCV ## Building a BitTorrent client from scratch in C# [https://www.seanjoflynn.com/research/bittorrent.html](https://www.seanjoflynn.com/research/bittorrent.html) - 主要语言:C# - 技术知识:C# ## Programming The Blockchain in C# [https://programmingblockchain.gitbooks.io/programmingblockchain/](https://programmingblockchain.gitbooks.io/programmingblockchain/) - 主要语言:C# - 技术知识:C# ## Neural Network OCR [https://www.codeproject.com/Articles/11285/Neural-Network-OCR](https://www.codeproject.com/Articles/11285/Neural-Network-OCR) - 主要语言:C# - 技术知识:C# ## Building a BitTorrent client from the ground up in Go [https://blog.jse.li/posts/torrent/](https://blog.jse.li/posts/torrent/) - 主要语言:Golang - 技术知识:Golang ## Building Blockchain in Go [https://jeiwan.cc/posts/building-blockchain-in-go-part-1/](https://jeiwan.cc/posts/building-blockchain-in-go-part-1/) - 主要语言:Golang - 技术知识:Golang ## 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](https://medium.com/@mycoralhealth/code-your-own-blockchain-in-less-than-200-lines-of-go-e296282bcffc) - 主要语言:Golang - 技术知识:Golang ## Build Your Own Container Using Less than 100 Lines of Go [https://www.infoq.com/articles/build-a-container-golang](https://www.infoq.com/articles/build-a-container-golang) - 主要语言:Golang - 技术知识:Golang ## Build a multilayer perceptron with Golang [https://made2591.github.io/posts/neuralnetwork](https://made2591.github.io/posts/neuralnetwork) - 主要语言:Golang - 技术知识:Golang ## 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/](https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go/) - 主要语言:Golang - 技术知识:Golang ## Building a Neural Net from Scratch in Go [https://datadan.io/blog/neural-net-with-go](https://datadan.io/blog/neural-net-with-go) - 主要语言:Golang - 技术知识:Golang ## The Super Tiny Compiler [https://github.com/hazbo/the-super-tiny-compiler](https://github.com/hazbo/the-super-tiny-compiler) - 主要语言:Golang - 技术知识:Golang ## Lexical Scanning in Go [https://www.youtube.com/watch?v=HxaD_trXwRE](https://www.youtube.com/watch?v=HxaD_trXwRE) - 主要语言:Golang - 技术知识:Golang ## Writing a simple shell in Go [https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/](https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/) - 主要语言:Golang - 技术知识:Golang ## Let's Create a Simple Load Balancer [https://kasvith.github.io/posts/lets-create-a-simple-lb-go/](https://kasvith.github.io/posts/lets-create-a-simple-lb-go/) - 主要语言:Golang - 技术知识:Golang ## A BitTorrent client in Python 3.5 [http://markuseliasson.se/article/bittorrent-in-python/](http://markuseliasson.se/article/bittorrent-in-python/) - 主要语言:Python - 技术知识:Python ## Build your own blockchain: a Python tutorial [http://ecomunsing.com/build-your-own-blockchain](http://ecomunsing.com/build-your-own-blockchain) - 主要语言:Python - 技术知识:Python ## A Practical Introduction to Blockchain with Python [http://adilmoujahid.com/posts/2018/03/intro-blockchain-bitcoin-python/](http://adilmoujahid.com/posts/2018/03/intro-blockchain-bitcoin-python/) - 主要语言:Python - 技术知识:Python ## Let’s Build the Tiniest Blockchain [https://medium.com/crypto-currently/lets-build-the-tiniest-blockchain-e70965a248b](https://medium.com/crypto-currently/lets-build-the-tiniest-blockchain-e70965a248b) - 主要语言:Python - 技术知识:Python ## How to Build Your First Slack Bot with Python [https://www.fullstackpython.com/blog/build-first-slack-bot-python.html](https://www.fullstackpython.com/blog/build-first-slack-bot-python.html) - 主要语言:Python - 技术知识:Python ## 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](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 ## Creating Reddit Bot with Python & PRAW [https://www.youtube.com/playlist?list=PLIFBTFgFpoJ9vmYYlfxRFV6U_XhG-4fpP](https://www.youtube.com/playlist?list=PLIFBTFgFpoJ9vmYYlfxRFV6U_XhG-4fpP) - 主要语言:Python - 技术知识:Python ## Write your own miniature Redis with Python [http://charlesleifer.com/blog/building-a-simple-redis-server-with-python/](http://charlesleifer.com/blog/building-a-simple-redis-server-with-python/) - 主要语言:Python - 技术知识:Python ## A workshop on Linux containers: Rebuild Docker from Scratch [https://github.com/Fewbytes/rubber-docker](https://github.com/Fewbytes/rubber-docker) - 主要语言:Python - 技术知识:Python ## A proof-of-concept imitation of Docker, written in 100% Python [https://github.com/tonybaloney/mocker](https://github.com/tonybaloney/mocker) - 主要语言:Python - 技术知识:Python ## Just enough of a Git client to create a repo, commit, and push itself to GitHub [https://benhoyt.com/writings/pygit/](https://benhoyt.com/writings/pygit/) - 主要语言:Python - 技术知识:Python ## Optical Character Recognition OCR [http://aosabook.org/en/500L/optical-character-recognition-ocr.html](http://aosabook.org/en/500L/optical-character-recognition-ocr.html) - 主要语言:Python - 技术知识:Python ## Traffic signs classification with a convolutional network [https://navoshta.com/traffic-signs-classification/](https://navoshta.com/traffic-signs-classification/) - 主要语言:Python - 技术知识:Python ## Generate Music using LSTM Neural Network in Keras [https://towardsdatascience.com/how-to-generate-music-using-a-lstm-neural-network-in-keras-68786834d4c5](https://towardsdatascience.com/how-to-generate-music-using-a-lstm-neural-network-in-keras-68786834d4c5) - 主要语言:Python - 技术知识:Python ## A Python Interpreter Written in Python [http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html](http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html) - 主要语言:Python - 技术知识:Python ## Building a search engine using Redis and redis-py [http://www.dr-josiah.com/2010/07/building-search-engine-using-redis-and.html](http://www.dr-josiah.com/2010/07/building-search-engine-using-redis-and.html) - 主要语言:Python - 技术知识:Python ## Python Tutorial: Make Your Own Text Editor [https://www.youtube.com/watch?v=xqDonHEYPgA](https://www.youtube.com/watch?v=xqDonHEYPgA) - 主要语言:Python - 技术知识:Python ## 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](https://blog.devcenter.co/developing-a-license-plate-recognition-system-with-machine-learning-in-python-787833569ccd) - 主要语言:Python - 技术知识:Python ## Build a Deep Learning Library [https://www.youtube.com/watch?v=o64FV-ez6Gw](https://www.youtube.com/watch?v=o64FV-ez6Gw) - 主要语言:Python - 技术知识:Python ## Recommender Systems in Python: Beginner Tutorial [https://www.datacamp.com/community/tutorials/recommender-systems-python](https://www.datacamp.com/community/tutorials/recommender-systems-python) - 主要语言:Python - 技术知识:Python ## Write SMS-spam detector with Scikit-learn [https://medium.com/@kopilov.vlad/detect-sms-spam-in-kaggle-with-scikit-learn-5f6afa7a3ca2](https://medium.com/@kopilov.vlad/detect-sms-spam-in-kaggle-with-scikit-learn-5f6afa7a3ca2) - 主要语言:Python - 技术知识:Python ## A Simple Content-Based Recommendation Engine in Python [http://blog.untrod.com/2016/06/simple-similar-products-recommendation-engine-in-python.html](http://blog.untrod.com/2016/06/simple-similar-products-recommendation-engine-in-python.html) - 主要语言:Python - 技术知识:Python ## Stock Market Predictions with LSTM in Python [https://www.datacamp.com/community/tutorials/lstm-python-stock-market](https://www.datacamp.com/community/tutorials/lstm-python-stock-market) - 主要语言:Python - 技术知识:Python ## Creating Your First Blockchain with Java [https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa](https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa) - 主要语言:Java - 技术知识:Java ## 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](https://medium.com/@SeloSlav/how-to-make-a-scary-russian-twitter-bot-with-java-b7b62768a3ac) - 主要语言:Java - 技术知识:Java ## How to Build an Android Reddit App [https://www.youtube.com/playlist?list=PLgCYzUzKIBE9HUJU-upNvl3TRVAo9W47y](https://www.youtube.com/playlist?list=PLgCYzUzKIBE9HUJU-upNvl3TRVAo9W47y) - 主要语言:Java - 技术知识:Java ## A Compiler From Scratch [https://www.destroyallsoftware.com/screencasts/catalog/a-compiler-from-scratch](https://www.destroyallsoftware.com/screencasts/catalog/a-compiler-from-scratch) - 主要语言:Ruby - 技术知识:Ruby ## Markdown compiler from scratch in Ruby [https://blog.beezwax.net/2017/07/07/writing-a-markdown-compiler/](https://blog.beezwax.net/2017/07/07/writing-a-markdown-compiler/) - 主要语言:Ruby - 技术知识:Ruby ## How to write a template engine in less than 30 lines of code [http://bits.citrusbyte.com/how-to-write-a-template-library/](http://bits.citrusbyte.com/how-to-write-a-template-library/) - 主要语言:Ruby - 技术知识:Ruby ## A Pedometer in the Real World [http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html](http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html) - 主要语言:Ruby - 技术知识:Ruby ## A cryptocurrency implementation in less than 1500 lines of code [https://github.com/conradoqg/naivecoin](https://github.com/conradoqg/naivecoin) - 主要语言:Javascript - 技术知识:Javascript ## Build your own Blockchain in Javascript [https://github.com/nambrot/blockchain-in-js](https://github.com/nambrot/blockchain-in-js) - 主要语言:Javascript - 技术知识:Javascript ## Learn & Build a Javascript Blockchain [https://medium.com/digital-alchemy-holdings/learn-build-a-javascript-blockchain-part-1-ca61c285821e](https://medium.com/digital-alchemy-holdings/learn-build-a-javascript-blockchain-part-1-ca61c285821e) - 主要语言:Javascript - 技术知识:Javascript ## Creating a blockchain with Javascript [https://github.com/SavjeeTutorials/SavjeeCoin](https://github.com/SavjeeTutorials/SavjeeCoin) - 主要语言:Javascript - 技术知识:Javascript ## How To Launch Your Own Production-Ready Cryptocurrency [https://hackernoon.com/how-to-launch-your-own-production-ready-cryptocurrency-ab97cb773371](https://hackernoon.com/how-to-launch-your-own-production-ready-cryptocurrency-ab97cb773371) - 主要语言:Javascript - 技术知识:Javascript ## Writing a Blockchain in Node.js [https://www.hackdoor.io/articles/writing-a-blockchain-in-nodejs-6512fec33307](https://www.hackdoor.io/articles/writing-a-blockchain-in-nodejs-6512fec33307) - 主要语言:Javascript - 技术知识:Javascript ## A DIY guide to build your own React [https://github.com/hexacta/didact](https://github.com/hexacta/didact) - 主要语言:Javascript - 技术知识:Javascript ## Building React From Scratch [https://www.youtube.com/watch?v=_MAD4Oly9yg](https://www.youtube.com/watch?v=_MAD4Oly9yg) - 主要语言:Javascript - 技术知识:Javascript ## 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/](https://blog.javascripting.com/2016/10/05/building-your-own-react-clone-in-five-easy-steps/) - 主要语言:Javascript - 技术知识:Javascript ## Gooact: React in 160 lines of Javascript [https://medium.com/@sweetpalma/gooact-react-in-160-lines-of-javascript-44e0742ad60f](https://medium.com/@sweetpalma/gooact-react-in-160-lines-of-javascript-44e0742ad60f) - 主要语言:Javascript - 技术知识:Javascript ## Redux: Implementing Store from Scratch [https://egghead.io/lessons/react-redux-implementing-store-from-scratch](https://egghead.io/lessons/react-redux-implementing-store-from-scratch) - 主要语言:Javascript - 技术知识:Javascript ## Build Your own Simplified AngularJS in 200 Lines of Javascript [https://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/](https://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/) - 主要语言:Javascript - 技术知识:Javascript ## Make Your Own AngularJS [http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html](http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html) - 主要语言:Javascript - 技术知识:Javascript ## How to write your own Virtual DOM [https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060](https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060) - 主要语言:Javascript - 技术知识:Javascript ## Build your own 8-Ball Pool game from scratch [https://www.youtube.com/watch?v=aXwCrtAo4Wc](https://www.youtube.com/watch?v=aXwCrtAo4Wc) - 主要语言:Javascript - 技术知识:Javascript ## How to Make Your First Roguelike [https://gamedevelopment.tutsplus.com/tutorials/how-to-make-your-first-roguelike--gamedev-13677](https://gamedevelopment.tutsplus.com/tutorials/how-to-make-your-first-roguelike--gamedev-13677) - 主要语言:Javascript - 技术知识:Javascript ## 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/](https://franpapers.com/en/machine-learning-ai-en/2017-neural-network-implementation-in-javascript-by-an-example/) - 主要语言:Javascript - 技术知识:Javascript ## The Super Tiny Compiler [https://github.com/jamiebuilds/the-super-tiny-compiler](https://github.com/jamiebuilds/the-super-tiny-compiler) - 主要语言:Javascript - 技术知识:Javascript ## The Super Tiny Interpreter [https://github.com/keyanzhang/the-super-tiny-interpreter](https://github.com/keyanzhang/the-super-tiny-interpreter) - 主要语言:Javascript - 技术知识:Javascript ## Build a Regex Engine in Less than 40 Lines of Code [https://nickdrane.com/build-your-own-regex/](https://nickdrane.com/build-your-own-regex/) - 主要语言:Javascript - 技术知识:Javascript ## Javascript template engine in just 20 lines [http://krasimirtsonev.com/blog/article/Javascript-template-engine-in-just-20-line](http://krasimirtsonev.com/blog/article/Javascript-template-engine-in-just-20-line) - 主要语言:Javascript - 技术知识:Javascript ## How to build a simple actor-based blockchain [https://medium.freecodecamp.org/how-to-build-a-simple-actor-based-blockchain-aac1e996c177](https://medium.freecodecamp.org/how-to-build-a-simple-actor-based-blockchain-aac1e996c177) - 主要语言:Scala - 技术知识:Scala ## Naivecoin: a tutorial for building a cryptocurrency [https://lhartikk.github.io/](https://lhartikk.github.io/) - 主要语言:TypeScript - 技术知识:TypeScript ## NaivecoinStake: a tutorial for building a cryptocurrency with the Proof of Stake consensus [https://naivecoinstake.learn.uno/](https://naivecoinstake.learn.uno/) - 主要语言:TypeScript - 技术知识:TypeScript ## Reimplementing “git clone” in Haskell from the bottom up [http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/](http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/) - 主要语言:Haskell - 技术知识:Haskell ## 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](https://tutorials.botsfloor.com/creating-a-simple-facebook-messenger-ai-bot-with-api-ai-in-node-js-50ae2fa5c80d) - 主要语言:Javascript - 技术知识:NodeJS ## How to make a responsive telegram bot [https://www.sohamkamani.com/blog/2016/09/21/making-a-telegram-bot/](https://www.sohamkamani.com/blog/2016/09/21/making-a-telegram-bot/) - 主要语言:Javascript - 技术知识:NodeJS ## Create a Discord bot [https://discordjs.guide/](https://discordjs.guide/) - 主要语言:Javascript - 技术知识:NodeJS ## gifbot - Building a GitHub App [https://blog.scottlogic.com/2017/05/22/gifbot-github-integration.html](https://blog.scottlogic.com/2017/05/22/gifbot-github-integration.html) - 主要语言:Javascript - 技术知识:NodeJS ## 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](https://medium.freecodecamp.org/how-to-create-a-real-world-node-cli-app-with-node-391b727bbed3) - 主要语言:Javascript - 技术知识:NodeJS ## A bot for Starcraft in Rust, C or any other language [https://habr.com/en/post/436254/](https://habr.com/en/post/436254/) - 主要语言:Rust - 技术知识:Rust ## Building a DNS server in Rust [https://github.com/EmilHernvall/dnsguide/blob/master/README.md](https://github.com/EmilHernvall/dnsguide/blob/master/README.md) - 主要语言:Rust - 技术知识:Rust ## A Regular Expression Matcher [https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html](https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Regular Expression Matching Can Be Simple And Fast [https://swtch.com/~rsc/regexp/regexp1.html](https://swtch.com/~rsc/regexp/regexp1.html) - 主要语言:C/C++ - 技术知识:C/C++ ## How to write an emulator CHIP-8 interpreter [http://www.multigesture.net/articles/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++ ## Emulation tutorial CHIP-8 interpreter [http://www.codeslinger.co.uk/pages/projects/chip8.html](http://www.codeslinger.co.uk/pages/projects/chip8.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Emulation tutorial GameBoy emulator [http://www.codeslinger.co.uk/pages/projects/gameboy.html](http://www.codeslinger.co.uk/pages/projects/gameboy.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Emulation tutorial Master System emulator [http://www.codeslinger.co.uk/pages/projects/mastersystem/memory.html](http://www.codeslinger.co.uk/pages/projects/mastersystem/memory.html) - 主要语言:C/C++ - 技术知识:C/C++ ## NES Emulator From Scratch [https://www.youtube.com/playlist?list=PLrOv9FMX8xJHqMvSGB_9G9nZZ_4IgteYf](https://www.youtube.com/playlist?list=PLrOv9FMX8xJHqMvSGB_9G9nZZ_4IgteYf) - 主要语言:C/C++ - 技术知识:C/C++ ## Designing a Simple Text Editor [http://www.fltk.org/doc-1.1/editor.html](http://www.fltk.org/doc-1.1/editor.html) - 主要语言:C/C++ - 技术知识:C/C++ ## Build your own VR headset for $100 [https://github.com/relativty/Relativ](https://github.com/relativty/Relativ) - 主要语言:C/C++ - 技术知识:C/C++ ## 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](https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html) - 主要语言:C/C++ - 技术知识:C/C++ ## How a 64k intro is made [http://www.lofibucket.com/articles/64k_intro.html](http://www.lofibucket.com/articles/64k_intro.html) - 主要语言:C/C++ - 技术知识:C/C++ ## 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](https://medium.com/@ramezemadaiesec/from-zero-to-fully-functional-video-conference-app-using-go-and-webrtc-7d073c9287da) - 主要语言:Golang - 技术知识:Golang, Angular, WebRTC ## HOW TO CREATE A WEBRTC VIDEO CALL APP WITH NODE.JS [https://pusher.com/tutorials/webrtc-video-call-app-nodejs](https://pusher.com/tutorials/webrtc-video-call-app-nodejs) - 主要语言:Javascript - 技术知识:NodeJS, WebRTC ## How to create a video chat app with WebRTC [https://youtu.be/DvlyzDZDEq4](https://youtu.be/DvlyzDZDEq4) - 主要语言:Javascript - 技术知识:Javascript, WebRTC ## 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](https://www.twilio.com/blog/build-video-chat-application-python-javascript-twilio-programmable-video) - 主要语言:Python - 技术知识:Python, Javascript, Flask ## 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](https://medium.com/datadriveninvestor/how-to-build-a-deep-neural-network-from-scratch-with-julia-862116a194c) - 主要语言:Julia - 技术知识:Julia ## Programming ATtiny85 with Arduino Uno [https://create.arduino.cc/projecthub/arjun/programming-attiny85-with-arduino-uno-afb829](https://create.arduino.cc/projecthub/arjun/programming-attiny85-with-arduino-uno-afb829) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ruchir1674/how-to-interface-gps-module-neo-6m-with-arduino-8f90ad) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/AnuragVasanwala/home-automation-using-raspberry-pi-2-and-windows-10-iot-0dcefc) - 主要语言:Arduino - 技术知识:Arduino ## Portable Arduino Temp/Humidity Sensor with LCD [https://create.arduino.cc/projecthub/ThothLoki/portable-arduino-temp-humidity-sensor-with-lcd-a750f4](https://create.arduino.cc/projecthub/ThothLoki/portable-arduino-temp-humidity-sensor-with-lcd-a750f4) - 主要语言:Arduino - 技术知识:Arduino ## "Make an Autonomous ""Follow Me"" Cooler" [https://create.arduino.cc/projecthub/hackershack/make-an-autonomous-follow-me-cooler-7ca8bc](https://create.arduino.cc/projecthub/hackershack/make-an-autonomous-follow-me-cooler-7ca8bc) - 主要语言:Arduino - 技术知识:Arduino ## "How to ""Multithread"" an Arduino (Protothreading Tutorial)" [https://create.arduino.cc/projecthub/reanimationxp/how-to-multithread-an-arduino-protothreading-tutorial-dd2c37](https://create.arduino.cc/projecthub/reanimationxp/how-to-multithread-an-arduino-protothreading-tutorial-dd2c37) - 主要语言:Arduino - 技术知识:Arduino ## Windows Remote Arduino [https://create.arduino.cc/projecthub/windowsiot/basic-windows-remote-arduino-47eeb9](https://create.arduino.cc/projecthub/windowsiot/basic-windows-remote-arduino-47eeb9) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/cparrapa/otto-diy-build-your-own-robot-in-one-hour-5f2a1c) - 主要语言:Arduino - 技术知识:Arduino ## Detecting Obstacles and Warning - Arduino and Ultrasonic [https://create.arduino.cc/projecthub/ammaratef45/detecting-obstacles-and-warning-arduino-and-ultrasonic-13e5ea](https://create.arduino.cc/projecthub/ammaratef45/detecting-obstacles-and-warning-arduino-and-ultrasonic-13e5ea) - 主要语言:Arduino - 技术知识:Arduino ## Greenhouse [https://create.arduino.cc/projecthub/312663/greenhouse-1ec2ee](https://create.arduino.cc/projecthub/312663/greenhouse-1ec2ee) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/cyborg-titanium-14/home-automation-using-raspberry-pi-2-windows-10-iot-core-784235) - 主要语言:Arduino - 技术知识:Arduino ## Sketch It (CNC Plotter) [https://create.arduino.cc/projecthub/Yogeshmodi/sketch-it-cnc-plotter-95019d](https://create.arduino.cc/projecthub/Yogeshmodi/sketch-it-cnc-plotter-95019d) - 主要语言:Arduino - 技术知识:Arduino ## Motion Following Motorized Camera Base [https://create.arduino.cc/projecthub/lindsi8784/motion-following-motorized-camera-base-61afeb](https://create.arduino.cc/projecthub/lindsi8784/motion-following-motorized-camera-base-61afeb) - 主要语言:Arduino - 技术知识:Arduino ## Dark Theme for Arduino IDE [https://create.arduino.cc/projecthub/rahulkhanna/dark-theme-for-arduino-ide-17c001](https://create.arduino.cc/projecthub/rahulkhanna/dark-theme-for-arduino-ide-17c001) - 主要语言:Arduino - 技术知识:Arduino ## Measure Heart Rate and SpO2 with MAX30102 [https://create.arduino.cc/projecthub/SurtrTech/measure-heart-rate-and-spo2-with-max30102-c2b4d8](https://create.arduino.cc/projecthub/SurtrTech/measure-heart-rate-and-spo2-with-max30102-c2b4d8) - 主要语言:Arduino - 技术知识:Arduino ## DHT11 Temperature/Humidity Sensor [https://create.arduino.cc/projecthub/techno_z/dht11-temperature-humidity-sensor-98b03b](https://create.arduino.cc/projecthub/techno_z/dht11-temperature-humidity-sensor-98b03b) - 主要语言:Arduino - 技术知识:Arduino ## Simple Arduino Uno - ESP 8266 Integration [https://create.arduino.cc/projecthub/circuito-io-team/simple-arduino-uno-esp-8266-integration-dba10b](https://create.arduino.cc/projecthub/circuito-io-team/simple-arduino-uno-esp-8266-integration-dba10b) - 主要语言:Arduino - 技术知识:Arduino ## Third Eye for The Blind [https://create.arduino.cc/projecthub/muhammedazhar/third-eye-for-the-blind-8c246d](https://create.arduino.cc/projecthub/muhammedazhar/third-eye-for-the-blind-8c246d) - 主要语言:Arduino - 技术知识:Arduino ## Making LCD Thermometer With Arduino And LM35/36 [https://create.arduino.cc/projecthub/TheGadgetBoy/making-lcd-thermometer-with-arduino-and-lm35-36-c058f0](https://create.arduino.cc/projecthub/TheGadgetBoy/making-lcd-thermometer-with-arduino-and-lm35-36-c058f0) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Sonar [https://create.arduino.cc/projecthub/faweiz/arduino-radar-69b8fe](https://create.arduino.cc/projecthub/faweiz/arduino-radar-69b8fe) - 主要语言:Arduino - 技术知识:Arduino ## Getting started with IMU (6 DOF) motion sensor [https://create.arduino.cc/projecthub/Aritro/getting-started-with-imu-6-dof-motion-sensor-96e066](https://create.arduino.cc/projecthub/Aritro/getting-started-with-imu-6-dof-motion-sensor-96e066) - 主要语言:Arduino - 技术知识:Arduino ## WiFi IR Blaster [https://create.arduino.cc/projecthub/BuddyC/wifi-ir-blaster-af6bca](https://create.arduino.cc/projecthub/BuddyC/wifi-ir-blaster-af6bca) - 主要语言:Arduino - 技术知识:Arduino ## DHT11 /DHT22 Temperature Sensor [https://create.arduino.cc/projecthub/porrey/dht11-dht22-temperature-sensor-077790](https://create.arduino.cc/projecthub/porrey/dht11-dht22-temperature-sensor-077790) - 主要语言:Arduino - 技术知识:Arduino ## Water Quality Monitoring System [https://create.arduino.cc/projecthub/chanhj/water-quality-monitoring-system-ddcb43](https://create.arduino.cc/projecthub/chanhj/water-quality-monitoring-system-ddcb43) - 主要语言:Arduino - 技术知识:Arduino ## IoT Pet Feeder [https://create.arduino.cc/projecthub/circuito-io-team/iot-pet-feeder-10a4f3](https://create.arduino.cc/projecthub/circuito-io-team/iot-pet-feeder-10a4f3) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/DesiEngineer/how-to-make-a-big-3d-printer-at-home-using-arduino-4a7b79) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/jaiprak/control-led-from-web-app-using-esp8266-serial-wifi-module-cdf419) - 主要语言:Arduino - 技术知识:Arduino ## Electronic Piano Keyboard With Preset Songs [https://create.arduino.cc/projecthub/lindsi8784/electronic-piano-keyboard-with-preset-songs-74ee7c](https://create.arduino.cc/projecthub/lindsi8784/electronic-piano-keyboard-with-preset-songs-74ee7c) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/nolan-mathews/connect-to-blynk-using-esp8266-as-arduino-uno-wifi-shield-m1-46a453) - 主要语言:Arduino - 技术知识:Arduino ## Hand Gesture Controlled Robot [https://create.arduino.cc/projecthub/mayooghgirish/hand-gesture-controlled-robot-4d7587](https://create.arduino.cc/projecthub/mayooghgirish/hand-gesture-controlled-robot-4d7587) - 主要语言:Arduino - 技术知识:Arduino ## Home Smart Home [https://create.arduino.cc/projecthub/iddi/home-smart-home-ab15ed](https://create.arduino.cc/projecthub/iddi/home-smart-home-ab15ed) - 主要语言:Arduino - 技术知识:Arduino ## Mini Arduino CNC [https://create.arduino.cc/projecthub/me_zain/mini-arduino-cnc-7e4e30](https://create.arduino.cc/projecthub/me_zain/mini-arduino-cnc-7e4e30) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Fingerprint Sensor Tutorial [https://create.arduino.cc/projecthub/nickthegreek82/arduino-fingerprint-sensor-tutorial-103bb4](https://create.arduino.cc/projecthub/nickthegreek82/arduino-fingerprint-sensor-tutorial-103bb4) - 主要语言:Arduino - 技术知识:Arduino ## Magnet Levitation with Arduino [https://create.arduino.cc/projecthub/jsirgado/magnet-levitation-with-arduino-eeeee4](https://create.arduino.cc/projecthub/jsirgado/magnet-levitation-with-arduino-eeeee4) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Altair 8800 Simulator [https://create.arduino.cc/projecthub/david-hansel/arduino-altair-8800-simulator-3594a6](https://create.arduino.cc/projecthub/david-hansel/arduino-altair-8800-simulator-3594a6) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Wireless Weather Station [https://create.arduino.cc/projecthub/nickthegreek82/arduino-wireless-weather-station-dad470](https://create.arduino.cc/projecthub/nickthegreek82/arduino-wireless-weather-station-dad470) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/muhammedazhar/make-your-first-arduino-robot-the-best-beginners-guide-d21a4f) - 主要语言:Arduino - 技术知识:Arduino ## Plant Communicator [https://create.arduino.cc/projecthub/arduino/plant-communicator-7ea06f](https://create.arduino.cc/projecthub/arduino/plant-communicator-7ea06f) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Lie Detector [https://create.arduino.cc/projecthub/BuildItDR/arduino-lie-detector-a0b914](https://create.arduino.cc/projecthub/BuildItDR/arduino-lie-detector-a0b914) - 主要语言:Arduino - 技术知识:Arduino ## Arduino with IR Sensor [https://create.arduino.cc/projecthub/Raushancpr/arduino-with-ir-sensor-1579b6](https://create.arduino.cc/projecthub/Raushancpr/arduino-with-ir-sensor-1579b6) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ottoplus/otto-diy-arduino-bluetooth-robot-easy-to-3d-print-33406c) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Game By LCD [https://create.arduino.cc/projecthub/muhamd-magdy/arduino-game-by-lcd-9a3bc2](https://create.arduino.cc/projecthub/muhamd-magdy/arduino-game-by-lcd-9a3bc2) - 主要语言:Arduino - 技术知识:Arduino ## Smart Thermostat [https://create.arduino.cc/projecthub/Arduino_Genuino/smart-thermostat-e1f400](https://create.arduino.cc/projecthub/Arduino_Genuino/smart-thermostat-e1f400) - 主要语言:Arduino - 技术知识:Arduino ## Personal Weather Station (Arduino+ ESP8266 + Thingspeak) [https://create.arduino.cc/projecthub/Blue_jack/personal-weather-station-arduino-esp8266-thingspeak-8d5cba](https://create.arduino.cc/projecthub/Blue_jack/personal-weather-station-arduino-esp8266-thingspeak-8d5cba) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/adithya-tg/control-arduino-uno-using-esp8266-wifi-module-and-blynk-app-504494) - 主要语言:Arduino - 技术知识:Arduino ## Clock Set Date Time [https://create.arduino.cc/projecthub/tittiamo68/clock-set-date-time-0d46a4](https://create.arduino.cc/projecthub/tittiamo68/clock-set-date-time-0d46a4) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/electropeak/easy-motion-and-gesture-detection-by-pir-sensor-arduino-101fcc) - 主要语言:Arduino - 技术知识:Arduino ## Stringent, the $15 Wall Plotter [https://create.arduino.cc/projecthub/fredrikstridsman/stringent-the-15-wall-plotter-d965ca](https://create.arduino.cc/projecthub/fredrikstridsman/stringent-the-15-wall-plotter-d965ca) - 主要语言:Arduino - 技术知识:Arduino ## Arduino-Based Universal AC Motor Speed Controller [https://create.arduino.cc/projecthub/saulius-bandzevicius/arduino-based-universal-ac-motor-speed-controller-a4ceaf](https://create.arduino.cc/projecthub/saulius-bandzevicius/arduino-based-universal-ac-motor-speed-controller-a4ceaf) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Kitchen Timer [https://create.arduino.cc/projecthub/i-and-myself/arduino-kitchen-timer-db8ba6](https://create.arduino.cc/projecthub/i-and-myself/arduino-kitchen-timer-db8ba6) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/mitov/send-and-receive-text-messages-sms-with-gsm-sim900-shield-6d53c6) - 主要语言:Arduino - 技术知识:Arduino ## Arduino LIDAR [https://create.arduino.cc/projecthub/Abhinav_Abhi/arduino-lidar-917404](https://create.arduino.cc/projecthub/Abhinav_Abhi/arduino-lidar-917404) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/blitzkrieg/j-a-r-v-i-s-a-virtual-home-assistant-d61255) - 主要语言:Arduino - 技术知识:Arduino ## Arduino UNO Guitar Pedal [https://create.arduino.cc/projecthub/electrosmash/arduino-uno-guitar-pedal-b2ba96](https://create.arduino.cc/projecthub/electrosmash/arduino-uno-guitar-pedal-b2ba96) - 主要语言:Arduino - 技术知识:Arduino ## Ultrasonic Map-Maker using an Arduino Yun [https://create.arduino.cc/projecthub/Satyavrat/ultrasonic-map-maker-using-an-arduino-yun-37c72e](https://create.arduino.cc/projecthub/Satyavrat/ultrasonic-map-maker-using-an-arduino-yun-37c72e) - 主要语言:Arduino - 技术知识:Arduino ## Take Control Over Lego Power Functions [https://create.arduino.cc/projecthub/Notthemarsian/take-control-over-lego-power-functions-ee0bfa](https://create.arduino.cc/projecthub/Notthemarsian/take-control-over-lego-power-functions-ee0bfa) - 主要语言:Arduino - 技术知识:Arduino ## Old-School Two-Way Pager with Arduino [https://create.arduino.cc/projecthub/mschaus/old-school-two-way-pager-with-arduino-cb4785](https://create.arduino.cc/projecthub/mschaus/old-school-two-way-pager-with-arduino-cb4785) - 主要语言:Arduino - 技术知识:Arduino ## Simplest UNO Digital Clock Ever [https://create.arduino.cc/projecthub/plouc68000/simplest-uno-digital-clock-ever-4613aa](https://create.arduino.cc/projecthub/plouc68000/simplest-uno-digital-clock-ever-4613aa) - 主要语言:Arduino - 技术知识:Arduino ## nRF24L01+ with ATtiny85 3 Pins [https://create.arduino.cc/projecthub/arjun/nrf24l01-with-attiny85-3-pins-74a1f2](https://create.arduino.cc/projecthub/arjun/nrf24l01-with-attiny85-3-pins-74a1f2) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/electropeak/speak-to-arduino-and-control-it-with-google-assistant-3791ee) - 主要语言:Arduino - 技术知识:Arduino ## Mind Control Drone [https://create.arduino.cc/projecthub/WesleyCMD/mind-control-drone-c8b28a](https://create.arduino.cc/projecthub/WesleyCMD/mind-control-drone-c8b28a) - 主要语言:Arduino - 技术知识:Arduino ## Herb Box Eco System [https://create.arduino.cc/projecthub/walwode/herb-box-eco-system-7c51b3](https://create.arduino.cc/projecthub/walwode/herb-box-eco-system-7c51b3) - 主要语言:Arduino - 技术知识:Arduino ## Solar Panel Sun Tracker - Phone Charger [https://create.arduino.cc/projecthub/FIELDING/solar-panel-sun-tracker-phone-charger-f669ce](https://create.arduino.cc/projecthub/FIELDING/solar-panel-sun-tracker-phone-charger-f669ce) - 主要语言:Arduino - 技术知识:Arduino ## Pool Controller [https://create.arduino.cc/projecthub/mmackes/pool-controller-8dfa69](https://create.arduino.cc/projecthub/mmackes/pool-controller-8dfa69) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/giftedmedia/arduino-dth22-humidity-temperature-with-lcd-i2c-16x2-display-8fe3c9) - 主要语言:Arduino - 技术知识:Arduino ## Speech Recognition and Synthesis with Arduino [https://create.arduino.cc/projecthub/msb4180/speech-recognition-and-synthesis-with-arduino-2f0363](https://create.arduino.cc/projecthub/msb4180/speech-recognition-and-synthesis-with-arduino-2f0363) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/arnabdasbwn/crazy-engineer-s-drawing-robot-arduino-grbl-corexy-drawbot-fb5269) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/BuildItDR/don-t-buy-a-gsm-module-use-your-old-phone-4b0d4b) - 主要语言:Arduino - 技术知识:Arduino ## Android App-Based Home Automation System Using IOT [https://create.arduino.cc/projecthub/autoshack/android-app-based-home-automation-system-using-iot-4cad38](https://create.arduino.cc/projecthub/autoshack/android-app-based-home-automation-system-using-iot-4cad38) - 主要语言:Arduino - 技术知识:Arduino ## Ultrasonic Security System [https://create.arduino.cc/projecthub/Krepak/ultrasonic-security-system-3afe13](https://create.arduino.cc/projecthub/Krepak/ultrasonic-security-system-3afe13) - 主要语言:Arduino - 技术知识:Arduino ## Indoor Air Quality Monitoring System [https://create.arduino.cc/projecthub/east-west-university/indoor-air-quality-monitoring-system-5b5244](https://create.arduino.cc/projecthub/east-west-university/indoor-air-quality-monitoring-system-5b5244) - 主要语言:Arduino - 技术知识:Arduino ## Arduino UNO Mini-Weather Station [https://create.arduino.cc/projecthub/igorF2/arduino-uno-mini-weather-station-31b555](https://create.arduino.cc/projecthub/igorF2/arduino-uno-mini-weather-station-31b555) - 主要语言:Arduino - 技术知识:Arduino ## Vibration Sensor Module [https://create.arduino.cc/projecthub/albertoz/vibration-sensor-module-c88067](https://create.arduino.cc/projecthub/albertoz/vibration-sensor-module-c88067) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Indoor Garden [https://create.arduino.cc/projecthub/mega-das/arduino-indoor-garden-5d975c](https://create.arduino.cc/projecthub/mega-das/arduino-indoor-garden-5d975c) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Clock with Neopixel Ring Animation [https://create.arduino.cc/projecthub/sfrwmaker/arduino-clock-with-neopixel-ring-animation-ff3422](https://create.arduino.cc/projecthub/sfrwmaker/arduino-clock-with-neopixel-ring-animation-ff3422) - 主要语言:Arduino - 技术知识:Arduino ## FM Radio [https://create.arduino.cc/projecthub/Notthemarsian/fm-radio-97715f](https://create.arduino.cc/projecthub/Notthemarsian/fm-radio-97715f) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/diy-hacking/arduino-keyless-door-lock-system-with-keypad-and-lcd-bcad2e) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Dynamic Web Control [https://create.arduino.cc/projecthub/phpoc_man/arduino-dynamic-web-control-8da805](https://create.arduino.cc/projecthub/phpoc_man/arduino-dynamic-web-control-8da805) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/user421848217/how-to-make-mini-cnc-2d-plotter-using-scrap-dvd-drive-l293d-420016) - 主要语言:Arduino - 技术知识:Arduino ## Track ME [https://create.arduino.cc/projecthub/Tiobel/track-me-457576](https://create.arduino.cc/projecthub/Tiobel/track-me-457576) - 主要语言:Arduino - 技术知识:Arduino ## Servo Motor Using Arduino & PCA9685 16 Chanel Module [https://create.arduino.cc/projecthub/jithinsanal1610/servo-motor-using-arduino-pca9685-16-chanel-module-d9666e](https://create.arduino.cc/projecthub/jithinsanal1610/servo-motor-using-arduino-pca9685-16-chanel-module-d9666e) - 主要语言:Arduino - 技术知识:Arduino ## Open Source Pulse Oximeter for COVID-19 [https://create.arduino.cc/projecthub/gatoninja236/open-source-pulse-oximeter-for-covid-19-4764c5](https://create.arduino.cc/projecthub/gatoninja236/open-source-pulse-oximeter-for-covid-19-4764c5) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/luciorocha/ai-thinker-ai-cloud-inside-esp8266-update-firmware-reviewed-3e306c) - 主要语言:Arduino - 技术知识:Arduino ## Telegram Bot with ESP8266 [https://create.arduino.cc/projecthub/coderscafe/telegram-bot-with-esp8266-dbada8](https://create.arduino.cc/projecthub/coderscafe/telegram-bot-with-esp8266-dbada8) - 主要语言:Arduino - 技术知识:Arduino ## Arduino TEA5767 FM Radio Receiver [https://create.arduino.cc/projecthub/nickthegreek82/arduino-tea5767-fm-radio-receiver-543480](https://create.arduino.cc/projecthub/nickthegreek82/arduino-tea5767-fm-radio-receiver-543480) - 主要语言:Arduino - 技术知识:Arduino ## Arduino PC Monitor [https://create.arduino.cc/projecthub/zakrzu/arduino-pc-monitor-66c07a](https://create.arduino.cc/projecthub/zakrzu/arduino-pc-monitor-66c07a) - 主要语言:Arduino - 技术知识:Arduino ## Programming ATmega8 Using Arduino IDE [https://create.arduino.cc/projecthub/hami/programming-atmega8-using-arduino-ide-90c2ad](https://create.arduino.cc/projecthub/hami/programming-atmega8-using-arduino-ide-90c2ad) - 主要语言:Arduino - 技术知识:Arduino ## Lightweight Arduino GSM Mobile Phone [https://create.arduino.cc/projecthub/Avishek/lightweight-arduino-gsm-mobile-phone-b241d3](https://create.arduino.cc/projecthub/Avishek/lightweight-arduino-gsm-mobile-phone-b241d3) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/igorF2/wi-fi-controlled-fpv-rover-robot-with-arduino-and-esp8266-383a8c) - 主要语言:Arduino - 技术知识:Arduino ## Robotic Arm from Recycled Materials [https://create.arduino.cc/projecthub/circuito-io-team/robotic-arm-from-recycled-materials-7e318a](https://create.arduino.cc/projecthub/circuito-io-team/robotic-arm-from-recycled-materials-7e318a) - 主要语言:Arduino - 技术知识:Arduino ## Control your Light System Using Smart Phone [https://create.arduino.cc/projecthub/ahmedyassin/control-your-light-system-using-smart-phone-3463b9](https://create.arduino.cc/projecthub/ahmedyassin/control-your-light-system-using-smart-phone-3463b9) - 主要语言:Arduino - 技术知识:Arduino ## Love You Pillow [https://create.arduino.cc/projecthub/arduino/love-you-pillow-f08931](https://create.arduino.cc/projecthub/arduino/love-you-pillow-f08931) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Based Amazon Echo Using 1Sheeld [https://create.arduino.cc/projecthub/ahmedismail3115/arduino-based-amazon-echo-using-1sheeld-84fa6f](https://create.arduino.cc/projecthub/ahmedismail3115/arduino-based-amazon-echo-using-1sheeld-84fa6f) - 主要语言:Arduino - 技术知识:Arduino ## Automatic Plant Watering System with Arduino [https://create.arduino.cc/projecthub/robotgeek-projects-team/automatic-plant-watering-system-with-arduino-9d3d8e](https://create.arduino.cc/projecthub/robotgeek-projects-team/automatic-plant-watering-system-with-arduino-9d3d8e) - 主要语言:Arduino - 技术知识:Arduino ## Smart Garbage Monitoring System Using Arduino 101 [https://create.arduino.cc/projecthub/Technovation/smart-garbage-monitoring-system-using-arduino-101-3b813c](https://create.arduino.cc/projecthub/Technovation/smart-garbage-monitoring-system-using-arduino-101-3b813c) - 主要语言:Arduino - 技术知识:Arduino ## Food Detector [https://create.arduino.cc/projecthub/crispylel/food-detector-6178cc](https://create.arduino.cc/projecthub/crispylel/food-detector-6178cc) - 主要语言:Arduino - 技术知识:Arduino ## Voice Controlled Car [https://create.arduino.cc/projecthub/Yug_Ajmera/voice-controlled-car-983ef1](https://create.arduino.cc/projecthub/Yug_Ajmera/voice-controlled-car-983ef1) - 主要语言:Arduino - 技术知识:Arduino ## DIY Logic Analyzer [https://create.arduino.cc/projecthub/vincenzo-g/diy-logic-analyzer-f61ee5](https://create.arduino.cc/projecthub/vincenzo-g/diy-logic-analyzer-f61ee5) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Temperature Control [https://create.arduino.cc/projecthub/pandhoit/arduino-temperature-control-397dad](https://create.arduino.cc/projecthub/pandhoit/arduino-temperature-control-397dad) - 主要语言:Arduino - 技术知识:Arduino ## Visualising sensor data using Arduino and Processing [https://create.arduino.cc/projecthub/sowmith/visualising-sensor-data-using-arduino-and-processing-e707f0](https://create.arduino.cc/projecthub/sowmith/visualising-sensor-data-using-arduino-and-processing-e707f0) - 主要语言:Arduino - 技术知识:Arduino ## Blockly@rduino: Create Code with Blocks [https://create.arduino.cc/projecthub/libreduc/blockly-rduino-create-code-with-blocks-b6d3e4](https://create.arduino.cc/projecthub/libreduc/blockly-rduino-create-code-with-blocks-b6d3e4) - 主要语言:Arduino - 技术知识:Arduino ## 48 x 8 Scrolling LED Matrix using Arduino. [https://create.arduino.cc/projecthub/kksjunior/48-x-8-scrolling-led-matrix-using-arduino-9a53b8](https://create.arduino.cc/projecthub/kksjunior/48-x-8-scrolling-led-matrix-using-arduino-9a53b8) - 主要语言:Arduino - 技术知识:Arduino ## Gesture Recognition Using Accelerometer and ESP [https://create.arduino.cc/projecthub/mellis/gesture-recognition-using-accelerometer-and-esp-71faa1](https://create.arduino.cc/projecthub/mellis/gesture-recognition-using-accelerometer-and-esp-71faa1) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Spider Robot (Quadruped) [https://create.arduino.cc/projecthub/mega-das/arduino-spider-robot-quadruped-57b832](https://create.arduino.cc/projecthub/mega-das/arduino-spider-robot-quadruped-57b832) - 主要语言:Arduino - 技术知识:Arduino ## Arduino 4WD RC Car [https://create.arduino.cc/projecthub/andriy-baranov/arduino-4wd-rc-car-639953](https://create.arduino.cc/projecthub/andriy-baranov/arduino-4wd-rc-car-639953) - 主要语言:Arduino - 技术知识:Arduino ## OSEPP LCD and keypad shield [https://create.arduino.cc/projecthub/niftyjoeman/osepp-lcd-and-keypad-shield-d5b46e](https://create.arduino.cc/projecthub/niftyjoeman/osepp-lcd-and-keypad-shield-d5b46e) - 主要语言:Arduino - 技术知识:Arduino ## Alexa Based Smart Home Monitoring [https://create.arduino.cc/projecthub/adithya-tg/alexa-based-smart-home-monitoring-e36b7f](https://create.arduino.cc/projecthub/adithya-tg/alexa-based-smart-home-monitoring-e36b7f) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Controlled Pinball Machine [https://create.arduino.cc/projecthub/BobB/arduino-controlled-pinball-machine-525863](https://create.arduino.cc/projecthub/BobB/arduino-controlled-pinball-machine-525863) - 主要语言:Arduino - 技术知识:Arduino ## Soil Moisture Sensor With LCD Display [https://create.arduino.cc/projecthub/PatelDarshil/soil-moisture-sensor-with-lcd-display-71d6df](https://create.arduino.cc/projecthub/PatelDarshil/soil-moisture-sensor-with-lcd-display-71d6df) - 主要语言:Arduino - 技术知识:Arduino ## Maze Solver Robot, using Artificial Intelligence [https://create.arduino.cc/projecthub/mjrobot/maze-solver-robot-using-artificial-intelligence-4318cf](https://create.arduino.cc/projecthub/mjrobot/maze-solver-robot-using-artificial-intelligence-4318cf) - 主要语言:Arduino - 技术知识:Arduino ## BMP280: Measure Temperature, Pressure and Altitude [https://create.arduino.cc/projecthub/SurtrTech/bmp280-measure-temperature-pressure-and-altitude-e1c857](https://create.arduino.cc/projecthub/SurtrTech/bmp280-measure-temperature-pressure-and-altitude-e1c857) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/nenitoshouse/how-to-configure-neopixels-using-vixen-lights-and-arduino-527631) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ahmedel-hinidy2014/home-management-system-control-your-home-from-a-website-076846) - 主要语言:Arduino - 技术知识:Arduino ## Automated Staircase RGB LED Lights [https://create.arduino.cc/projecthub/notenoughtech-com/automated-staircase-rgb-led-lights-7d26d5](https://create.arduino.cc/projecthub/notenoughtech-com/automated-staircase-rgb-led-lights-7d26d5) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Ethernet Rfid card reader [https://create.arduino.cc/projecthub/smerkousdavid/arduino-ethernet-rfid-card-reader-1ffdee](https://create.arduino.cc/projecthub/smerkousdavid/arduino-ethernet-rfid-card-reader-1ffdee) - 主要语言:Arduino - 技术知识:Arduino ## Control your light system with your voice [https://create.arduino.cc/projecthub/maharaafat93/control-your-light-system-by-your-voice-bbabff](https://create.arduino.cc/projecthub/maharaafat93/control-your-light-system-by-your-voice-bbabff) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Sunflower [https://create.arduino.cc/projecthub/Rick_Findus/arduino-sunflower-c4fd84](https://create.arduino.cc/projecthub/Rick_Findus/arduino-sunflower-c4fd84) - 主要语言:Arduino - 技术知识:Arduino ## Smart Disinfection and Sanitation Tunnel [https://create.arduino.cc/projecthub/yugn27/smart-disinfection-and-sanitation-tunnel-aefe50](https://create.arduino.cc/projecthub/yugn27/smart-disinfection-and-sanitation-tunnel-aefe50) - 主要语言:Arduino - 技术知识:Arduino ## Health Band - A Smart Assistant for the Elderly [https://create.arduino.cc/projecthub/Technovation/health-band-a-smart-assistant-for-the-elderly-0fed12](https://create.arduino.cc/projecthub/Technovation/health-band-a-smart-assistant-for-the-elderly-0fed12) - 主要语言:Arduino - 技术知识:Arduino ## Soldering Iron Controller for Hakko 907 v.2 [https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-v-2-fc75d7](https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-v-2-fc75d7) - 主要语言:Arduino - 技术知识:Arduino ## Windows PC Lock/Unlock Using RFID [https://create.arduino.cc/projecthub/kksjunior/windows-pc-lock-unlock-using-rfid-5021a6](https://create.arduino.cc/projecthub/kksjunior/windows-pc-lock-unlock-using-rfid-5021a6) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/mjrobot/iot-made-easy-w-uno-esp-01-thingspeak-mit-app-inventor-da6a50) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Traffic Light Simulator [https://create.arduino.cc/projecthub/techno_z/arduino-traffic-light-simulator-2ec9f7](https://create.arduino.cc/projecthub/techno_z/arduino-traffic-light-simulator-2ec9f7) - 主要语言:Arduino - 技术知识:Arduino ## How to make Arduino based Automatic Door Opening [https://create.arduino.cc/projecthub/Vijendra/how-to-make-arduino-based-automatic-door-opening-3eb5cc](https://create.arduino.cc/projecthub/Vijendra/how-to-make-arduino-based-automatic-door-opening-3eb5cc) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth RC Car with Remote Arduino [https://create.arduino.cc/projecthub/windowsiot/bluetooth-rc-car-with-remote-arduino-5f09c9](https://create.arduino.cc/projecthub/windowsiot/bluetooth-rc-car-with-remote-arduino-5f09c9) - 主要语言:Arduino - 技术知识:Arduino ## DIY Flight Instruments for Horizon and Compass [https://create.arduino.cc/projecthub/Aritro/diy-flight-instruments-for-horizon-and-compass-43e2f6](https://create.arduino.cc/projecthub/Aritro/diy-flight-instruments-for-horizon-and-compass-43e2f6) - 主要语言:Arduino - 技术知识:Arduino ## Visualising 3D Motion of IMU sensor [https://create.arduino.cc/projecthub/Aritro/visualising-3d-motion-of-imu-sensor-3933b0](https://create.arduino.cc/projecthub/Aritro/visualising-3d-motion-of-imu-sensor-3933b0) - 主要语言:Arduino - 技术知识:Arduino ## DIY Anemometer: Wind Speed Sensor Device [https://create.arduino.cc/projecthub/achindra/diy-anemometer-wind-speed-sensor-device-84a2e3](https://create.arduino.cc/projecthub/achindra/diy-anemometer-wind-speed-sensor-device-84a2e3) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth-Controlled Car [https://create.arduino.cc/projecthub/Yogeshmodi/bluetooth-controlled-car-e8c90e](https://create.arduino.cc/projecthub/Yogeshmodi/bluetooth-controlled-car-e8c90e) - 主要语言:Arduino - 技术知识:Arduino ## Air Surfer [https://create.arduino.cc/projecthub/antonramenskiy/air-surfer-a2d80f](https://create.arduino.cc/projecthub/antonramenskiy/air-surfer-a2d80f) - 主要语言:Arduino - 技术知识:Arduino ## Alzheimer's Assistant [https://create.arduino.cc/projecthub/abdullahsadiq/alzheimer-s-assistant-a017ad](https://create.arduino.cc/projecthub/abdullahsadiq/alzheimer-s-assistant-a017ad) - 主要语言:Arduino - 技术知识:Arduino ## Use the Force... Or your Brainwaves? [https://create.arduino.cc/projecthub/Imetomi/use-the-force-or-your-brainwaves-9e839b](https://create.arduino.cc/projecthub/Imetomi/use-the-force-or-your-brainwaves-9e839b) - 主要语言:Arduino - 技术知识:Arduino ## WaterPi: Houseplant Remote Watering and Monitoring System [https://create.arduino.cc/projecthub/demirhanaydin/waterpi-houseplant-remote-watering-and-monitoring-system-340400](https://create.arduino.cc/projecthub/demirhanaydin/waterpi-houseplant-remote-watering-and-monitoring-system-340400) - 主要语言:Arduino - 技术知识:Arduino ## The hydroMazing Smart Garden System [https://create.arduino.cc/projecthub/bitsandbots/the-hydromazing-smart-garden-system-a802e5](https://create.arduino.cc/projecthub/bitsandbots/the-hydromazing-smart-garden-system-a802e5) - 主要语言:Arduino - 技术知识:Arduino ## ArduTester V1.13: The Arduino UNO Transistor Tester [https://create.arduino.cc/projecthub/plouc68000/ardutester-v1-13-the-arduino-uno-transistor-tester-dbafb4](https://create.arduino.cc/projecthub/plouc68000/ardutester-v1-13-the-arduino-uno-transistor-tester-dbafb4) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Touch Tic-Tac-Toe Game [https://create.arduino.cc/projecthub/nickthegreek82/arduino-touch-tic-tac-toe-game-792816](https://create.arduino.cc/projecthub/nickthegreek82/arduino-touch-tic-tac-toe-game-792816) - 主要语言:Arduino - 技术知识:Arduino ## Using a Wii Nunchuk with Arduino [https://create.arduino.cc/projecthub/infusion/using-a-wii-nunchuk-with-arduino-597254](https://create.arduino.cc/projecthub/infusion/using-a-wii-nunchuk-with-arduino-597254) - 主要语言:Arduino - 技术知识:Arduino ## Distance Sensor and OLED [https://create.arduino.cc/projecthub/javier-munoz-saez/distance-sensor-and-oled-ad9e35](https://create.arduino.cc/projecthub/javier-munoz-saez/distance-sensor-and-oled-ad9e35) - 主要语言:Arduino - 技术知识:Arduino ## Lcd Display in Real Time. [https://create.arduino.cc/projecthub/YoussefSabaa/lcd-display-in-real-time-ea0b7b](https://create.arduino.cc/projecthub/YoussefSabaa/lcd-display-in-real-time-ea0b7b) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/chuygen/control-up-to-65-280-relays-with-your-arduino-6a6256) - 主要语言:Arduino - 技术知识:Arduino ## Temperature sensor [https://create.arduino.cc/projecthub/trduunze/temperature-sensor-36c420](https://create.arduino.cc/projecthub/trduunze/temperature-sensor-36c420) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Mp3 player + Distance sensor = FUN [https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-distance-sensor-fun-6b1bce](https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-distance-sensor-fun-6b1bce) - 主要语言:Arduino - 技术知识:Arduino ## Arduino TV out cable [https://create.arduino.cc/projecthub/paulscott56/arduino-tv-out-cable-64de69](https://create.arduino.cc/projecthub/paulscott56/arduino-tv-out-cable-64de69) - 主要语言:Arduino - 技术知识:Arduino ## 10 Buttons Using 1 Interrupt [https://create.arduino.cc/projecthub/Svizel_pritula/10-buttons-using-1-interrupt-2bd1f8](https://create.arduino.cc/projecthub/Svizel_pritula/10-buttons-using-1-interrupt-2bd1f8) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Sending Sensor Data to MySQL Server (PHPMYADMIN) [https://create.arduino.cc/projecthub/embedotronics-technologies/arduino-sending-sensor-data-to-mysql-server-phpmyadmin-a604d4](https://create.arduino.cc/projecthub/embedotronics-technologies/arduino-sending-sensor-data-to-mysql-server-phpmyadmin-a604d4) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/123325/monitor-your-energy-bill-via-modbus-mkr-wifi-1010-and-rs485-814e5e) - 主要语言:Arduino - 技术知识:Arduino ## Making a Wooden LED Clock [https://create.arduino.cc/projecthub/andrew-jones/making-a-wooden-led-clock-84b9ea](https://create.arduino.cc/projecthub/andrew-jones/making-a-wooden-led-clock-84b9ea) - 主要语言:Arduino - 技术知识:Arduino ## Arduino, Monitoring Door-Opening via Gmail [https://create.arduino.cc/projecthub/phpoc_man/arduino-monitoring-door-opening-via-gmail-a609af](https://create.arduino.cc/projecthub/phpoc_man/arduino-monitoring-door-opening-via-gmail-a609af) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Robot With PS2 Controller (PlayStation 2 Joystick) [https://create.arduino.cc/projecthub/igorF2/arduino-robot-with-ps2-controller-playstation-2-joystick-85bddc](https://create.arduino.cc/projecthub/igorF2/arduino-robot-with-ps2-controller-playstation-2-joystick-85bddc) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Controlled Car [https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-car-2c60e9](https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-car-2c60e9) - 主要语言:Arduino - 技术知识:Arduino ## Line Follower Robot - PID Control - Android Setup [https://create.arduino.cc/projecthub/mjrobot/line-follower-robot-pid-control-android-setup-e5113a](https://create.arduino.cc/projecthub/mjrobot/line-follower-robot-pid-control-android-setup-e5113a) - 主要语言:Arduino - 技术知识:Arduino ## Controlling an LED Matrix with Arduino Uno [https://create.arduino.cc/projecthub/igorF2/controlling-an-led-matrix-with-arduino-uno-0a9e94](https://create.arduino.cc/projecthub/igorF2/controlling-an-led-matrix-with-arduino-uno-0a9e94) - 主要语言:Arduino - 技术知识:Arduino ## Triple CNC Machine [https://create.arduino.cc/projecthub/TheTNR/triple-cnc-machine-802a60](https://create.arduino.cc/projecthub/TheTNR/triple-cnc-machine-802a60) - 主要语言:Arduino - 技术知识:Arduino ## GSM based Home Automation [https://create.arduino.cc/projecthub/brink-io/gsm-based-home-automation-fe5e57](https://create.arduino.cc/projecthub/brink-io/gsm-based-home-automation-fe5e57) - 主要语言:Arduino - 技术知识:Arduino ## GSM Home Alarm V1.0 [https://create.arduino.cc/projecthub/Tiobel/gsm-home-alarm-v1-0-41e4dc](https://create.arduino.cc/projecthub/Tiobel/gsm-home-alarm-v1-0-41e4dc) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Color Detection [https://create.arduino.cc/projecthub/mjrobot/arduino-color-detection-57e4ce](https://create.arduino.cc/projecthub/mjrobot/arduino-color-detection-57e4ce) - 主要语言:Arduino - 技术知识:Arduino ## Mini-Vintage Internet Radio [https://create.arduino.cc/projecthub/guischall/mini-vintage-internet-radio-bbf840](https://create.arduino.cc/projecthub/guischall/mini-vintage-internet-radio-bbf840) - 主要语言:Arduino - 技术知识:Arduino ## Plant Monitoring System using AWS IoT [https://create.arduino.cc/projecthub/carmelito/plant-monitoring-system-using-aws-iot-6cb054](https://create.arduino.cc/projecthub/carmelito/plant-monitoring-system-using-aws-iot-6cb054) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/team-omega-d2/ar-drone-and-1sheeld-discover-the-world-around-your-drone-de6a16) - 主要语言:Arduino - 技术知识:Arduino ## Pavlov's Cat [https://create.arduino.cc/projecthub/arduino/pavlov-s-cat-7e6577](https://create.arduino.cc/projecthub/arduino/pavlov-s-cat-7e6577) - 主要语言:Arduino - 技术知识:Arduino ## Simple FM Radio [https://create.arduino.cc/projecthub/sfrwmaker/simple-fm-radio-5bb328](https://create.arduino.cc/projecthub/sfrwmaker/simple-fm-radio-5bb328) - 主要语言:Arduino - 技术知识:Arduino ## $10 Portable Arduino Weather Station (AWS) [https://create.arduino.cc/projecthub/GeekRex/10-portable-arduino-weather-station-aws-ccf41f](https://create.arduino.cc/projecthub/GeekRex/10-portable-arduino-weather-station-aws-ccf41f) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Speaker w/ Music-Reactive LED Matrix [https://create.arduino.cc/projecthub/Modustrial_Maker/bluetooth-speaker-w-music-reactive-led-matrix-7abcb3](https://create.arduino.cc/projecthub/Modustrial_Maker/bluetooth-speaker-w-music-reactive-led-matrix-7abcb3) - 主要语言:Arduino - 技术知识:Arduino ## rDUINOScope [https://create.arduino.cc/projecthub/dEskoG/rduinoscope-4d399c](https://create.arduino.cc/projecthub/dEskoG/rduinoscope-4d399c) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Sun Tracker Turret [https://create.arduino.cc/projecthub/robotgeek-projects-team/arduino-sun-tracker-turret-06cba9](https://create.arduino.cc/projecthub/robotgeek-projects-team/arduino-sun-tracker-turret-06cba9) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/kutluhan-aktar/how-to-create-a-website-communicating-arduino-by-using-php-ce5232) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Controlled Servo [https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-servo-439997](https://create.arduino.cc/projecthub/JANAK13/bluetooth-controlled-servo-439997) - 主要语言:Arduino - 技术知识:Arduino ## 4x4x4 LED cube with Arduino Uno and 1sheeld [https://create.arduino.cc/projecthub/ihassanibrahim7/voice-controlled-led-cube-with-arduino-uno-and-1sheeld-69afc2](https://create.arduino.cc/projecthub/ihassanibrahim7/voice-controlled-led-cube-with-arduino-uno-and-1sheeld-69afc2) - 主要语言:Arduino - 技术知识:Arduino ## Home Made Arduino Based MPPT Charge Controller [https://create.arduino.cc/projecthub/electronicslovers/home-made-arduino-based-mppt-charge-controller-74f645](https://create.arduino.cc/projecthub/electronicslovers/home-made-arduino-based-mppt-charge-controller-74f645) - 主要语言:Arduino - 技术知识:Arduino ## Soldering Iron Controller for Hakko 907 [https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-8c5866](https://create.arduino.cc/projecthub/sfrwmaker/soldering-iron-controller-for-hakko-907-8c5866) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Without External Clock Crystal on ATmega328 [https://create.arduino.cc/projecthub/techmirtz/arduino-without-external-clock-crystal-on-atmega328-d4fcc4](https://create.arduino.cc/projecthub/techmirtz/arduino-without-external-clock-crystal-on-atmega328-d4fcc4) - 主要语言:Arduino - 技术知识:Arduino ## Arduino CNC Plotter (Drawing Machine) [https://create.arduino.cc/projecthub/mega-das/arduino-cnc-plotter-drawing-machine-a73ea2](https://create.arduino.cc/projecthub/mega-das/arduino-cnc-plotter-drawing-machine-a73ea2) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Door Lock (Arduino) [https://create.arduino.cc/projecthub/BuildItDR/bluetooth-door-lock-arduino-bc2035](https://create.arduino.cc/projecthub/BuildItDR/bluetooth-door-lock-arduino-bc2035) - 主要语言:Arduino - 技术知识:Arduino ## WALTER - The Arduino Photovore Insect [https://create.arduino.cc/projecthub/studikasus/walter-the-arduino-photovore-insect-708207](https://create.arduino.cc/projecthub/studikasus/walter-the-arduino-photovore-insect-708207) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/mircemk/diy-si4730-all-band-radio-lw-mw-sw-fm-1894d9) - 主要语言:Arduino - 技术知识:Arduino ## DIY Arduino Based Pulse Induction Metal Detector [https://create.arduino.cc/projecthub/mircemk/diy-arduino-based-pulse-induction-metal-detector-c6f244](https://create.arduino.cc/projecthub/mircemk/diy-arduino-based-pulse-induction-metal-detector-c6f244) - 主要语言:Arduino - 技术知识:Arduino ## Track and Control Your Car Remotely [https://create.arduino.cc/projecthub/Ashraf_Nabil/tracking-and-controlling-your-car-remotely-using-arduino-and-cc10ed](https://create.arduino.cc/projecthub/Ashraf_Nabil/tracking-and-controlling-your-car-remotely-using-arduino-and-cc10ed) - 主要语言:Arduino - 技术知识:Arduino ## Pac-Man LED Pixel Panel Costume [https://create.arduino.cc/projecthub/pix3lot/pac-man-led-pixel-panel-costume-515666](https://create.arduino.cc/projecthub/pix3lot/pac-man-led-pixel-panel-costume-515666) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - PV MPPT Solar Charger [https://create.arduino.cc/projecthub/abhi_verma/arduino-pv-mppt-solar-charger-371474](https://create.arduino.cc/projecthub/abhi_verma/arduino-pv-mppt-solar-charger-371474) - 主要语言:Arduino - 技术知识:Arduino ## Arduino I2C communication with Raspi 2 WIOT [https://create.arduino.cc/projecthub/phantom_override/arduino-i2c-ommunication-with-raspi-2-wiot-63d599](https://create.arduino.cc/projecthub/phantom_override/arduino-i2c-ommunication-with-raspi-2-wiot-63d599) - 主要语言:Arduino - 技术知识:Arduino ## Easiest Line Follower Robot [https://create.arduino.cc/projecthub/Zubayer/easiest-line-follower-robot-635bc0](https://create.arduino.cc/projecthub/Zubayer/easiest-line-follower-robot-635bc0) - 主要语言:Arduino - 技术知识:Arduino ## Using the MAX30100 wearable pulse sensor with Arduino [https://create.arduino.cc/projecthub/protocentral/using-the-max30100-wearable-pulse-sensor-with-arduino-9b6984](https://create.arduino.cc/projecthub/protocentral/using-the-max30100-wearable-pulse-sensor-with-arduino-9b6984) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Pressure Measuring and Logging [https://create.arduino.cc/projecthub/Fillbee/arduino-pressure-measuring-and-logging-42189b](https://create.arduino.cc/projecthub/Fillbee/arduino-pressure-measuring-and-logging-42189b) - 主要语言:Arduino - 技术知识:Arduino ## Arduino MIDI Arpeggiator [https://create.arduino.cc/projecthub/dra/arduino-midi-arpeggiator-3bd731](https://create.arduino.cc/projecthub/dra/arduino-midi-arpeggiator-3bd731) - 主要语言:Arduino - 技术知识:Arduino ## Temperature and Humidity Data Logger [https://create.arduino.cc/projecthub/Guitarman1/temperature-and-humidity-data-logger-5e587e](https://create.arduino.cc/projecthub/Guitarman1/temperature-and-humidity-data-logger-5e587e) - 主要语言:Arduino - 技术知识:Arduino ## DIY Universal CNC Machine [https://create.arduino.cc/projecthub/gatoninja236/diy-universal-cnc-machine-e15b87](https://create.arduino.cc/projecthub/gatoninja236/diy-universal-cnc-machine-e15b87) - 主要语言:Arduino - 技术知识:Arduino ## DIY Hand Sanitizer Dispenser Using Arduino [https://create.arduino.cc/projecthub/MissionCritical/diy-hand-sanitizer-dispenser-using-arduino-143de1](https://create.arduino.cc/projecthub/MissionCritical/diy-hand-sanitizer-dispenser-using-arduino-143de1) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Mp3 player Catalex [https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-catalex-2effef](https://create.arduino.cc/projecthub/javier-munoz-saez/arduino-mp3-player-catalex-2effef) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/173799/a-glove-that-translate-sign-language-into-text-and-speech-c91b13) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/mjrobot/hacking-a-rc-car-to-control-it-using-an-android-device-7d5b9a) - 主要语言:Arduino - 技术知识:Arduino ## Make an Arduino Temperature Sensor (thermistor tutorial) [https://create.arduino.cc/projecthub/iasonas-christoulakis/make-an-arduino-temperature-sensor-thermistor-tutorial-b26ed3](https://create.arduino.cc/projecthub/iasonas-christoulakis/make-an-arduino-temperature-sensor-thermistor-tutorial-b26ed3) - 主要语言:Arduino - 技术知识:Arduino ## Liquid Level Sensing Using a Laser ToF Sensor [https://create.arduino.cc/projecthub/team-protocentral/liquid-level-sensing-using-a-laser-tof-sensor-d04232](https://create.arduino.cc/projecthub/team-protocentral/liquid-level-sensing-using-a-laser-tof-sensor-d04232) - 主要语言:Arduino - 技术知识:Arduino ## Ultrasonic Glasses for the Blind [https://create.arduino.cc/projecthub/gardnertech/ultrasonic-glasses-for-the-blind-142156](https://create.arduino.cc/projecthub/gardnertech/ultrasonic-glasses-for-the-blind-142156) - 主要语言:Arduino - 技术知识:Arduino ## DC Motor Controlling Library [https://create.arduino.cc/projecthub/ambhatt/dc-motor-controlling-library-a74319](https://create.arduino.cc/projecthub/ambhatt/dc-motor-controlling-library-a74319) - 主要语言:Arduino - 技术知识:Arduino ## Automatic Sliding Door for the Garage [https://create.arduino.cc/projecthub/DVDMDN/automatic-sliding-door-for-the-garage-c7b1ba](https://create.arduino.cc/projecthub/DVDMDN/automatic-sliding-door-for-the-garage-c7b1ba) - 主要语言:Arduino - 技术知识:Arduino ## Intruder Alarm with Text Message Notification [https://create.arduino.cc/projecthub/MatthewHallberg/intruder-alarm-with-text-message-notification-a38ae9](https://create.arduino.cc/projecthub/MatthewHallberg/intruder-alarm-with-text-message-notification-a38ae9) - 主要语言:Arduino - 技术知识:Arduino ## MeArm Robot Arm - Your Robot - V1.0 [https://create.arduino.cc/projecthub/benbobgray/mearm-robot-arm-your-robot-v1-0-326702](https://create.arduino.cc/projecthub/benbobgray/mearm-robot-arm-your-robot-v1-0-326702) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/nekhbet/using-the-yl-39-yl-69-soil-humidity-sensor-with-arduino-968268) - 主要语言:Arduino - 技术知识:Arduino ## Ever Blooming Mechanical Tulip [https://create.arduino.cc/projecthub/jiripraus/ever-blooming-mechanical-tulip-1b0323](https://create.arduino.cc/projecthub/jiripraus/ever-blooming-mechanical-tulip-1b0323) - 主要语言:Arduino - 技术知识:Arduino ## WARAN - Home Automation [https://create.arduino.cc/projecthub/arjun/waran-home-automation-e84a26](https://create.arduino.cc/projecthub/arjun/waran-home-automation-e84a26) - 主要语言:Arduino - 技术知识:Arduino ## Simple Alarm Clock with DS1302 RTC [https://create.arduino.cc/projecthub/SurtrTech/simple-alarm-clock-with-ds1302-rtc-a92d7b](https://create.arduino.cc/projecthub/SurtrTech/simple-alarm-clock-with-ds1302-rtc-a92d7b) - 主要语言:Arduino - 技术知识:Arduino ## SIM800L GPRS Module with Arduino AT Commands [https://create.arduino.cc/projecthub/EasyMades/sim800l-gprs-module-with-arduino-at-commands-d3f3f7](https://create.arduino.cc/projecthub/EasyMades/sim800l-gprs-module-with-arduino-at-commands-d3f3f7) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Quadcopter [https://create.arduino.cc/projecthub/robocircuits/arduino-quadcopter-e618c6](https://create.arduino.cc/projecthub/robocircuits/arduino-quadcopter-e618c6) - 主要语言:Arduino - 技术知识:Arduino ## Measure your reaction time [https://create.arduino.cc/projecthub/Blue_jack/measure-your-reaction-time-d68f90](https://create.arduino.cc/projecthub/Blue_jack/measure-your-reaction-time-d68f90) - 主要语言:Arduino - 技术知识:Arduino ## DIY Grow LED Light Designing a Better Sun [https://create.arduino.cc/projecthub/dymonxd/diy-grow-led-light-designing-a-better-sun-1adec1](https://create.arduino.cc/projecthub/dymonxd/diy-grow-led-light-designing-a-better-sun-1adec1) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/YoussefSabaa/bluetooth-control-led-with-lcd-led-status-display-real-time-58f9ca) - 主要语言:Arduino - 技术知识:Arduino ## Heart Rate Monitor Using IoT [https://create.arduino.cc/projecthub/technopaths/heart-rate-monitor-using-iot-ddafca](https://create.arduino.cc/projecthub/technopaths/heart-rate-monitor-using-iot-ddafca) - 主要语言:Arduino - 技术知识:Arduino ## PID Control Line Follower Robot [https://create.arduino.cc/projecthub/kittenbot/pid-control-line-follower-robot-d4535c](https://create.arduino.cc/projecthub/kittenbot/pid-control-line-follower-robot-d4535c) - 主要语言:Arduino - 技术知识:Arduino ## Raspberry Pi and Arduino Laptop [https://create.arduino.cc/projecthub/BuildItDR/raspberry-pi-and-arduino-laptop-bf50f5](https://create.arduino.cc/projecthub/BuildItDR/raspberry-pi-and-arduino-laptop-bf50f5) - 主要语言:Arduino - 技术知识:Arduino ## BrewBench [https://create.arduino.cc/projecthub/brewbench/brewbench-d64d90](https://create.arduino.cc/projecthub/brewbench/brewbench-d64d90) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Trash-Bot (Auto-Open/Close Trash Bin) [https://create.arduino.cc/projecthub/ashraf_minhaj/arduino-trash-bot-auto-open-close-trash-bin-fef238](https://create.arduino.cc/projecthub/ashraf_minhaj/arduino-trash-bot-auto-open-close-trash-bin-fef238) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/JiongShi/a-fall-detection-system-based-on-arduino-windows-and-azure-2c03cf) - 主要语言:Arduino - 技术知识:Arduino ## SmartAgro [https://create.arduino.cc/projecthub/andreiflorian/smartagro-e46213](https://create.arduino.cc/projecthub/andreiflorian/smartagro-e46213) - 主要语言:Arduino - 技术知识:Arduino ## Android Arduino RC Car [https://create.arduino.cc/projecthub/rafitc/android-arduino-rc-car-e633d7](https://create.arduino.cc/projecthub/rafitc/android-arduino-rc-car-e633d7) - 主要语言:Arduino - 技术知识:Arduino ## Mobile Controlled Bluetooth Car [https://create.arduino.cc/projecthub/vishal-soni/mobile-controlled-bluetooth-car-easy-simple-hc-05-59a002](https://create.arduino.cc/projecthub/vishal-soni/mobile-controlled-bluetooth-car-easy-simple-hc-05-59a002) - 主要语言:Arduino - 技术知识:Arduino ## Gesture Controlled Trainable Arduino Robot Arm via Bluetooth [https://create.arduino.cc/projecthub/KureBasRobotics/gesture-controlled-trainable-arduino-robot-arm-via-bluetooth-4a1e57](https://create.arduino.cc/projecthub/KureBasRobotics/gesture-controlled-trainable-arduino-robot-arm-via-bluetooth-4a1e57) - 主要语言:Arduino - 技术知识:Arduino ## Garage Parking Assistant [https://create.arduino.cc/projecthub/Bcjams/garage-parking-assistant-11446b](https://create.arduino.cc/projecthub/Bcjams/garage-parking-assistant-11446b) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Tutorial : Mini Piano [https://create.arduino.cc/projecthub/rahulkhanna/arduino-tutorial-mini-piano-08f8b8](https://create.arduino.cc/projecthub/rahulkhanna/arduino-tutorial-mini-piano-08f8b8) - 主要语言:Arduino - 技术知识:Arduino ## Automatic Watering System [https://create.arduino.cc/projecthub/PRosenb/automatic-watering-system-160d90](https://create.arduino.cc/projecthub/PRosenb/automatic-watering-system-160d90) - 主要语言:Arduino - 技术知识:Arduino ## Arduino and AC Devices - Automatic Lights [https://create.arduino.cc/projecthub/shakram02/arduino-and-ac-devices-automatic-lights-71ff56](https://create.arduino.cc/projecthub/shakram02/arduino-and-ac-devices-automatic-lights-71ff56) - 主要语言:Arduino - 技术知识:Arduino ## Traffic Light Information System [https://create.arduino.cc/projecthub/38611/traffic-light-information-system-3f0e9e](https://create.arduino.cc/projecthub/38611/traffic-light-information-system-3f0e9e) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Smart car [https://create.arduino.cc/projecthub/faweiz/arduino-smart-car-9496c4](https://create.arduino.cc/projecthub/faweiz/arduino-smart-car-9496c4) - 主要语言:Arduino - 技术知识:Arduino ## WiFi ESP8266 and DHT22 Sensor [https://create.arduino.cc/projecthub/hbolanos2001/wifi-esp8266-and-dht22-sensor-09d455](https://create.arduino.cc/projecthub/hbolanos2001/wifi-esp8266-and-dht22-sensor-09d455) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Pokéball [https://create.arduino.cc/projecthub/MarJoh/arduino-pokeball-5555d8](https://create.arduino.cc/projecthub/MarJoh/arduino-pokeball-5555d8) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Cloud Sensor Tower [https://create.arduino.cc/projecthub/Arduino_Genuino/arduino-cloud-sensor-tower-787ec9](https://create.arduino.cc/projecthub/Arduino_Genuino/arduino-cloud-sensor-tower-787ec9) - 主要语言:Arduino - 技术知识:Arduino ## Picture The Weather [https://create.arduino.cc/projecthub/windowsiot/picture-of-the-weather-a4c5c2](https://create.arduino.cc/projecthub/windowsiot/picture-of-the-weather-a4c5c2) - 主要语言:Arduino - 技术知识:Arduino ## Connecting Anduino to IFTTT [https://create.arduino.cc/projecthub/bcarbs/connecting-anduino-to-ifttt-1686ad](https://create.arduino.cc/projecthub/bcarbs/connecting-anduino-to-ifttt-1686ad) - 主要语言:Arduino - 技术知识:Arduino ## RGB LED Strips Controller [https://create.arduino.cc/projecthub/ThereIsNoTry/rgb-led-strips-controller-b15300](https://create.arduino.cc/projecthub/ThereIsNoTry/rgb-led-strips-controller-b15300) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Nerf Turret [https://create.arduino.cc/projecthub/Little_french_kev/bluetooth-nerf-turret-03363b](https://create.arduino.cc/projecthub/Little_french_kev/bluetooth-nerf-turret-03363b) - 主要语言:Arduino - 技术知识:Arduino ## MKR Zero Weather Data Logger [https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-zero-weather-data-logger-574190](https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-zero-weather-data-logger-574190) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ioarvanit/dual-axis-solar-tracker-panel-with-auto-and-manual-mode-41cfd9) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - Serial Communication Visual Studio [https://create.arduino.cc/projecthub/whitebank/arduino-serial-communication-visual-studio-3f5c77](https://create.arduino.cc/projecthub/whitebank/arduino-serial-communication-visual-studio-3f5c77) - 主要语言:Arduino - 技术知识:Arduino ## pixy cmuCAM + Arduino [https://create.arduino.cc/projecthub/niftyjoeman/pixy-cmucam-arduino-3ac141](https://create.arduino.cc/projecthub/niftyjoeman/pixy-cmucam-arduino-3ac141) - 主要语言:Arduino - 技术知识:Arduino ## PLC Training Center [https://create.arduino.cc/projecthub/saifalikabi/plc-training-center-213b18](https://create.arduino.cc/projecthub/saifalikabi/plc-training-center-213b18) - 主要语言:Arduino - 技术知识:Arduino ## Making a Cheap Laser Rangefinder for Arduino [https://create.arduino.cc/projecthub/iliasam/making-a-cheap-laser-rangefinder-for-arduino-4dd849](https://create.arduino.cc/projecthub/iliasam/making-a-cheap-laser-rangefinder-for-arduino-4dd849) - 主要语言:Arduino - 技术知识:Arduino ## Mini LED Matrix Clock [https://create.arduino.cc/projecthub/mircemk/mini-led-matrix-clock-d4f5f5](https://create.arduino.cc/projecthub/mircemk/mini-led-matrix-clock-d4f5f5) - 主要语言:Arduino - 技术知识:Arduino ## Simple Home Automation Using Bluetooth, Android and Arduino [https://create.arduino.cc/projecthub/kksjunior/simple-home-automation-using-bluetooth-android-and-arduino-2157b3](https://create.arduino.cc/projecthub/kksjunior/simple-home-automation-using-bluetooth-android-and-arduino-2157b3) - 主要语言:Arduino - 技术知识:Arduino ## DIY SMD Rework Station [https://create.arduino.cc/projecthub/makerbr555/diy-smd-rework-station-28b6f5](https://create.arduino.cc/projecthub/makerbr555/diy-smd-rework-station-28b6f5) - 主要语言:Arduino - 技术知识:Arduino ## Digital Force Gauge & Weight Scale w/ Loadcell & Arduino [https://create.arduino.cc/projecthub/electropeak/digital-force-gauge-weight-scale-w-loadcell-arduino-7a7fd5](https://create.arduino.cc/projecthub/electropeak/digital-force-gauge-weight-scale-w-loadcell-arduino-7a7fd5) - 主要语言:Arduino - 技术知识:Arduino ## Date, Time, Temperature and Humidity Display [https://create.arduino.cc/projecthub/chamathkv/date-time-temperature-and-humidity-display-b05086](https://create.arduino.cc/projecthub/chamathkv/date-time-temperature-and-humidity-display-b05086) - 主要语言:Arduino - 技术知识:Arduino ## Blinds (Or Any AC Power Motor) Control [https://create.arduino.cc/projecthub/gomecin/blinds-or-any-ac-power-motor-control-27f633](https://create.arduino.cc/projecthub/gomecin/blinds-or-any-ac-power-motor-control-27f633) - 主要语言:Arduino - 技术知识:Arduino ## Android Motion Detector Camera with Arduino/MCU [https://create.arduino.cc/projecthub/walid-mafuj/android-motion-detector-camera-with-arduino-mcu-306789](https://create.arduino.cc/projecthub/walid-mafuj/android-motion-detector-camera-with-arduino-mcu-306789) - 主要语言:Arduino - 技术知识:Arduino ## My motorbike Telemetry [https://create.arduino.cc/projecthub/lentzlive/my-motorbike-telemetry-c73c0f](https://create.arduino.cc/projecthub/lentzlive/my-motorbike-telemetry-c73c0f) - 主要语言:Arduino - 技术知识:Arduino ## How to Use Modbus with Arduino [https://create.arduino.cc/projecthub/hwhardsoft/how-to-use-modbus-with-arduino-6f434b](https://create.arduino.cc/projecthub/hwhardsoft/how-to-use-modbus-with-arduino-6f434b) - 主要语言:Arduino - 技术知识:Arduino ## Extremely Sensitive Cheap Homemade Seismometer [https://create.arduino.cc/projecthub/mircemk/extremely-sensitive-cheap-homemade-seismometer-175231](https://create.arduino.cc/projecthub/mircemk/extremely-sensitive-cheap-homemade-seismometer-175231) - 主要语言:Arduino - 技术知识:Arduino ## Arduino MIDI Stepper Synth [https://create.arduino.cc/projecthub/JonJonKayne/arduino-midi-stepper-synth-d291ae](https://create.arduino.cc/projecthub/JonJonKayne/arduino-midi-stepper-synth-d291ae) - 主要语言:Arduino - 技术知识:Arduino ## $20 Zigbee Door Chime [https://create.arduino.cc/projecthub/BuddyC/20-zigbee-door-chime-98f016](https://create.arduino.cc/projecthub/BuddyC/20-zigbee-door-chime-98f016) - 主要语言:Arduino - 技术知识:Arduino ## Arduino HID-Based CNC Pendant [https://create.arduino.cc/projecthub/edr1924/arduino-hid-based-cnc-pendant-aefa13](https://create.arduino.cc/projecthub/edr1924/arduino-hid-based-cnc-pendant-aefa13) - 主要语言:Arduino - 技术知识:Arduino ## Using Serial Monitor to Control Servo Motor [https://create.arduino.cc/projecthub/Kub_Luk/using-serial-monitor-to-control-servo-motor-cc1daf](https://create.arduino.cc/projecthub/Kub_Luk/using-serial-monitor-to-control-servo-motor-cc1daf) - 主要语言:Arduino - 技术知识:Arduino ## Mini Elevator [https://create.arduino.cc/projecthub/fishy-circuits/mini-elevator-3ad6f4](https://create.arduino.cc/projecthub/fishy-circuits/mini-elevator-3ad6f4) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Clock [https://create.arduino.cc/projecthub/Arduino_Scuola/arduino-clock-df2b76](https://create.arduino.cc/projecthub/Arduino_Scuola/arduino-clock-df2b76) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/2684/open-your-door-with-a-special-knock-using-arduino-android-phone-and-1sheeld-d4e6fc) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/kelvineyeone/read-pwm-decode-rc-receiver-input-and-apply-fail-safe-6b90eb) - 主要语言:Arduino - 技术知识:Arduino ## AWS - Arduino Weather Station [https://create.arduino.cc/projecthub/GilettaStefano/aws-arduino-weather-station-9e5a21](https://create.arduino.cc/projecthub/GilettaStefano/aws-arduino-weather-station-9e5a21) - 主要语言:Arduino - 技术知识:Arduino ## SMS based Home Automation system using 1SHEELD [https://create.arduino.cc/projecthub/tanishq/sms-based-home-automation-system-using-1sheeld-5c4823](https://create.arduino.cc/projecthub/tanishq/sms-based-home-automation-system-using-1sheeld-5c4823) - 主要语言:Arduino - 技术知识:Arduino ## Automated Garden [https://create.arduino.cc/projecthub/thomas_sxt/automated-garden-77bee8](https://create.arduino.cc/projecthub/thomas_sxt/automated-garden-77bee8) - 主要语言:Arduino - 技术知识:Arduino ## Version 2.0 Advanced Attendance System (Without Ethernet) [https://create.arduino.cc/projecthub/gadgetprogrammers/version-2-0-advanced-attendance-system-without-ethernet-0402ba](https://create.arduino.cc/projecthub/gadgetprogrammers/version-2-0-advanced-attendance-system-without-ethernet-0402ba) - 主要语言:Arduino - 技术知识:Arduino ## Speech Recognition with Arduino and BitVoicer Server [https://create.arduino.cc/projecthub/msb4180/speech-recognition-with-arduino-and-bitvoicer-server-460477](https://create.arduino.cc/projecthub/msb4180/speech-recognition-with-arduino-and-bitvoicer-server-460477) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/gra_and_afch/arduino-shield-ncs314-nixie-tubes-clock-in-14-20932b) - 主要语言:Arduino - 技术知识:Arduino ## Sliding Gate Automation [https://create.arduino.cc/projecthub/LasithIshan/sliding-gate-automation-c87496](https://create.arduino.cc/projecthub/LasithIshan/sliding-gate-automation-c87496) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Laser Tripwire [https://create.arduino.cc/projecthub/ianabcumming/arduino-laser-tripwire-31e473](https://create.arduino.cc/projecthub/ianabcumming/arduino-laser-tripwire-31e473) - 主要语言:Arduino - 技术知识:Arduino ## DIY 3-Axis CNC VMC [https://create.arduino.cc/projecthub/amitnandileo/diy-3-axis-cnc-vmc-4817ba](https://create.arduino.cc/projecthub/amitnandileo/diy-3-axis-cnc-vmc-4817ba) - 主要语言:Arduino - 技术知识:Arduino ## Infinity mirror clock [https://create.arduino.cc/projecthub/TheTNR/infinity-mirror-clock-b00c6a](https://create.arduino.cc/projecthub/TheTNR/infinity-mirror-clock-b00c6a) - 主要语言:Arduino - 技术知识:Arduino ## From KY-039 To Heart Rate [https://create.arduino.cc/projecthub/Johan_Ha/from-ky-039-to-heart-rate-0abfca](https://create.arduino.cc/projecthub/Johan_Ha/from-ky-039-to-heart-rate-0abfca) - 主要语言:Arduino - 技术知识:Arduino ## Your Environmental Data on Arduino IoT Cloud [https://create.arduino.cc/projecthub/148064/your-environmental-data-on-arduino-iot-cloud-4e29bf](https://create.arduino.cc/projecthub/148064/your-environmental-data-on-arduino-iot-cloud-4e29bf) - 主要语言:Arduino - 技术知识:Arduino ## Ultrasonic Range Detector With Arduino [https://create.arduino.cc/projecthub/Salmanfarisvp/ultrasonic-range-detector-with-arduino-46c96c](https://create.arduino.cc/projecthub/Salmanfarisvp/ultrasonic-range-detector-with-arduino-46c96c) - 主要语言:Arduino - 技术知识:Arduino ## Face Tracking Using Arduino [https://create.arduino.cc/projecthub/WolfxPac/face-tracking-using-arduino-b35b6b](https://create.arduino.cc/projecthub/WolfxPac/face-tracking-using-arduino-b35b6b) - 主要语言:Arduino - 技术知识:Arduino ## Robotcar Controlled Using G-Sensor Smartphone [https://create.arduino.cc/projecthub/RemoteXY/robotcar-controlled-using-g-sensor-smartphone-9f7eec](https://create.arduino.cc/projecthub/RemoteXY/robotcar-controlled-using-g-sensor-smartphone-9f7eec) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Easy Weather Station With BME280 Sensor [https://create.arduino.cc/projecthub/nickthegreek82/arduino-easy-weather-station-with-bme280-sensor-cbb5d2](https://create.arduino.cc/projecthub/nickthegreek82/arduino-easy-weather-station-with-bme280-sensor-cbb5d2) - 主要语言:Arduino - 技术知识:Arduino ## Make an Arduino Memory Game [https://create.arduino.cc/projecthub/Jerepondumie/make-an-arduino-memory-game-73f55e](https://create.arduino.cc/projecthub/Jerepondumie/make-an-arduino-memory-game-73f55e) - 主要语言:Arduino - 技术知识:Arduino ## DCF77 Analyzer/Clock v2.0 [https://create.arduino.cc/projecthub/edr1924/dcf77-analyzer-clock-v2-0-c25404](https://create.arduino.cc/projecthub/edr1924/dcf77-analyzer-clock-v2-0-c25404) - 主要语言:Arduino - 技术知识:Arduino ## Arduino-Powered Smart Light (Works with Amazon Echo) [https://create.arduino.cc/projecthub/tinker-project/arduino-powered-smart-light-works-with-amazon-echo-9e20fd](https://create.arduino.cc/projecthub/tinker-project/arduino-powered-smart-light-works-with-amazon-echo-9e20fd) - 主要语言:Arduino - 技术知识:Arduino ## Level Platform Using Accelerometer [https://create.arduino.cc/projecthub/mtashiro/level-platform-using-accelerometer-80a343](https://create.arduino.cc/projecthub/mtashiro/level-platform-using-accelerometer-80a343) - 主要语言:Arduino - 技术知识:Arduino ## Android Things Word Clock [https://create.arduino.cc/projecthub/daniele-bonaldo/android-things-word-clock-46cc14](https://create.arduino.cc/projecthub/daniele-bonaldo/android-things-word-clock-46cc14) - 主要语言:Arduino - 技术知识:Arduino ## Automatic Coffee Machine [https://create.arduino.cc/projecthub/thomas_sxt/automatic-coffee-machine-950544](https://create.arduino.cc/projecthub/thomas_sxt/automatic-coffee-machine-950544) - 主要语言:Arduino - 技术知识:Arduino ## Tricks for Controlling DC Motors [https://create.arduino.cc/projecthub/tolgadurudogan/tricks-for-controlling-dc-motors-3a05a5](https://create.arduino.cc/projecthub/tolgadurudogan/tricks-for-controlling-dc-motors-3a05a5) - 主要语言:Arduino - 技术知识:Arduino ## DIY Solar Tracker Arduino Project ITA [https://create.arduino.cc/projecthub/Ingeimaks/diy-solar-tracker-arduino-project-ita-78ad78](https://create.arduino.cc/projecthub/Ingeimaks/diy-solar-tracker-arduino-project-ita-78ad78) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/DCamino/ambient-light-sensor-using-photo-resistor-and-led-lights-9b7f39) - 主要语言:Arduino - 技术知识:Arduino ## IoT4Car [https://create.arduino.cc/projecthub/frankzhao/iot4car-1b07f1](https://create.arduino.cc/projecthub/frankzhao/iot4car-1b07f1) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Nano Clock with 4x64 LED Matrix [https://create.arduino.cc/projecthub/M-V-P/arduino-nano-clock-with-4x64-led-matrix-409730](https://create.arduino.cc/projecthub/M-V-P/arduino-nano-clock-with-4x64-led-matrix-409730) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Bluetooth Camera (ABC) [https://create.arduino.cc/projecthub/alf81010/arduino-bluetooth-camera-abc-107c3d](https://create.arduino.cc/projecthub/alf81010/arduino-bluetooth-camera-abc-107c3d) - 主要语言:Arduino - 技术知识:Arduino ## Face-Masks Disinfection Device — needlab [https://create.arduino.cc/projecthub/needlab/face-masks-disinfection-device-needlab-3ed2f5](https://create.arduino.cc/projecthub/needlab/face-masks-disinfection-device-needlab-3ed2f5) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Data Glasses for My Multimeter [https://create.arduino.cc/projecthub/AlainsProjects/arduino-data-glasses-for-my-multimeter-bb4e59](https://create.arduino.cc/projecthub/AlainsProjects/arduino-data-glasses-for-my-multimeter-bb4e59) - 主要语言:Arduino - 技术知识:Arduino ## Smart Blinds [https://create.arduino.cc/projecthub/Froz3nArcher/smart-blinds-573548](https://create.arduino.cc/projecthub/Froz3nArcher/smart-blinds-573548) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/edr1924/easy-to-build-pet-feeder-phone-app-control-soon-86c1ef) - 主要语言:Arduino - 技术知识:Arduino ## WalaBeer Tank [https://create.arduino.cc/projecthub/Abysmal/walabeer-tank-20a2ed](https://create.arduino.cc/projecthub/Abysmal/walabeer-tank-20a2ed) - 主要语言:Arduino - 技术知识:Arduino ## Snacks Vending Machine Powered By Arduino [https://create.arduino.cc/projecthub/Sevenmojoe/snacks-vending-machine-powered-by-arduino-f03296](https://create.arduino.cc/projecthub/Sevenmojoe/snacks-vending-machine-powered-by-arduino-f03296) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/TheGadgetBoy/diy-a-5-minutes-contactless-oled-thermometer-with-arduino-857a1d) - 主要语言:Arduino - 技术知识:Arduino ## Fire From Water [https://create.arduino.cc/projecthub/ben-eagan/fire-from-water-9e6ae4](https://create.arduino.cc/projecthub/ben-eagan/fire-from-water-9e6ae4) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/tylerpeppy/25-khz-4-pin-pwm-fan-control-with-arduino-uno-3005a1) - 主要语言:Arduino - 技术知识:Arduino ## DIY Relay Outlet Arduino [https://create.arduino.cc/projecthub/makerguide/diy-relay-outlet-arduino-ce3653](https://create.arduino.cc/projecthub/makerguide/diy-relay-outlet-arduino-ce3653) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/amrmostaafaa/how-to-build-a-diy-arduino-based-smart-home-hub-with-1sheeld-79d405) - 主要语言:Arduino - 技术知识:Arduino ## Temperature Monitor with DHT22 and I2C 16x2 LCD [https://create.arduino.cc/projecthub/adrakhmat/temperature-monitor-with-dht22-and-i2c-16x2-lcd-3ddd39](https://create.arduino.cc/projecthub/adrakhmat/temperature-monitor-with-dht22-and-i2c-16x2-lcd-3ddd39) - 主要语言:Arduino - 技术知识:Arduino ## Arduino IoT Cloud Amazon Alexa Integration [https://create.arduino.cc/projecthub/303628/arduino-iot-cloud-amazon-alexa-integration-4e6078](https://create.arduino.cc/projecthub/303628/arduino-iot-cloud-amazon-alexa-integration-4e6078) - 主要语言:Arduino - 技术知识:Arduino ## POV Cylinder with Arduino Due [https://create.arduino.cc/projecthub/hanoba_DIY/pov-cylinder-with-arduino-due-7016d5](https://create.arduino.cc/projecthub/hanoba_DIY/pov-cylinder-with-arduino-due-7016d5) - 主要语言:Arduino - 技术知识:Arduino ## PS3 Controller Control Servo Wireless [https://create.arduino.cc/projecthub/YoussefSabaa/ps3-controller-control-servo-wireless-c6b8db](https://create.arduino.cc/projecthub/YoussefSabaa/ps3-controller-control-servo-wireless-c6b8db) - 主要语言:Arduino - 技术知识:Arduino ## PuzzleBox [https://create.arduino.cc/projecthub/arduino/puzzlebox-c1f374](https://create.arduino.cc/projecthub/arduino/puzzlebox-c1f374) - 主要语言:Arduino - 技术知识:Arduino ## Solar Tracker V2.0 [https://create.arduino.cc/projecthub/BrownDogGadgets/solar-tracker-v2-0-07ef11](https://create.arduino.cc/projecthub/BrownDogGadgets/solar-tracker-v2-0-07ef11) - 主要语言:Arduino - 技术知识:Arduino ## Arduino GrowBox Controller [https://create.arduino.cc/projecthub/Yarosia/arduino-growbox-controller-efb9fa](https://create.arduino.cc/projecthub/Yarosia/arduino-growbox-controller-efb9fa) - 主要语言:Arduino - 技术知识:Arduino ## Arduino MEGA Guitar Pedal [https://create.arduino.cc/projecthub/electrosmash/arduino-mega-guitar-pedal-2bc87a](https://create.arduino.cc/projecthub/electrosmash/arduino-mega-guitar-pedal-2bc87a) - 主要语言:Arduino - 技术知识:Arduino ## KITtyBot [https://create.arduino.cc/projecthub/StaffanEk/kittybot-f21cc0](https://create.arduino.cc/projecthub/StaffanEk/kittybot-f21cc0) - 主要语言:Arduino - 技术知识:Arduino ## Arduino controlled RGB LED strip [https://create.arduino.cc/projecthub/2460/arduino-controlled-rgb-led-strip-0d6f0e](https://create.arduino.cc/projecthub/2460/arduino-controlled-rgb-led-strip-0d6f0e) - 主要语言:Arduino - 技术知识:Arduino ## LEGO Wall-E with Arduino [https://create.arduino.cc/projecthub/monsterbacke/lego-wall-e-with-arduino-cba9fa](https://create.arduino.cc/projecthub/monsterbacke/lego-wall-e-with-arduino-cba9fa) - 主要语言:Arduino - 技术知识:Arduino ## BLE Bot 9000 [https://create.arduino.cc/projecthub/29284/ble-bot-9000-c150b8](https://create.arduino.cc/projecthub/29284/ble-bot-9000-c150b8) - 主要语言:Arduino - 技术知识:Arduino ## Calibrating My Servos [https://create.arduino.cc/projecthub/jeremy-lindsay/calibrating-my-servos-fa27ce](https://create.arduino.cc/projecthub/jeremy-lindsay/calibrating-my-servos-fa27ce) - 主要语言:Arduino - 技术知识:Arduino ## CO2 Monitoring with K30 Sensor [https://create.arduino.cc/projecthub/alfred333/co2-monitoring-with-k30-sensor-86f6d9](https://create.arduino.cc/projecthub/alfred333/co2-monitoring-with-k30-sensor-86f6d9) - 主要语言:Arduino - 技术知识:Arduino ## Pressure Pad Interfacing with Arduino [https://create.arduino.cc/projecthub/ashish21senapati/pressure-pad-interfacing-with-arduino-efacad](https://create.arduino.cc/projecthub/ashish21senapati/pressure-pad-interfacing-with-arduino-efacad) - 主要语言:Arduino - 技术知识:Arduino ## Face Tracking Camera [https://create.arduino.cc/projecthub/Little_french_kev/face-tracking-camera-afbef5](https://create.arduino.cc/projecthub/Little_french_kev/face-tracking-camera-afbef5) - 主要语言:Arduino - 技术知识:Arduino ## Heart Rate Monitoring System [https://create.arduino.cc/projecthub/hrms/heart-rate-monitoring-system-8da2fa](https://create.arduino.cc/projecthub/hrms/heart-rate-monitoring-system-8da2fa) - 主要语言:Arduino - 技术知识:Arduino ## UltrasonicEyes [https://create.arduino.cc/projecthub/unexpectedmaker/ultrasoniceyes-b9fd38](https://create.arduino.cc/projecthub/unexpectedmaker/ultrasoniceyes-b9fd38) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Weather Station [https://create.arduino.cc/projecthub/woutvdr/arduino-weather-station-6d5ca2](https://create.arduino.cc/projecthub/woutvdr/arduino-weather-station-6d5ca2) - 主要语言:Arduino - 技术知识:Arduino ## MKR FOX 1200 Weather Monitor [https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-fox-1200-weather-monitor-6a94e2](https://create.arduino.cc/projecthub/Arduino_Genuino/mkr-fox-1200-weather-monitor-6a94e2) - 主要语言:Arduino - 技术知识:Arduino ## COVID - 19 Non Contact Thermometer [https://create.arduino.cc/projecthub/akshayjoseph666/covid-19-non-contact-thermometer-ad448a](https://create.arduino.cc/projecthub/akshayjoseph666/covid-19-non-contact-thermometer-ad448a) - 主要语言:Arduino - 技术知识:Arduino ## RFID Door Lock with Arduino [https://create.arduino.cc/projecthub/robotgeek-projects-team/rfid-door-lock-with-arduino-89cad2](https://create.arduino.cc/projecthub/robotgeek-projects-team/rfid-door-lock-with-arduino-89cad2) - 主要语言:Arduino - 技术知识:Arduino ## touch sensor [https://create.arduino.cc/projecthub/CodeRocks/touch-sensor-01d36e](https://create.arduino.cc/projecthub/CodeRocks/touch-sensor-01d36e) - 主要语言:Arduino - 技术知识:Arduino ## Arduino/Android - BLUETOOTH Multi Servo Motor Control [https://create.arduino.cc/projecthub/vandenbrande/arduino-android-bluetooth-multi-servo-motor-control-28adc9](https://create.arduino.cc/projecthub/vandenbrande/arduino-android-bluetooth-multi-servo-motor-control-28adc9) - 主要语言:Arduino - 技术知识:Arduino ## The Nerd [https://create.arduino.cc/projecthub/arduino/the-nerd-0144f9](https://create.arduino.cc/projecthub/arduino/the-nerd-0144f9) - 主要语言:Arduino - 技术知识:Arduino ## WiDC: Wi-Fi-Controlled FPV Robot [https://create.arduino.cc/projecthub/igorF2/widc-wi-fi-controlled-fpv-robot-8f1e09](https://create.arduino.cc/projecthub/igorF2/widc-wi-fi-controlled-fpv-robot-8f1e09) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/bportaluri/web-controlled-led-animations-with-raspberry-pi-and-arduino-112025) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Compatible Nano NeoPixel Controller [https://create.arduino.cc/projecthub/whimsy-makerspace/arduino-compatible-nano-neopixel-controller-6f0c4b](https://create.arduino.cc/projecthub/whimsy-makerspace/arduino-compatible-nano-neopixel-controller-6f0c4b) - 主要语言:Arduino - 技术知识:Arduino ## Arduino-based Collision Detection Warning System [https://create.arduino.cc/projecthub/Vijendra/arduino-based-collision-detection-warning-system-d1beec](https://create.arduino.cc/projecthub/Vijendra/arduino-based-collision-detection-warning-system-d1beec) - 主要语言:Arduino - 技术知识:Arduino ## Arduino LCD Thermostat [https://create.arduino.cc/projecthub/gatoninja236/arduino-lcd-thermostat-a02f52](https://create.arduino.cc/projecthub/gatoninja236/arduino-lcd-thermostat-a02f52) - 主要语言:Arduino - 技术知识:Arduino ## Suzie Model One - CNC Machine [https://create.arduino.cc/projecthub/RFCaldas/suzie-model-one-cnc-machine-b4536f](https://create.arduino.cc/projecthub/RFCaldas/suzie-model-one-cnc-machine-b4536f) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Juliette/a-diy-smart-insole-to-check-your-pressure-distribution-a5ceae) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Countdown Timer [https://create.arduino.cc/projecthub/tylerpeppy/arduino-countdown-timer-fc2fd9](https://create.arduino.cc/projecthub/tylerpeppy/arduino-countdown-timer-fc2fd9) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Jalal_Mansoori/simplest-way-for-voice-recognition-project-using-c-toarduino-105138) - 主要语言:Arduino - 技术知识:Arduino ## TFT Graphing: Live History Graphs [https://create.arduino.cc/projecthub/andreiflorian/tft-graphing-live-history-graphs-744f3b](https://create.arduino.cc/projecthub/andreiflorian/tft-graphing-live-history-graphs-744f3b) - 主要语言:Arduino - 技术知识:Arduino ## Connecting an N-Channel MOSFET [https://create.arduino.cc/projecthub/ejshea/connecting-an-n-channel-mosfet-7e0242](https://create.arduino.cc/projecthub/ejshea/connecting-an-n-channel-mosfet-7e0242) - 主要语言:Arduino - 技术知识:Arduino ## Internal Timers of Arduino [https://create.arduino.cc/projecthub/Marcazzan_M/internal-timers-of-arduino-58f6c9](https://create.arduino.cc/projecthub/Marcazzan_M/internal-timers-of-arduino-58f6c9) - 主要语言:Arduino - 技术知识:Arduino ## Control Servos using Wii Nunchuk [https://create.arduino.cc/projecthub/mtashiro/control-servos-using-wii-nunchuk-9136bd](https://create.arduino.cc/projecthub/mtashiro/control-servos-using-wii-nunchuk-9136bd) - 主要语言:Arduino - 技术知识:Arduino ## Clone Infrared Signals with Arduino [https://create.arduino.cc/projecthub/richardosgood/clone-infrared-signals-with-arduino-3a3cb2](https://create.arduino.cc/projecthub/richardosgood/clone-infrared-signals-with-arduino-3a3cb2) - 主要语言:Arduino - 技术知识:Arduino ## One Button to Rule Them All [https://create.arduino.cc/projecthub/Arduino_Genuino/one-button-to-rule-them-all-915bbe](https://create.arduino.cc/projecthub/Arduino_Genuino/one-button-to-rule-them-all-915bbe) - 主要语言:Arduino - 技术知识:Arduino ## Smart Energy Monitor Based on Arduino [https://create.arduino.cc/projecthub/Mr-Joe/smart-energy-monitor-based-on-arduino-05f042](https://create.arduino.cc/projecthub/Mr-Joe/smart-energy-monitor-based-on-arduino-05f042) - 主要语言:Arduino - 技术知识:Arduino ## Robot for supercool indoor navigation [https://create.arduino.cc/projecthub/team-oblu/robot-for-supercool-indoor-navigation-95047f](https://create.arduino.cc/projecthub/team-oblu/robot-for-supercool-indoor-navigation-95047f) - 主要语言:Arduino - 技术知识:Arduino ## IoT-Based Smart Street Light System [https://create.arduino.cc/projecthub/sagnik2017ghosh/iot-based-smart-street-light-system-8e9929](https://create.arduino.cc/projecthub/sagnik2017ghosh/iot-based-smart-street-light-system-8e9929) - 主要语言:Arduino - 技术知识:Arduino ## Arduino and Addressable LED [https://create.arduino.cc/projecthub/talofer99/arduino-and-addressable-led-b8403f](https://create.arduino.cc/projecthub/talofer99/arduino-and-addressable-led-b8403f) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Air Quality Monitor with DSM501A Sensor [https://create.arduino.cc/projecthub/mircemk/arduino-air-quality-monitor-with-dsm501a-sensor-b4f8fc](https://create.arduino.cc/projecthub/mircemk/arduino-air-quality-monitor-with-dsm501a-sensor-b4f8fc) - 主要语言:Arduino - 技术知识:Arduino ## Kaleidoscope Infinity Mirror [https://create.arduino.cc/projecthub/Lucas_Ainsworth/kaleidoscope-infinity-mirror-bdcd36](https://create.arduino.cc/projecthub/Lucas_Ainsworth/kaleidoscope-infinity-mirror-bdcd36) - 主要语言:Arduino - 技术知识:Arduino ## Measure Any AC Current with ACS712 [https://create.arduino.cc/projecthub/SurtrTech/measure-any-ac-current-with-acs712-70aa85](https://create.arduino.cc/projecthub/SurtrTech/measure-any-ac-current-with-acs712-70aa85) - 主要语言:Arduino - 技术知识:Arduino ## Local and Remote Programmable Robotic Arm [https://create.arduino.cc/projecthub/mjrobot/local-and-remote-programmable-robotic-arm-f6ba98](https://create.arduino.cc/projecthub/mjrobot/local-and-remote-programmable-robotic-arm-f6ba98) - 主要语言:Arduino - 技术知识:Arduino ## Arduino DMX-512 Tester Controller [https://create.arduino.cc/projecthub/daniel3514/arduino-dmx-512-tester-controller-977c89](https://create.arduino.cc/projecthub/daniel3514/arduino-dmx-512-tester-controller-977c89) - 主要语言:Arduino - 技术知识:Arduino ## How Easy Is It to Use a Thermistor?! [https://create.arduino.cc/projecthub/Marcazzan_M/how-easy-is-it-to-use-a-thermistor-e39321](https://create.arduino.cc/projecthub/Marcazzan_M/how-easy-is-it-to-use-a-thermistor-e39321) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - Control Arm Robot via Web [https://create.arduino.cc/projecthub/phpoc_man/arduino-control-arm-robot-via-web-379ef3](https://create.arduino.cc/projecthub/phpoc_man/arduino-control-arm-robot-via-web-379ef3) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Audio Reactive Desk Light [https://create.arduino.cc/projecthub/haziq-azri/arduino-audio-reactive-desk-light-7ef416](https://create.arduino.cc/projecthub/haziq-azri/arduino-audio-reactive-desk-light-7ef416) - 主要语言:Arduino - 技术知识:Arduino ## Smart Irrigation Controller [https://create.arduino.cc/projecthub/chuygen/smart-irrigation-controller-44ad38](https://create.arduino.cc/projecthub/chuygen/smart-irrigation-controller-44ad38) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Controlled Artificial Candle Lights [https://create.arduino.cc/projecthub/laserbrain/arduino-controlled-artificial-candle-lights-65a46d](https://create.arduino.cc/projecthub/laserbrain/arduino-controlled-artificial-candle-lights-65a46d) - 主要语言:Arduino - 技术知识:Arduino ## Measuring Solar Radiation with Arduino [https://create.arduino.cc/projecthub/jeffrey2/measuring-solar-radiation-with-arduino-f741ac](https://create.arduino.cc/projecthub/jeffrey2/measuring-solar-radiation-with-arduino-f741ac) - 主要语言:Arduino - 技术知识:Arduino ## Home Plant Watering System [https://create.arduino.cc/projecthub/sfrwmaker/home-plant-watering-system-64550a](https://create.arduino.cc/projecthub/sfrwmaker/home-plant-watering-system-64550a) - 主要语言:Arduino - 技术知识:Arduino ## Life Band - Health Assistant For Elderly [https://create.arduino.cc/projecthub/user06254/life-band-health-assistant-for-elderly-70e6f6](https://create.arduino.cc/projecthub/user06254/life-band-health-assistant-for-elderly-70e6f6) - 主要语言:Arduino - 技术知识:Arduino ## DIY Arduino + GY-906 Infrared Thermometer [https://create.arduino.cc/projecthub/hardyedela/diy-arduino-gy-906-infrared-thermometer-5881aa](https://create.arduino.cc/projecthub/hardyedela/diy-arduino-gy-906-infrared-thermometer-5881aa) - 主要语言:Arduino - 技术知识:Arduino ## 7-Segment Clock with Arduino Nano + DS3231 + LDR [https://create.arduino.cc/projecthub/ingo-lohs/7-segment-clock-with-arduino-nano-ds3231-ldr-286f4b](https://create.arduino.cc/projecthub/ingo-lohs/7-segment-clock-with-arduino-nano-ds3231-ldr-286f4b) - 主要语言:Arduino - 技术知识:Arduino ## EasyFFT: Fast Fourier Transform (FFT) for Arduino [https://create.arduino.cc/projecthub/abhilashpatel121/easyfft-fast-fourier-transform-fft-for-arduino-9d2677](https://create.arduino.cc/projecthub/abhilashpatel121/easyfft-fast-fourier-transform-fft-for-arduino-9d2677) - 主要语言:Arduino - 技术知识:Arduino ## Frequency and Duty Cycle Measurement Using Arduino [https://create.arduino.cc/projecthub/ambhatt/frequency-and-duty-cycle-measurement-using-arduino-1e4896](https://create.arduino.cc/projecthub/ambhatt/frequency-and-duty-cycle-measurement-using-arduino-1e4896) - 主要语言:Arduino - 技术知识:Arduino ## Turn your RC Car to Bluetooth RC car [https://create.arduino.cc/projecthub/GeekRex/turn-your-rc-car-to-bluetooth-rc-car-1b0689](https://create.arduino.cc/projecthub/GeekRex/turn-your-rc-car-to-bluetooth-rc-car-1b0689) - 主要语言:Arduino - 技术知识:Arduino ## Heart Rate Monitor (Wearable and Wireless Using ECG) [https://create.arduino.cc/projecthub/aka3d6/heart-rate-monitor-wearable-and-wireless-using-ecg-e96dce](https://create.arduino.cc/projecthub/aka3d6/heart-rate-monitor-wearable-and-wireless-using-ecg-e96dce) - 主要语言:Arduino - 技术知识:Arduino ## Morse Code Communication Using Arduino [https://create.arduino.cc/projecthub/Jalal_Mansoori/morse-code-communication-using-arduino-f339c0](https://create.arduino.cc/projecthub/Jalal_Mansoori/morse-code-communication-using-arduino-f339c0) - 主要语言:Arduino - 技术知识:Arduino ## GPS Datalogger, Spatial Analysis, and Azure IoT Hub. [https://create.arduino.cc/projecthub/ShawnCruise/gps-datalogger-spatial-analysis-and-azure-iot-hub-072956](https://create.arduino.cc/projecthub/ShawnCruise/gps-datalogger-spatial-analysis-and-azure-iot-hub-072956) - 主要语言:Arduino - 技术知识:Arduino ## Water Leakage Detector and Valve Control [https://create.arduino.cc/projecthub/ThereIsNoTry/water-leakage-detector-and-valve-control-f45048](https://create.arduino.cc/projecthub/ThereIsNoTry/water-leakage-detector-and-valve-control-f45048) - 主要语言:Arduino - 技术知识:Arduino ## Controlling an Arduino from a Pi3 using I2C [https://create.arduino.cc/projecthub/aardweeno/controlling-an-arduino-from-a-pi3-using-i2c-59817b](https://create.arduino.cc/projecthub/aardweeno/controlling-an-arduino-from-a-pi3-using-i2c-59817b) - 主要语言:Arduino - 技术知识:Arduino ## Control Arduino Robot Arm with Android App [https://create.arduino.cc/projecthub/slantconcepts/control-arduino-robot-arm-with-android-app-1c0d96](https://create.arduino.cc/projecthub/slantconcepts/control-arduino-robot-arm-with-android-app-1c0d96) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/SurtrTech/display-bmp-pictures-from-sd-card-on-tft-lcd-shield-f3074c) - 主要语言:Arduino - 技术知识:Arduino ## Smart Door with Face Unlock [https://create.arduino.cc/projecthub/divinsmathew/smart-door-with-face-unlock-273e06](https://create.arduino.cc/projecthub/divinsmathew/smart-door-with-face-unlock-273e06) - 主要语言:Arduino - 技术知识:Arduino ## Control a 7 Segment Display with a keypad! [https://create.arduino.cc/projecthub/Isaac100/control-a-7-segment-display-with-a-keypad-4ca90a](https://create.arduino.cc/projecthub/Isaac100/control-a-7-segment-display-with-a-keypad-4ca90a) - 主要语言:Arduino - 技术知识:Arduino ## Keypad Door Lock with Changeable Code [https://create.arduino.cc/projecthub/SurtrTech/keypad-door-lock-with-changeable-code-468b15](https://create.arduino.cc/projecthub/SurtrTech/keypad-door-lock-with-changeable-code-468b15) - 主要语言:Arduino - 技术知识:Arduino ## MKR1000 Temp and Humidity Sensor [https://create.arduino.cc/projecthub/doncoleman/mkr1000-temp-and-humidity-sensor-8f22ed](https://create.arduino.cc/projecthub/doncoleman/mkr1000-temp-and-humidity-sensor-8f22ed) - 主要语言:Arduino - 技术知识:Arduino ## A Lightning Detector for Arduino [https://create.arduino.cc/projecthub/runtimeprojects/a-lightning-detector-for-arduino-9f679c](https://create.arduino.cc/projecthub/runtimeprojects/a-lightning-detector-for-arduino-9f679c) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Marble Maze Labyrinth [https://create.arduino.cc/projecthub/AhmedAzouz/arduino-marble-maze-labyrinth-bd9ea6](https://create.arduino.cc/projecthub/AhmedAzouz/arduino-marble-maze-labyrinth-bd9ea6) - 主要语言:Arduino - 技术知识:Arduino ## Morse Code Transceiver [https://create.arduino.cc/projecthub/achindra/morse-code-transceiver-b5ae38](https://create.arduino.cc/projecthub/achindra/morse-code-transceiver-b5ae38) - 主要语言:Arduino - 技术知识:Arduino ## RFID Based Attendance System Using Arduino [https://create.arduino.cc/projecthub/highvoltages/rfid-based-attendance-system-using-arduino-f3602f](https://create.arduino.cc/projecthub/highvoltages/rfid-based-attendance-system-using-arduino-f3602f) - 主要语言:Arduino - 技术知识:Arduino ## HID Prox RFID to Arduino [https://create.arduino.cc/projecthub/shakataganai/hid-prox-rfid-to-arduino-bd9b8a](https://create.arduino.cc/projecthub/shakataganai/hid-prox-rfid-to-arduino-bd9b8a) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/PSoC_Rocks/hacking-qualcomm-quick-charge-qc-2-0-3-0-with-attiny85-b7627d) - 主要语言:Arduino - 技术知识:Arduino ## IoT Using ESP8266-01 and Arduino [https://create.arduino.cc/projecthub/ahmedibrrahim/iot-using-esp8266-01-and-arduino-afa35e](https://create.arduino.cc/projecthub/ahmedibrrahim/iot-using-esp8266-01-and-arduino-afa35e) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Arduino_Genuino/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core-a9f365) - 主要语言:Arduino - 技术知识:Arduino ## Eye Motion Tracking Using Infrared Sensor [https://create.arduino.cc/projecthub/H0meMadeGarbage/eye-motion-tracking-using-infrared-sensor-227467](https://create.arduino.cc/projecthub/H0meMadeGarbage/eye-motion-tracking-using-infrared-sensor-227467) - 主要语言:Arduino - 技术知识:Arduino ## Arduino-Based Automatic Guitar Tuner [https://create.arduino.cc/projecthub/metrowest_aug/arduino-based-automatic-guitar-tuner-2093fe](https://create.arduino.cc/projecthub/metrowest_aug/arduino-based-automatic-guitar-tuner-2093fe) - 主要语言:Arduino - 技术知识:Arduino ## RFID Door Unlock [https://create.arduino.cc/projecthub/keebie81/rfid-door-unlock-fa66ea](https://create.arduino.cc/projecthub/keebie81/rfid-door-unlock-fa66ea) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Heathen_Hacks-v2/rfid-relay-rfid-door-lock-code-rfid-pc-switch-eee1d1) - 主要语言:Arduino - 技术知识:Arduino ## Countdown Timer [https://create.arduino.cc/projecthub/peejster/countdown-timer-375682](https://create.arduino.cc/projecthub/peejster/countdown-timer-375682) - 主要语言:Arduino - 技术知识:Arduino ## MKRFox1200 Weather Station [https://create.arduino.cc/projecthub/antoine-de-chassey/mkrfox1200-weather-station-255543](https://create.arduino.cc/projecthub/antoine-de-chassey/mkrfox1200-weather-station-255543) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Nano: Control 2 Stepper Motors With Joystick [https://create.arduino.cc/projecthub/mitov/arduino-nano-control-2-stepper-motors-with-joystick-52b391](https://create.arduino.cc/projecthub/mitov/arduino-nano-control-2-stepper-motors-with-joystick-52b391) - 主要语言:Arduino - 技术知识:Arduino ## Windows IOT - Automate your power outlets [https://create.arduino.cc/projecthub/iddi/windows-iot-automate-your-power-outlets-b1ba1e](https://create.arduino.cc/projecthub/iddi/windows-iot-automate-your-power-outlets-b1ba1e) - 主要语言:Arduino - 技术知识:Arduino ## Talking Smart Glass for the Blind [https://create.arduino.cc/projecthub/B45i/talking-smart-glass-for-the-blind-87d31e](https://create.arduino.cc/projecthub/B45i/talking-smart-glass-for-the-blind-87d31e) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/electropeak/smart-door-lock-using-wifi-login-page-by-arduino-esp8266-e13825) - 主要语言:Arduino - 技术知识:Arduino ## Sienci Mill One - Simple and Affordable Desktop CNC [https://create.arduino.cc/projecthub/sienci_labs/sienci-mill-one-simple-and-affordable-desktop-cnc-a18278](https://create.arduino.cc/projecthub/sienci_labs/sienci-mill-one-simple-and-affordable-desktop-cnc-a18278) - 主要语言:Arduino - 技术知识:Arduino ## Domotic Greenhouse [https://create.arduino.cc/projecthub/cormaz/domotic-greenhouse-71573f](https://create.arduino.cc/projecthub/cormaz/domotic-greenhouse-71573f) - 主要语言:Arduino - 技术知识:Arduino ## DIY Retro Look FM Radio with TEA5767 Module [https://create.arduino.cc/projecthub/mircemk/diy-retro-look-fm-radio-with-tea5767-module-370b88](https://create.arduino.cc/projecthub/mircemk/diy-retro-look-fm-radio-with-tea5767-module-370b88) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - Web-Based Two-Player Game [https://create.arduino.cc/projecthub/khanhhs/arduino-web-based-two-player-game-584daa](https://create.arduino.cc/projecthub/khanhhs/arduino-web-based-two-player-game-584daa) - 主要语言:Arduino - 技术知识:Arduino ## Robot Arm with Controller [https://create.arduino.cc/projecthub/H0meMadeGarbage/robot-arm-with-controller-2038df](https://create.arduino.cc/projecthub/H0meMadeGarbage/robot-arm-with-controller-2038df) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Prince_Matthew/how-to-read-temperature-and-humidity-on-blynk-with-dht11-f5fbae) - 主要语言:Arduino - 技术知识:Arduino ## Doorbell [https://create.arduino.cc/projecthub/Arduino_Genuino/doorbell-36646c](https://create.arduino.cc/projecthub/Arduino_Genuino/doorbell-36646c) - 主要语言:Arduino - 技术知识:Arduino ## Gyroscope Fun with NeoPixel Ring [https://create.arduino.cc/projecthub/danionescu/gyroscope-fun-with-neopixel-ring-3a0b84](https://create.arduino.cc/projecthub/danionescu/gyroscope-fun-with-neopixel-ring-3a0b84) - 主要语言:Arduino - 技术知识:Arduino ## Stair Climbing Robot [https://create.arduino.cc/projecthub/jjj/stair-climbing-robot-ad2203](https://create.arduino.cc/projecthub/jjj/stair-climbing-robot-ad2203) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/13766/super-easy-to-build-1sheeld-2-wheel-drive-robot-cb9b66) - 主要语言:Arduino - 技术知识:Arduino ## DIY Idea with RFID [https://create.arduino.cc/projecthub/Raushancpr/diy-idea-with-rfid-89e41d](https://create.arduino.cc/projecthub/Raushancpr/diy-idea-with-rfid-89e41d) - 主要语言:Arduino - 技术知识:Arduino ## Portable Electrocardiograph (ECG) [https://create.arduino.cc/projecthub/warcraft12321/portable-electrocardiograph-ecg-5a77fd](https://create.arduino.cc/projecthub/warcraft12321/portable-electrocardiograph-ecg-5a77fd) - 主要语言:Arduino - 技术知识:Arduino ## rfid attendance system using arduino with GSM [https://create.arduino.cc/projecthub/sarful/rfid-attendance-system-using-arduino-with-gsm-1535c4](https://create.arduino.cc/projecthub/sarful/rfid-attendance-system-using-arduino-with-gsm-1535c4) - 主要语言:Arduino - 技术知识:Arduino ## Arduino WhatsApp Messages - Send WhatsApp Messages Using Pi [https://create.arduino.cc/projecthub/highvoltages/arduino-whatsapp-messages-send-whatsapp-messages-using-pi-605f52](https://create.arduino.cc/projecthub/highvoltages/arduino-whatsapp-messages-send-whatsapp-messages-using-pi-605f52) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Apple Watch [https://create.arduino.cc/projecthub/Karlstrom/arduino-apple-watch-4879aa](https://create.arduino.cc/projecthub/Karlstrom/arduino-apple-watch-4879aa) - 主要语言:Arduino - 技术知识:Arduino ## Simple and Smart Air Purifier System [https://create.arduino.cc/projecthub/aaronkow/simple-and-smart-air-purifier-system-8604ab](https://create.arduino.cc/projecthub/aaronkow/simple-and-smart-air-purifier-system-8604ab) - 主要语言:Arduino - 技术知识:Arduino ## Autobot Using Lego NXT Motors and Sensor [https://create.arduino.cc/projecthub/mtashiro/autobot-using-lego-nxt-motors-and-sensor-56ad60](https://create.arduino.cc/projecthub/mtashiro/autobot-using-lego-nxt-motors-and-sensor-56ad60) - 主要语言:Arduino - 技术知识:Arduino ## Controlling toy quadcopter(s) with Arduino [https://create.arduino.cc/projecthub/geekphysical/controlling-toy-quadcopter-s-with-arduino-6b4dcf](https://create.arduino.cc/projecthub/geekphysical/controlling-toy-quadcopter-s-with-arduino-6b4dcf) - 主要语言:Arduino - 技术知识:Arduino ## I2S Theremin [https://create.arduino.cc/projecthub/Arduino_Genuino/i2s-theremin-cec47a](https://create.arduino.cc/projecthub/Arduino_Genuino/i2s-theremin-cec47a) - 主要语言:Arduino - 技术知识:Arduino ## Nano 33 IoT + EC/pH/ORP + WebAPK [https://create.arduino.cc/projecthub/uFire/nano-33-iot-ec-ph-orp-webapk-82ab54](https://create.arduino.cc/projecthub/uFire/nano-33-iot-ec-ph-orp-webapk-82ab54) - 主要语言:Arduino - 技术知识:Arduino ## M1 Rover [https://create.arduino.cc/projecthub/AhmedAzouz/m1-rover-362c05](https://create.arduino.cc/projecthub/AhmedAzouz/m1-rover-362c05) - 主要语言:Arduino - 技术知识:Arduino ## Beautifully Finished Humidity and Temperature Sensor [https://create.arduino.cc/projecthub/WickedMakers/beautifully-finished-humidity-and-temperature-sensor-87ada5](https://create.arduino.cc/projecthub/WickedMakers/beautifully-finished-humidity-and-temperature-sensor-87ada5) - 主要语言:Arduino - 技术知识:Arduino ## PC Controlled Robotic Arm [https://create.arduino.cc/projecthub/AhmedAzouz/pc-controlled-robotic-arm-841a41](https://create.arduino.cc/projecthub/AhmedAzouz/pc-controlled-robotic-arm-841a41) - 主要语言:Arduino - 技术知识:Arduino ## DIY Arduino Fire Alarm System At Home [https://create.arduino.cc/projecthub/mrmodder/diy-arduino-fire-alarm-system-at-home-c70970](https://create.arduino.cc/projecthub/mrmodder/diy-arduino-fire-alarm-system-at-home-c70970) - 主要语言:Arduino - 技术知识:Arduino ## Snake LED Matrix Game [https://create.arduino.cc/projecthub/arduino-bro/snake-led-matrix-game-1c7222](https://create.arduino.cc/projecthub/arduino-bro/snake-led-matrix-game-1c7222) - 主要语言:Arduino - 技术知识:Arduino ## Water Softener [https://create.arduino.cc/projecthub/moty/water-softener-507b67](https://create.arduino.cc/projecthub/moty/water-softener-507b67) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ArduPic/how-to-modify-analog-output-range-of-arduino-due-6edfb5) - 主要语言:Arduino - 技术知识:Arduino ## Tito - Arduino UNO 3D-printed robot [https://create.arduino.cc/projecthub/cparrapa/tito-arduino-uno-3d-printed-robot-9f7777](https://create.arduino.cc/projecthub/cparrapa/tito-arduino-uno-3d-printed-robot-9f7777) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/svelde/control-arduino-rover-using-firmata-and-xbox-one-controller-70c51a) - 主要语言:Arduino - 技术知识:Arduino ## In Servo We Trust! [https://create.arduino.cc/projecthub/Maya/in-servo-we-trust-6725f1](https://create.arduino.cc/projecthub/Maya/in-servo-we-trust-6725f1) - 主要语言:Arduino - 技术知识:Arduino ## An Urban Plant Watering Solution [https://create.arduino.cc/projecthub/james-yu/an-urban-plant-watering-solution-43a6eb](https://create.arduino.cc/projecthub/james-yu/an-urban-plant-watering-solution-43a6eb) - 主要语言:Arduino - 技术知识:Arduino ## How to Make an IR Sensor [https://create.arduino.cc/projecthub/Manikantsavadatti/how-to-make-an-ir-sensor-66786b](https://create.arduino.cc/projecthub/Manikantsavadatti/how-to-make-an-ir-sensor-66786b) - 主要语言:Arduino - 技术知识:Arduino ## Height Measure using VL53L0X [https://create.arduino.cc/projecthub/H0meMadeGarbage/height-measure-using-vl53l0x-aa4f4c](https://create.arduino.cc/projecthub/H0meMadeGarbage/height-measure-using-vl53l0x-aa4f4c) - 主要语言:Arduino - 技术知识:Arduino ## How to Hack IR Remotes [https://create.arduino.cc/projecthub/tatco/how-to-hack-ir-remotes-2d8b18](https://create.arduino.cc/projecthub/tatco/how-to-hack-ir-remotes-2d8b18) - 主要语言:Arduino - 技术知识:Arduino ## Enter the house like a Sith Lord [https://create.arduino.cc/projecthub/peejster/enter-the-house-like-a-sith-lord-337d91](https://create.arduino.cc/projecthub/peejster/enter-the-house-like-a-sith-lord-337d91) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/iot-design-shop/fizviz-large-scale-physical-visualizations-for-your-stats-03249d) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/mitov/gps-location-display-with-gps-and-tft-display-shields-ed38ec) - 主要语言:Arduino - 技术知识:Arduino ## Security System Using Arduino Bluetooth Camera [https://create.arduino.cc/projecthub/amrmostaafaa/security-system-using-arduino-bluetooth-camera-616c4d](https://create.arduino.cc/projecthub/amrmostaafaa/security-system-using-arduino-bluetooth-camera-616c4d) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Uno Autonomous Car [https://create.arduino.cc/projecthub/hannahmcneelyy/arduino-uno-autonomous-car-c45fd1](https://create.arduino.cc/projecthub/hannahmcneelyy/arduino-uno-autonomous-car-c45fd1) - 主要语言:Arduino - 技术知识:Arduino ## Micro Soldering Station [https://create.arduino.cc/projecthub/paul0/micro-soldering-station-8f1d8f](https://create.arduino.cc/projecthub/paul0/micro-soldering-station-8f1d8f) - 主要语言:Arduino - 技术知识:Arduino ## Temperature Controled Charcoal Smoker [https://create.arduino.cc/projecthub/dbarbee/temperature-controled-charcoal-smoker-58db49](https://create.arduino.cc/projecthub/dbarbee/temperature-controled-charcoal-smoker-58db49) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/Plastibots/iot-garage-door-monitor-opener-with-finger-print-scanner-f16e3f) - 主要语言:Arduino - 技术知识:Arduino ## Light Control Using Arduino and Amazon Alexa [https://create.arduino.cc/projecthub/rajesh3/light-control-using-arduino-and-amazon-alexa-4de729](https://create.arduino.cc/projecthub/rajesh3/light-control-using-arduino-and-amazon-alexa-4de729) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Amiga Floppy Disk Reader (V1) [https://create.arduino.cc/projecthub/robsmithdev/arduino-amiga-floppy-disk-reader-v1-485582](https://create.arduino.cc/projecthub/robsmithdev/arduino-amiga-floppy-disk-reader-v1-485582) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/ahmadordi/clock-without-using-rtc-in-arduino-with-temperature-and-humi-58e76e) - 主要语言:Arduino - 技术知识:Arduino ## TV remote controlled Light and Fan [https://create.arduino.cc/projecthub/rishabh411/tv-remote-controlled-light-and-fan-f4bffc](https://create.arduino.cc/projecthub/rishabh411/tv-remote-controlled-light-and-fan-f4bffc) - 主要语言:Arduino - 技术知识:Arduino ## DIY Auto Voice Record and Playback [https://create.arduino.cc/projecthub/gadgetprogrammers/diy-auto-voice-record-and-playback-7a47d7](https://create.arduino.cc/projecthub/gadgetprogrammers/diy-auto-voice-record-and-playback-7a47d7) - 主要语言:Arduino - 技术知识:Arduino ## WebServerBlink Using Arduino Uno WiFi [https://create.arduino.cc/projecthub/Salmanfarisvp/webserverblink-using-arduino-uno-wifi-bd5c59](https://create.arduino.cc/projecthub/Salmanfarisvp/webserverblink-using-arduino-uno-wifi-bd5c59) - 主要语言:Arduino - 技术知识:Arduino ## Minimal MIDI Drum Kit with 3D Printer [https://create.arduino.cc/projecthub/ryokosaka/minimal-midi-drum-kit-with-3d-printer-5633d2](https://create.arduino.cc/projecthub/ryokosaka/minimal-midi-drum-kit-with-3d-printer-5633d2) - 主要语言:Arduino - 技术知识:Arduino ## Arduino and Android Based Password Protected Door Lock [https://create.arduino.cc/projecthub/taifur/arduino-and-android-based-password-protected-door-lock-36887d](https://create.arduino.cc/projecthub/taifur/arduino-and-android-based-password-protected-door-lock-36887d) - 主要语言:Arduino - 技术知识:Arduino ## Control Your Light Switch with Your Smartphone [https://create.arduino.cc/projecthub/alasdair-allan/control-your-light-switch-with-your-smartphone-a74c24](https://create.arduino.cc/projecthub/alasdair-allan/control-your-light-switch-with-your-smartphone-a74c24) - 主要语言:Arduino - 技术知识:Arduino ## Two Mode Robot Controlling through Android and Windowsphone8 [https://create.arduino.cc/projecthub/Anas/two-mode-robot-controlling-through-android-and-windowsphone8-8c7564](https://create.arduino.cc/projecthub/Anas/two-mode-robot-controlling-through-android-and-windowsphone8-8c7564) - 主要语言:Arduino - 技术知识:Arduino ## RGB Backlight + MSGEQ7 Audio Visualizer [https://create.arduino.cc/projecthub/PhilKey/rgb-backlight-msgeq7-audio-visualizer-e0054e](https://create.arduino.cc/projecthub/PhilKey/rgb-backlight-msgeq7-audio-visualizer-e0054e) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/SurtrTech/control-dual-axis-fpv-camera-cradle-with-joystick-module-6ee514) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Modules - Flame Sensor [https://create.arduino.cc/projecthub/SURYATEJA/arduino-modules-flame-sensor-6322fb](https://create.arduino.cc/projecthub/SURYATEJA/arduino-modules-flame-sensor-6322fb) - 主要语言:Arduino - 技术知识:Arduino ## Arduino Color Mixer [https://create.arduino.cc/projecthub/shakram02/arduino-color-mixer-d6264a](https://create.arduino.cc/projecthub/shakram02/arduino-color-mixer-d6264a) - 主要语言:Arduino - 技术知识:Arduino ## Automatic 360° Photography Turntable [https://create.arduino.cc/projecthub/circuito-io-team/automatic-360-photography-turntable-586b1e](https://create.arduino.cc/projecthub/circuito-io-team/automatic-360-photography-turntable-586b1e) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Controlled Pick And Place Robot [https://create.arduino.cc/projecthub/ahmedibrrahim/bluetooth-controlled-pick-and-place-robot-992d06](https://create.arduino.cc/projecthub/ahmedibrrahim/bluetooth-controlled-pick-and-place-robot-992d06) - 主要语言:Arduino - 技术知识:Arduino ## Clean Water AI [https://create.arduino.cc/projecthub/clean-water-ai/clean-water-ai-e40806](https://create.arduino.cc/projecthub/clean-water-ai/clean-water-ai-e40806) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - Web-Based Car Race Brick Game [https://create.arduino.cc/projecthub/Homer/arduino-web-based-car-race-brick-game-cb1b30](https://create.arduino.cc/projecthub/Homer/arduino-web-based-car-race-brick-game-cb1b30) - 主要语言:Arduino - 技术知识:Arduino ## Intelligent Charger for 9V NiMH Rechargeable Batteries V1 [https://create.arduino.cc/projecthub/aleksand1975/intelligent-charger-for-9v-nimh-rechargeable-batteries-v1-61cbd6](https://create.arduino.cc/projecthub/aleksand1975/intelligent-charger-for-9v-nimh-rechargeable-batteries-v1-61cbd6) - 主要语言:Arduino - 技术知识:Arduino ## Homemade Claw Machine [https://create.arduino.cc/projecthub/-MMM-/homemade-claw-machine-0f26aa](https://create.arduino.cc/projecthub/-MMM-/homemade-claw-machine-0f26aa) - 主要语言:Arduino - 技术知识:Arduino ## Really Homemade Oximeter Sensor [https://create.arduino.cc/projecthub/giulio-pons/really-homemade-oximeter-sensor-7cf6a1](https://create.arduino.cc/projecthub/giulio-pons/really-homemade-oximeter-sensor-7cf6a1) - 主要语言:Arduino - 技术知识:Arduino ## CNC (Mostly 3D Printed) [https://create.arduino.cc/projecthub/jweers1/cnc-mostly-3d-printed-0f3613](https://create.arduino.cc/projecthub/jweers1/cnc-mostly-3d-printed-0f3613) - 主要语言:Arduino - 技术知识:Arduino ## Alexa Controlled LEDs Through Arduino Yún [https://create.arduino.cc/projecthub/ben-eagan/alexa-controlled-leds-through-arduino-yun-ac1171](https://create.arduino.cc/projecthub/ben-eagan/alexa-controlled-leds-through-arduino-yun-ac1171) - 主要语言:Arduino - 技术知识:Arduino ## Arduino - Take Picture - Upload to Google Drive [https://create.arduino.cc/projecthub/phpoc_man/arduino-take-picture-upload-to-google-drive-2d1cd3](https://create.arduino.cc/projecthub/phpoc_man/arduino-take-picture-upload-to-google-drive-2d1cd3) - 主要语言:Arduino - 技术知识:Arduino ## 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](https://create.arduino.cc/projecthub/nickthegreek82/arduino-menu-on-a-nokia-5110-lcd-using-a-rotary-encoder-f62f0f) - 主要语言:Arduino - 技术知识:Arduino ## Turn Lights On When Approaching Home [https://create.arduino.cc/projecthub/andreiflorian/turn-lights-on-when-approaching-home-2634da](https://create.arduino.cc/projecthub/andreiflorian/turn-lights-on-when-approaching-home-2634da) - 主要语言:Arduino - 技术知识:Arduino ## Bluetooth Based Home Automation [https://create.arduino.cc/projecthub/brink-io/bluetooth-based-home-automation-6cb613](https://create.arduino.cc/projecthub/brink-io/bluetooth-based-home-automation-6cb613) - 主要语言:Arduino - 技术知识:Arduino ## Rocky Rover: Robotic Vision System PixyCam & Arduino 101 [https://create.arduino.cc/projecthub/RONDAGDAG/rocky-rover-robotic-vision-system-pixycam-arduino-101-bd16f0](https://create.arduino.cc/projecthub/RONDAGDAG/rocky-rover-robotic-vision-system-pixycam-arduino-101-bd16f0) - 主要语言:Arduino - 技术知识:Arduino ## Smart Humidifier [https://create.arduino.cc/projecthub/taifur/smart-humidifier-dac66f](https://create.arduino.cc/projecthub/taifur/smart-humidifier-dac66f) - 主要语言:Arduino - 技术知识:Arduino ## DIY Plant Moisture Sensor [https://create.arduino.cc/projecthub/millerman4487/diy-plant-moisture-sensor-474543](https://create.arduino.cc/projecthub/millerman4487/diy-plant-moisture-sensor-474543) - 主要语言:Arduino - 技术知识:Arduino ## Jamstack ecommerce site with Gatsby & Stripe Checkout [https://howtocode.io/jamstack-gatsby-stripe-ecommerce](https://howtocode.io/jamstack-gatsby-stripe-ecommerce) - 主要语言:Javascript - 技术知识:Gatsby, Stripe, Vercel, Jamstack ## Jamstack membership site with Eleventy & Memberstack [https://howtocode.io/jamstack-eleventy-memberstack](https://howtocode.io/jamstack-eleventy-memberstack) - 主要语言:Javascript - 技术知识:Eleventy, Surge, Jamstack ## Jamstack blog with Hugo & Netlify [https://howtocode.io/jamstack-hugo-netlify-zapier](https://howtocode.io/jamstack-hugo-netlify-zapier) - 主要语言:Javascript - 技术知识:Hugo, Netlify, Zapier, Jamstack ## Build a Travel Site with Tailwind CSS [https://howtocode.io/tutorials/tailwind-css-travel-site](https://howtocode.io/tutorials/tailwind-css-travel-site) - 主要语言:HTML - 技术知识:HTML, CSS, Tailwind ## Create a Roguelike game in C++ and Unreal Engine [https://www.tomlooman.com/stanford-cs193u/](https://www.tomlooman.com/stanford-cs193u/) - 主要语言:C++ - 技术知识:C++, Unreal Engine ## Make a GameBoy Advance game [http://coranac.com/tonc/text/](http://coranac.com/tonc/text/) - 主要语言:C/C++ - 技术知识:C/C++, GameBoy ## Learn C/C++ by making you own game engine [https://www.3dgep.com/cpp-fast-track-1-getting-started/](https://www.3dgep.com/cpp-fast-track-1-getting-started/) - 主要语言:C/C++ - 技术知识:C/C++, OpenGL ## Advanced Unity tutorials to learn about games and graphics [https://catlikecoding.com/unity/tutorials/](https://catlikecoding.com/unity/tutorials/) - 主要语言:C# - 技术知识:C#, Unity, CG ## Build your own JIRA with Rust (Rust London Code Dojo) [https://github.com/LukeMathWalker/build-your-own-jira-with-rust](https://github.com/LukeMathWalker/build-your-own-jira-with-rust) - 主要语言:Rust - 技术知识:Rust ## A Jira clone built with Vuejs & Nodejs/Graphql [https://github.com/Datlyfe/jira_clone](https://github.com/Datlyfe/jira_clone) - 主要语言:Javascript - 技术知识:Vue, NodeJS, GraphQL ## Rebuilding Git in Ruby [https://thoughtbot.com/blog/rebuilding-git-in-ruby](https://thoughtbot.com/blog/rebuilding-git-in-ruby) - 主要语言:Ruby - 技术知识:Ruby, CVS