Files
project-based-learning/README.md

64 lines
4.0 KiB
Markdown
Raw Normal View History

2017-04-12 01:20:16 -04:00
# Project Based Learning
Learning by doing is important and more effective than plainly following a document. This repo collects various resources on the Internet on learning programming by doing a project
## Table of Contents:
2017-04-12 02:10:48 -04:00
* [C/C++](#cc)
2017-04-12 01:20:16 -04:00
* [JavaScript](#javascript)
* [Python](#python)
2017-04-12 01:59:52 -04:00
* [Go](#go)
* [Ruby](#ruby)
2017-04-12 01:53:16 -04:00
* [Android](#android)
2017-04-12 01:31:55 -04:00
* [Haskell](#haskell)
2017-04-12 02:19:02 -04:00
* [Rust](#rust)
2017-04-12 01:20:16 -04:00
## C/C++:
2017-04-12 01:20:16 -04:00
* [Write a Shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/)
* [Build Your Own Text Editor](http://viewsourcecode.org/snaptoken/kilo/)
* [Build Your Own Lisp](http://www.buildyourownlisp.com/)
2017-04-12 01:31:55 -04:00
* [Write an OS from scratch](https://github.com/tuhdo/os01)
* [How to Make Minecraft in C++/OpenGL](https://www.youtube.com/playlist?list=PLMZ_9w2XRxiZq1vfw1lrpCMRDufe2MKV_)
2017-04-12 01:20:16 -04:00
## JavaScript:
* [Create Serverless React.js Apps](http://serverless-stack.com/)
* [Create a Trello Clone](http://codeloveandboards.com/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1/)
* [Create a Charater Voting App with React, Node, MongoDB and SocketIO](http://sahatyalkabov.com/create-a-character-voting-app-using-react-nodejs-mongodb-and-socketio/)
* [Build a URL Shortener with Node, MongoDB and Hapi.js](https://www.codetuts.tech/build-a-url-shortener-node-hapi-js/?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more)
2017-04-12 01:53:16 -04:00
* [Build an Instagram Clone](https://hackhands.com/building-instagram-clone-angularjs-satellizer-nodejs-mongodb/)
* [How to Build a Web Framework in Less Than 20 Lines of Code](https://www.pubnub.com/blog/build-yourself-a-web-framework-in-less-than-20-lines-of-code/)
* Build a Serverless MERN Story App with Webtask.io
* [Part 1](!https://scotch.io/tutorials/build-a-serverless-mern-story-app-with-webtask-io-zero-to-deploy-1)
* [Part 2](!https://scotch.io/tutorials/build-a-serverless-mern-story-app-with-webtask-io-zero-to-deploy-2)
2017-04-12 01:20:16 -04:00
## Python:
* [Build a Reddit Bot](http://pythonforengineers.com/build-a-reddit-bot-part-1/)
* [How to Make a Reddit Bot - YouTube](https://www.youtube.com/watch?v=krTUf7BpTc0)
* [Build a Facebook Messenger Bot](https://blog.hartleybrody.com/fb-messenger-bot/)
2017-04-12 20:29:08 -04:00
* [Making a Reddit + Facebook Messenger Bot](https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/)
* [Build a Simple Interpreter](https://ruslanspivak.com/lsbasi-part1/)
* [Build a Microblog with Flask](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world)
* [Choose Your Own Adventure Presentations](https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html)
2017-04-12 01:31:55 -04:00
* [Mining Twitter Data with Python](https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/)
* [Write a NoSQL Database in Python](https://jeffknupp.com/blog/2014/09/01/what-is-a-nosql-database-learn-by-writing-one-in-python/)
* [Scrape a Website with Scrapy and MongoDB](https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/)
* [Build a Todo List with Flask and RethinkDB](https://realpython.com/blog/python/rethink-flask-a-simple-todo-list-powered-by-flask-and-rethinkdb/)
* [Building a Gas Pump Scanner with OpenCV/Python/iOS](https://hackernoon.com/building-a-gas-pump-scanner-with-opencv-python-ios-116fe6c9ae8b)
## Go:
* [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/)
2017-04-12 01:31:55 -04:00
## 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)
2017-04-12 01:53:16 -04:00
## Android:
2017-04-12 01:31:55 -04:00
## Haskell:
2017-04-12 02:19:02 -04:00
* [Write You a Haskell - Build a modern functional compiler](http://dev.stephendiehl.com/fun/)
2017-04-13 13:01:57 -04:00
* [Write Yourself a Scheme in 48 hours]()
2017-04-12 02:19:02 -04:00
## Rust:
* A Simple Web App in Rust
* [Part 1](http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-1/)
* [Part 2a](http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-2a/)
2017-04-13 13:01:57 -04:00
* [Part 2b](http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-2b/)
* [Write an OS in Rust](http://os.phil-opp.com/)