From a380263381ca25ed111fdc0b5ebbfded6d1e65e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 11:21:26 +0000 Subject: [PATCH] chore(link-rot): remove 11 confirmed-dead link(s), update 126 moved URL(s) --- README.md | 265 ++++++++++++++++++++++++++---------------------------- 1 file changed, 126 insertions(+), 139 deletions(-) diff --git a/README.md b/README.md index b5906c7e..9b290a4a 100644 --- a/README.md +++ b/README.md @@ -35,17 +35,16 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ## C/C++: - [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 14 on is written in C) -- [Memory Allocators 101 - Write a simple memory allocator](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) - [Write a Shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/) - [Write a FUSE Filesystem](https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/) -- [Build Your Own Text Editor](http://viewsourcecode.org/snaptoken/kilo/) -- [Build Your Own Lisp](http://www.buildyourownlisp.com/) +- [Build Your Own Text Editor](https://viewsourcecode.org/snaptoken/kilo/) +- [Build Your Own Lisp](https://buildyourownlisp.com/) - [How to Program an NES Game in C](https://nesdoug.com/) - [Write an OS from scratch](https://github.com/tuhdo/os01) - [How to create an OS from scratch ](https://github.com/cfenollosa/os-tutorial) - [Building a CHIP-8 Emulator](https://austinmorlan.com/posts/chip8_emulator/) -- [Beginning Game Programming with C++ and SDL](http://lazyfoo.net/tutorials/SDL/) -- [Implementing a Key-Value Store](http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/) +- [Beginning Game Programming with C++ and SDL](https://lazyfoo.net/tutorials/SDL/) +- [Implementing a Key-Value Store](https://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/) - Tiny 3D graphics projects - [Tiny Renderer or how OpenGL works: software rendering in 500 lines of code](https://github.com/ssloy/tinyrenderer/wiki) - [Understandable RayTracing in 256 lines of bare C++](https://github.com/ssloy/tinyraytracer/wiki) @@ -54,13 +53,12 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - Writing a minimal x86-64 JIT compiler in C++ - [Part 1](https://solarianprogrammer.com/2018/01/10/writing-minimal-x86-64-jit-compiler-cpp/) - [Part 2](https://solarianprogrammer.com/2018/01/12/writing-minimal-x86-64-jit-compiler-cpp-part-2/) -- [Build a Live Code-reloader Library for C++](http://howistart.org/posts/cpp/1/index.html) +- [Build a Live Code-reloader Library for C++](https://howistart.org/posts/cpp/1/index.html) - [Write a hash table in C](https://github.com/jamesroutley/write-a-hash-table) - [Let's Build a Simple Database](https://cstack.github.io/db_tutorial/) -- [Let's Write a Kernel](http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel) - [Write a Bootloader in C](http://3zanders.co.uk/2017/10/13/writing-a-bootloader/) - [Linux Container in 500 Lines of Code](https://blog.lizzie.io/linux-containers-in-500-loc.html) -- [Write Your Own Virtual Machine](https://justinmeiners.github.io/lc3-vm/) +- [Write Your Own Virtual Machine](https://www.jmeiners.com/lc3-vm/) - [Learning KVM - Implement Your Own Linux Kernel](https://david942j.blogspot.com/2018/10/note-learning-kvm-implement-your-own.html) - [Build Your Own Redis with C/C++](https://build-your-own.org/redis/) - Write a C compiler @@ -83,18 +81,18 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 3](http://nicktasios.nl/posts/space-invaders-from-scratch-part-3.html) - [Part 4](http://nicktasios.nl/posts/space-invaders-from-scratch-part-4.html) - [Part 5](http://nicktasios.nl/posts/space-invaders-from-scratch-part-5.html) -- [Tetris Tutorial in C++ Platform Independent](http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/) +- [Tetris Tutorial in C++ Platform Independent](https://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/) - Writing a Linux Debugger - - [Part 1: Setup](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/) - - [Part 2: Breakpoints](https://blog.tartanllama.xyz/writing-a-linux-debugger-breakpoints/) - - [Part 3: Registers and memory](https://blog.tartanllama.xyz/writing-a-linux-debugger-registers/) - - [Part 4: Elves and dwarves](https://blog.tartanllama.xyz/writing-a-linux-debugger-elf-dwarf/) - - [Part 5: Source and signals](https://blog.tartanllama.xyz/writing-a-linux-debugger-source-signal/) - - [Part 6: Source-level stepping](https://blog.tartanllama.xyz/writing-a-linux-debugger-dwarf-step/) - - [Part 7: Source-level breakpoints](https://blog.tartanllama.xyz/writing-a-linux-debugger-source-break/) - - [Part 8: Stack unwinding](https://blog.tartanllama.xyz/writing-a-linux-debugger-unwinding/) - - [Part 9: Handling variables](https://blog.tartanllama.xyz/writing-a-linux-debugger-variables/) - - [Part 10: Advanced topics](https://blog.tartanllama.xyz/writing-a-linux-debugger-advanced-topics/) + - [Part 1: Setup](https://tartanllama.xyz/writing-a-linux-debugger-setup/) + - [Part 2: Breakpoints](https://tartanllama.xyz/writing-a-linux-debugger-breakpoints/) + - [Part 3: Registers and memory](https://tartanllama.xyz/writing-a-linux-debugger-registers/) + - [Part 4: Elves and dwarves](https://tartanllama.xyz/writing-a-linux-debugger-elf-dwarf/) + - [Part 5: Source and signals](https://tartanllama.xyz/writing-a-linux-debugger-source-signal/) + - [Part 6: Source-level stepping](https://tartanllama.xyz/writing-a-linux-debugger-dwarf-step/) + - [Part 7: Source-level breakpoints](https://tartanllama.xyz/writing-a-linux-debugger-source-break/) + - [Part 8: Stack unwinding](https://tartanllama.xyz/writing-a-linux-debugger-unwinding/) + - [Part 9: Handling variables](https://tartanllama.xyz/writing-a-linux-debugger-variables/) + - [Part 10: Advanced topics](https://tartanllama.xyz/writing-a-linux-debugger-advanced-topics/) - Let's write a compiler - [Part 1: Introduction, selecting a language, and doing some planning](https://briancallahan.net/blog/20210814.html) - [Part 2: A lexer](https://briancallahan.net/blog/20210815.html) @@ -125,13 +123,13 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 6 - Callbacks, Promises and async/await](https://eli.thegreenplace.net/2018/concurrent-servers-part-6-callbacks-promises-and-asyncawait/) - MQTT Broker from scratch - - [Part 1 - The protocol](https://codepr.github.io/posts/sol-mqtt-broker) - - [Part 2 - Networking](https://codepr.github.io/posts/sol-mqtt-broker-p2) - - [Part 3 - Server](https://codepr.github.io/posts/sol-mqtt-broker-p3) - - [Part 4 - Data structures](https://codepr.github.io/posts/sol-mqtt-broker-p4) - - [Part 5 - Topic abstraction](https://codepr.github.io/posts/sol-mqtt-broker-p5) - - [Part 6 - Handlers](https://codepr.github.io/posts/sol-mqtt-broker-p6) - - [Bonus - Multithreading](https://codepr.github.io/posts/sol-mqtt-broker-bonus) + - [Part 1 - The protocol](https://codepr.github.io/posts/sol-mqtt-broker/) + - [Part 2 - Networking](https://codepr.github.io/posts/sol-mqtt-broker-p2/) + - [Part 3 - Server](https://codepr.github.io/posts/sol-mqtt-broker-p3/) + - [Part 4 - Data structures](https://codepr.github.io/posts/sol-mqtt-broker-p4/) + - [Part 5 - Topic abstraction](https://codepr.github.io/posts/sol-mqtt-broker-p5/) + - [Part 6 - Handlers](https://codepr.github.io/posts/sol-mqtt-broker-p6/) + - [Bonus - Multithreading](https://codepr.github.io/posts/sol-mqtt-broker-bonus/) - [Networking from Scratch](https://github.com/TanayK07/networking-from-scratch) ### OpenGL: @@ -151,46 +149,46 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Audio](https://learnopengl.com/In-Practice/2D-Game/Audio) - [Render text](https://learnopengl.com/In-Practice/2D-Game/Render-text) - [Final thoughts](https://learnopengl.com/In-Practice/2D-Game/Final-thoughts) -- [Handmade Hero](https://handmadehero.org) +- [Handmade Hero](https://mollyrocket.com/#handmade) - [How to Make Minecraft in C++/OpenGL](https://www.youtube.com/playlist?list=PLMZ_9w2XRxiZq1vfw1lrpCMRDufe2MKV_) (video) ## C#: -- [Learn C# By Building a Simple RPG Game](http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/) +- [Learn C# By Building a Simple RPG Game](https://scottlilly.com/learn-c-by-building-a-simple-rpg-index/) - [Create a Rogue-like game in C#](https://roguesharp.wordpress.com/) - [Create a Blank App with C# and Xamarin (work in progress)](https://www.intertech.com/Blog/xamarin-tutorial-part-1-create-a-blank-app/) -- [Build iOS Photo Library App with Xamarin and Visual Studio](https://www.raywenderlich.com/134049/building-ios-apps-with-xamarin-and-visual-studio) +- [Build iOS Photo Library App with Xamarin and Visual Studio](https://www.kodeco.com/1044-building-ios-apps-with-xamarin-and-visual-studio) - [Building the CoreWiki](https://www.youtube.com/playlist?list=PLVMqA0_8O85yC78I4Xj7z48ES48IQBa7p) This is a Wiki-style content management system that has been completely written in C# with ASP.NET Core and Razor Pages. You can find the source code [here](https://github.com/csharpfritz/CoreWiki). ## Clojure: -- [Build a Twitter Bot with Clojure](http://howistart.org/posts/clojure/1/index.html) +- [Build a Twitter Bot with Clojure](https://howistart.org/posts/clojure/1/index.html) - [Building a Spell-Checker](https://bernhardwenzel.com/articles/clojure-spellchecker/) - [Building a JIRA integration with Clojure & Atlassian Connect](https://hackernoon.com/building-a-jira-integration-with-clojure-atlassian-connect-506ebd112807) - [Prototyping with Clojure](https://github.com/aliaksandr-s/prototyping-with-clojure) -- [Tetris in ClojureScript](https://shaunlebron.github.io/t3tr0s-slides) +- [Tetris in ClojureScript](https://shaunlebron.github.io/t3tr0s-slides/) ## Dart: ### Flutter: -- [Amazon Clone with Admin Panel](https://youtu.be/O3nmP-lZAdg) -- [Food Delivery App](https://youtu.be/7dAt-JMSCVQ) -- [Google Docs Clone](https://youtu.be/0_GJ1w_iG44) -- [Instagram Clone](https://youtu.be/mEPm9w5QlJM) -- [Multiplayer TicTacToe Game](https://youtu.be/Aut-wfXacXg) -- [TikTok Clone](https://youtu.be/4E4V9F3cbp4) -- [Ticket Booking App](https://youtu.be/71AsYo2q_0Y) -- [Travel App](https://youtu.be/x4DydJKVvQk) -- [Twitch Clone](https://youtu.be/U9YKZrDX0CQ) -- [WhatsApp Clone](https://youtu.be/yqwfP2vXWJQ) -- [Wordle Clone](https://youtu.be/_W0RN_Cqhpg) -- [Zoom Clone](https://youtu.be/sMA1dKbv33Y) -- [Netflix Clone](https://youtu.be/J8IFNKzs3TI) +- [Amazon Clone with Admin Panel](https://www.youtube.com/watch?v=O3nmP-lZAdg&feature=youtu.be) +- [Food Delivery App](https://www.youtube.com/watch?v=7dAt-JMSCVQ&feature=youtu.be) +- [Google Docs Clone](https://www.youtube.com/watch?v=0_GJ1w_iG44&feature=youtu.be) +- [Instagram Clone](https://www.youtube.com/watch?v=mEPm9w5QlJM&feature=youtu.be) +- [Multiplayer TicTacToe Game](https://www.youtube.com/watch?v=Aut-wfXacXg&feature=youtu.be) +- [TikTok Clone](https://www.youtube.com/watch?v=4E4V9F3cbp4&feature=youtu.be) +- [Ticket Booking App](https://www.youtube.com/watch?v=71AsYo2q_0Y&feature=youtu.be) +- [Travel App](https://www.youtube.com/watch?v=x4DydJKVvQk&feature=youtu.be) +- [Twitch Clone](https://www.youtube.com/watch?v=U9YKZrDX0CQ&feature=youtu.be) +- [WhatsApp Clone](https://www.youtube.com/watch?v=yqwfP2vXWJQ&feature=youtu.be) +- [Wordle Clone](https://www.youtube.com/watch?v=_W0RN_Cqhpg&feature=youtu.be) +- [Zoom Clone](https://www.youtube.com/watch?v=sMA1dKbv33Y&feature=youtu.be) +- [Netflix Clone](https://www.youtube.com/watch?v=J8IFNKzs3TI&feature=youtu.be) ## Elixir -- [Building a Simple Chat App With Elixir and Phoenix](https://sheharyar.me/blog/simple-chat-phoenix-elixir/) +- [Building a Simple Chat App With Elixir and Phoenix](https://shyr.io/blog/simple-chat-phoenix-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) ## Erlang @@ -200,26 +198,26 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ## F#: -- [Write your own Excel in 100 lines of F#](http://tomasp.net/blog/2018/write-your-own-excel) +- [Write your own Excel in 100 lines of F#](https://tomasp.net/blog/2018/write-your-own-excel/) ## Java: - [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 4-13 is written in Java) -- [Build a Simple HTTP Server with Java](http://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html) +- [Build a Simple HTTP Server with Java](https://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html) - [Build an Android Flashlight App](https://www.youtube.com/watch?v=dhWL4DC7Krs) (video) - [Build a Spring Boot App with User Authentication](https://spring.io/guides/gs/securing-web/) ## JavaScript: - [Build 30 things in 30 days with 30 tutorials](https://javascript30.com) -- [Build a Jupyter Notebook Extension](https://link.medium.com/wWUO7TN8SS) +- [Build a Jupyter Notebook Extension](https://rsci.app.link/wWUO7TN8SS?_p=c11732dc9a0166eee01f8ae3e9b4b3) - [Build a Simple Weather App With Vanilla JavaScript](https://webdesign.tutsplus.com/tutorials/build-a-simple-weather-app-with-vanilla-javascript--cms-33893) - [Build a Todo List App in JavaScript](https://github.com/dwyl/javascript-todo-list-tutorial) ## HTML and CSS: -- [Build A Loading Screen](https://medium.freecodecamp.org/how-to-build-a-delightful-loading-screen-in-5-minutes-847991da509f) -- [Build an HTML Calculator with JS](https://medium.freecodecamp.org/how-to-build-an-html-calculator-app-from-scratch-using-javascript-4454b8714b98) +- [Build A Loading Screen](https://www.freecodecamp.org/news/how-to-build-a-delightful-loading-screen-in-5-minutes-847991da509f) +- [Build an HTML Calculator with JS](https://www.freecodecamp.org/news/how-to-build-an-html-calculator-app-from-scratch-using-javascript-4454b8714b98) - [Build Snake using only JavaScript, HTML & CSS](https://www.freecodecamp.org/news/think-like-a-programmer-how-to-build-snake-using-only-javascript-html-and-css-7b1479c3339e/) ### Mobile Application: @@ -231,21 +229,20 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB #### React: -- [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 Character Voting App with React, Node, MongoDB and SocketIO](http://sahatyalkabov.com/create-a-character-voting-app-using-react-nodejs-mongodb-and-socketio) +- [Create Serverless React.js Apps](https://sst.dev/) +- [Create a Trello Clone](https://bigardone.dev/blog/2016/01/04/trello-tribute-with-phoenix-and-react-pt-1/) - [React Tutorial: Cloning Yelp](https://www.fullstackreact.com/articles/react-tutorial-cloning-yelp/) - [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) - [Build A Simple Medium Clone using React.js and Node.js](https://medium.com/@kris101/clone-medium-on-node-js-and-react-js-731cdfbb6878) -- [Integrate MailChimp in JS](https://medium.freecodecamp.org/how-to-integrate-mailchimp-in-a-javascript-web-app-2a889fb43f6f) -- [Build A Chrome Extension with React + Parcel](https://medium.freecodecamp.org/building-chrome-extensions-in-react-parcel-79d0240dd58f) -- [Build A ToDo App With React Native](https://blog.hasura.io/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a) -- [Make a Chat Application](https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a) -- [Create a News App with React Native](https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627) -- [Learn Webpack For React](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) +- [Integrate MailChimp in JS](https://www.freecodecamp.org/news/how-to-integrate-mailchimp-in-a-javascript-web-app-2a889fb43f6f) +- [Build A Chrome Extension with React + Parcel](https://www.freecodecamp.org/news/building-chrome-extensions-in-react-parcel-79d0240dd58f) +- [Build A ToDo App With React Native](https://hasura.io/blog/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a) +- [Make a Chat Application](https://www.freecodecamp.org/news/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a) +- [Create a News App with React Native](https://www.freecodecamp.org/news/create-a-news-app-using-react-native-ced249263627) +- [Learn Webpack For React](https://www.freecodecamp.org/news/learn-webpack-for-react-a36d4cac5060) - [Testing React App With Puppeteer and Jest](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) -- [Build Your Own React Boilerplate](https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) -- [Code The Game Of Life With React](https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174) +- [Build Your Own React Boilerplate](https://www.freecodecamp.org/news/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) +- [Code The Game Of Life With React](https://www.freecodecamp.org/news/create-gameoflife-with-react-in-one-hour-8e686a410174) - [A Basic React+Redux Introductory Tutorial](https://hackernoon.com/a-basic-react-redux-introductory-tutorial-adcc681eeb5e) - [Build an Appointment Scheduler](https://hackernoon.com/build-an-appointment-scheduler-using-react-twilio-and-cosmic-js-95377f6d1040) - [Build A Chat App with Sentiment Analysis](https://codeburst.io/build-a-chat-app-with-sentiment-analysis-using-next-js-c43ebf3ea643) @@ -267,11 +264,9 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB #### Angular: -- [Build an Instagram Clone with Angular 1.x](https://hackhands.com/building-instagram-clone-angularjs-satellizer-nodejs-mongodb/) - Build an offline-capable Hacker News client with Angular 2+ - [Part 1](https://houssein.me/angular2-hacker-news) - [Part 2](https://houssein.me/progressive-angular-applications) -- [Build a Google+ clone with Django and AngularJS (Angular 1.x)](https://thinkster.io/django-angularjs-tutorial) - Build A Beautiful Real World App with Angular 8 : - [Part I](https://medium.com/@hamedbaatour/build-a-real-world-beautiful-web-app-with-angular-6-a-to-z-ultimate-guide-2018-part-i-e121dd1d55e) @@ -284,16 +279,13 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB #### Node: -- [Test-Driven Development with Node, Postgres and Knex](http://mherman.org/blog/2016/04/28/test-driven-development-with-node/) +- [Test-Driven Development with Node, Postgres and Knex](https://mherman.org/blog/2016/04/28/test-driven-development-with-node/) - Write a Twitter Bot in Node.js - [Part 1](https://codeburst.io/build-a-simple-twitter-bot-with-node-js-in-just-38-lines-of-code-ed92db9eb078) - [Part 2](https://codeburst.io/build-a-simple-twitter-bot-with-node-js-part-2-do-more-2ef1e039715d) -- [Build A Simple Search Bot in 30 minutes](https://medium.freecodecamp.org/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1) -- [Build A Job Scraping Web App](https://medium.freecodecamp.org/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc) +- [Build A Simple Search Bot in 30 minutes](https://www.freecodecamp.org/news/how-to-build-a-simple-search-bot-in-30-minutes-eb56fcedcdb1) +- [Build A Job Scraping Web App](https://www.freecodecamp.org/news/how-i-built-a-job-scraping-web-app-using-node-js-and-indreed-7fbba124bbdc) - [Building a GitHub App](https://blog.scottlogic.com/2017/05/22/gifbot-github-integration.html) -- How to build your own Uber-for-X App using JavaScript, Node.JS, MongoDB and Web Sockets - - [Part 1](https://www.ashwinhariharan.tech/blog/how-to-build-your-own-uber-for-x-app/) - - [Part 2](https://www.ashwinhariharan.tech/blog/how-to-build-your-own-uber-for-x-app-part-2/) #### Vue @@ -304,7 +296,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 1](https://medium.com/@anaida07/mevn-stack-application-part-1-3a27b61dcae0) - [Part 2](https://medium.com/@anaida07/mevn-stack-application-part-2-2-9ebcf8a22753) - [Vue.js To-Do List Tutorial (video)](https://www.youtube.com/watch?v=78tNYZUS-ps) -- [Vue 2 + Pub/Sub: Build a peer to peer multi-user platform for games](https://www.ably.io/tutorials/peer-to-peer-vue) +- [Vue 2 + Pub/Sub: Build a peer to peer multi-user platform for games](https://ably.com/examples) #### Others (Hapi, Express...): @@ -312,30 +304,30 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 1](https://bitsofco.de/bitsofcode-pwa-part-1-offline-first-with-service-worker/) - [Part 2](https://bitsofco.de/bitsofcode-pwa-part-2-instant-loading-with-indexeddb/) - [Part 3](https://bitsofco.de/bitsofcode-pwa-part-3-push-notifications/) -- [Build A Native Desktop App with JS](https://medium.freecodecamp.org/build-native-desktop-apps-with-javascript-a49ede90d8e9) +- [Build A Native Desktop App with JS](https://www.freecodecamp.org/news/build-native-desktop-apps-with-javascript-a49ede90d8e9) - Build a Powerful API with NodeJs,GraphQL and Hapi - [Part I](https://medium.com/@wesharehoodies/how-to-setup-a-powerful-api-with-nodejs-graphql-mongodb-hapi-and-swagger-e251ac189649) #### D3.js - [Learn D3 using examples](https://www.sitepoint.com/d3-js-data-visualizations/) -- [Learn To Make A Line Chart](https://medium.freecodecamp.org/learn-to-create-a-line-chart-using-d3-js-4f43f1ee716b) +- [Learn To Make A Line Chart](https://www.freecodecamp.org/news/learn-to-create-a-line-chart-using-d3-js-4f43f1ee716b) ### Game Development: - [Make 2D Breakout Game using Phaser](https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_breakout_game_Phaser) - Make Flappy Bird in HTML5 and JavaScript with Phaser - - [Part 1](http://www.lessmilk.com/tutorial/flappy-bird-phaser-1) - - [Part 2](http://www.lessmilk.com/tutorial/flappy-bird-phaser-2) + - [Part 1](https://www.lessmilk.com/phaser-game-tutorial/) + - [Part 2](https://www.lessmilk.com/phaser-game-tutorial/) ### Desktop Application: -- [Build A Desktop Chat App with React and Electron](https://medium.freecodecamp.org/build-a-desktop-chat-app-with-react-electron-and-chatkit-744d168e6f2f) +- [Build A Desktop Chat App with React and Electron](https://www.freecodecamp.org/news/build-a-desktop-chat-app-with-react-electron-and-chatkit-744d168e6f2f) ### Miscellaneous: - [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 Yourself a Redux](https://zapier.com/engineering/how-to-build-redux/) +- [Build Yourself a Redux](https://zapier.com/blog/how-to-build-redux/) - [How to write your own Virtual DOM](https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060) - [Build A Realtime Serverless GraphQL API with WebSockets on AWS](https://andrewgriffithsonline.com/blog/serverless-websockets-on-aws/) @@ -371,23 +363,20 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Mining Twitter Data with Python](https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/) - [Scrape a Website with Scrapy and MongoDB](https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/) -- [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/) +- [How To Scrape With Python and Selenium WebDriver](https://www.byperth.com/2018/04/25/guide-web-scraping-101-what-you-need-to-know-and-how-to-scrape-with-python-selenium-webdriver/) - [Which Movie Should I Watch using BeautifulSoup](https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1) ### Web Applications: - [Build a Microblog with Flask](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world) - [Create a Blog Web App In Django](https://tutorial.djangogirls.org/en/) -- [Choose Your Own Adventure Presentations](https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html) +- [Choose Your Own Adventure Presentations](https://www.twilio.com/en-us/blog/developers/tutorials/integrations/choose-your-own-adventure-presentations-with-reveal-js-python-and-websockets-html) - [Build a Todo List with Flask and RethinkDB](https://realpython.com/blog/python/rethink-flask-a-simple-todo-list-powered-by-flask-and-rethinkdb/) - [Build a Todo List with Django and Test-Driven Development](http://www.obeythetestinggoat.com/) -- [Build a RESTful Microservice in Python](http://www.skybert.net/python/developing-a-restful-micro-service-in-python/) +- [Build a RESTful Microservice in Python](https://www.skybert.net/python/developing-a-restful-micro-service-in-python/) - [Microservices with Docker, Flask, and React](https://testdriven.io/) - [Build A Simple Web App With Flask](https://pythonspot.com/flask-web-app-with-python/) - [Create A Django API in under 20 minutes](https://codeburst.io/create-a-django-api-in-under-20-minutes-2a082a60f6f3) -- Build a Community-driven delivery application with Django, Postgres and JavaScript - - [Part 1](https://www.ashwinhariharan.tech/blog/thinking-of-building-a-contact-tracing-application-heres-what-you-can-do-instead/) - - [Part 2](https://www.ashwinhariharan.tech/blog/thinking-of-building-a-contact-tracing-application-heres-what-you-can-do-instead-part-2/) - Realtime Chat application with Vue, django-notifs, RabbitMQ and uWSGI - [Part 1](https://danidee10.github.io/2018/01/01/realtime-django-1.html) - [Part 2](https://danidee10.github.io/2018/01/03/realtime-django-2.html) @@ -400,14 +389,14 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ### Bots: -- [Build a Reddit Bot](https://www.pythonforengineers.com/blog/build-a-reddit-bot-part-1/) +- [Build a Reddit Bot](https://pythonforengineers.com/blog/build-a-reddit-bot-part-1/) - [How to Make a Reddit Bot - YouTube](https://www.youtube.com/watch?v=krTUf7BpTc0) (video) - [Build a Facebook Messenger Bot](https://blog.hartleybrody.com/fb-messenger-bot/) -- [Making a Reddit + Facebook Messenger Bot](https://pythontips.com/2017/04/13/making-a-reddit-facebook-messenger-bot/) +- [Making a Reddit + Facebook Messenger Bot](https://yasoob.me/2017/04/13/making-a-reddit-facebook-messenger-bot/) - How To Create a Telegram Bot Using Python - [Part 1](https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/) - [Part 2](https://khashtamov.com/en/how-to-deploy-telegram-bot-django/) -- [Create a Twitter Bot In Python](https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607) +- [Create a Twitter Bot In Python](https://www.freecodecamp.org/news/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607) ### Data Science: @@ -423,7 +412,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Write Linear Regression From Scratch in Python](https://www.youtube.com/watch?v=uwwWVAgJBcM) (video) - [Step-By-Step Machine Learning In Python](https://machinelearningmastery.com/machine-learning-in-python-step-by-step/) -- [Predict Quality Of Wine](https://medium.freecodecamp.org/using-machine-learning-to-predict-the-quality-of-wines-9e2e13d7480d) +- [Predict Quality Of Wine](https://www.freecodecamp.org/news/using-data-science-to-understand-what-makes-wine-taste-good-669b496c67ee) - [Solving A Fruits Classification Problem](https://towardsdatascience.com/solving-a-simple-classification-problem-with-python-fruits-lovers-edition-d20ab6b071d2) - [Learn Unsupervised Learning with Python](https://scikit-learn.org/stable/unsupervised_learning.html) - [Build Your Own Neural Net from Scratch in Python](https://towardsdatascience.com/how-to-build-your-own-neural-network-from-scratch-in-python-68998a08e4f6) @@ -437,44 +426,44 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ### OpenCV: -- [Build A Document Scanner](https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/) -- [Build A Face Detector using OpenCV and Deep Learning](https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/) +- [Build A Document Scanner](https://pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/) +- [Build A Face Detector using OpenCV and Deep Learning](https://pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/) - [Build fastest custom object Detection system yusing YOLOv3(video playlist)](https://www.youtube.com/playlist?list=PLKHYJbyeQ1a0oGzgRXy-QwAN1tSV4XZxg) -- [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/) -- [Detect The Salient Features in an Image](https://www.pyimagesearch.com/2018/07/16/opencv-saliency-detection/) -- [Build A Barcode Scanner](https://www.pyimagesearch.com/2018/05/21/an-opencv-barcode-and-qr-code-scanner-with-zbar/) -- [Learn Face Clustering with Python](https://www.pyimagesearch.com/2018/07/09/face-clustering-with-python/) +- [Build a Face Recognition System using OpenCV, Python and Deep Learning](https://pyimagesearch.com/2018/06/18/face-recognition-with-opencv-python-and-deep-learning/) +- [Detect The Salient Features in an Image](https://pyimagesearch.com/2018/07/16/opencv-saliency-detection/) +- [Build A Barcode Scanner](https://pyimagesearch.com/2018/05/21/an-opencv-barcode-and-qr-code-scanner-with-zbar/) +- [Learn Face Clustering with Python](https://pyimagesearch.com/2018/07/09/face-clustering-with-python/) - [Object Tracking with Camshift](https://www.pyimagesearch.com/wp-content/uploads/2014/11/opencv_crash_course_camshift.pdf) -- [Semantic Segmentation with OpenCV and Deep Learning](https://www.pyimagesearch.com/2018/09/03/semantic-segmentation-with-opencv-and-deep-learning/) -- [Text Detection in Images and Videos](https://www.pyimagesearch.com/2018/08/20/opencv-text-detection-east-text-detector/) -- [People Counter using OpenCV](https://www.pyimagesearch.com/2018/08/13/opencv-people-counter/) -- [Tracking Multiple Objects with OpenCV](https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/) -- [Neural Style Transfer with OpenCV](https://www.pyimagesearch.com/2018/08/27/neural-style-transfer-with-opencv/) -- [OpenCV OCR and Text Recognition](https://www.pyimagesearch.com/2018/09/17/opencv-ocr-and-text-recognition-with-tesseract/) -- [Text Skew Correction Tutorial](https://www.pyimagesearch.com/2017/02/20/text-skew-correction-opencv-python/) -- [Facial Landmark Detection Tutorial](https://www.pyimagesearch.com/2017/04/03/facial-landmarks-dlib-opencv-python/) +- [Semantic Segmentation with OpenCV and Deep Learning](https://pyimagesearch.com/2018/09/03/semantic-segmentation-with-opencv-and-deep-learning/) +- [Text Detection in Images and Videos](https://pyimagesearch.com/2018/08/20/opencv-text-detection-east-text-detector/) +- [People Counter using OpenCV](https://pyimagesearch.com/2018/08/13/opencv-people-counter/) +- [Tracking Multiple Objects with OpenCV](https://pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/) +- [Neural Style Transfer with OpenCV](https://pyimagesearch.com/2018/08/27/neural-style-transfer-with-opencv/) +- [OpenCV OCR and Text Recognition](https://pyimagesearch.com/2018/09/17/opencv-ocr-and-text-recognition-with-tesseract/) +- [Text Skew Correction Tutorial](https://pyimagesearch.com/2017/02/20/text-skew-correction-opencv-python/) +- [Facial Landmark Detection Tutorial](https://pyimagesearch.com/2017/04/03/facial-landmarks-dlib-opencv-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/) -- [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/) +- [Automatic Target Detection Tutorial](https://pyimagesearch.com/2015/05/04/target-acquired-finding-targets-in-drone-and-quadcopter-video-streams-using-python-and-opencv/) - [EigenFaces using OpenCV](https://www.learnopencv.com/eigenface-using-opencv-c-python/) -- [Faster(5-point) Facial Landmark Detection Tutorial](https://www.pyimagesearch.com/2018/04/02/faster-facial-landmark-detector-with-dlib/) +- [Faster(5-point) Facial Landmark Detection Tutorial](https://pyimagesearch.com/2018/04/02/faster-facial-landmark-detector-with-dlib/) - [Hand Keypoint Detection](https://www.learnopencv.com/hand-keypoint-detection-using-deep-learning-and-opencv/) - Dlib Correlation Object Tracking - - - [Single Object Tracker](https://www.pyimagesearch.com/2018/10/22/object-tracking-with-dlib/) - - [Multiple Object Tracker](https://www.pyimagesearch.com/2018/10/29/multi-object-tracking-with-dlib/) -- [Image Stitching with OpenCV and Python](https://www.pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/) -- [Instance Segmentation with OpenCV](https://www.pyimagesearch.com/2018/11/26/instance-segmentation-with-opencv/) -- [Face mask detector](https://www.pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/) + - [Single Object Tracker](https://pyimagesearch.com/2018/10/22/object-tracking-with-dlib/) + - [Multiple Object Tracker](https://pyimagesearch.com/2018/10/29/multi-object-tracking-with-dlib/) +- [Image Stitching with OpenCV and Python](https://pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/) +- [Instance Segmentation with OpenCV](https://pyimagesearch.com/2018/11/26/instance-segmentation-with-opencv/) +- [Face mask detector](https://pyimagesearch.com/2020/05/04/covid-19-face-mask-detector-with-opencv-keras-tensorflow-and-deep-learning/) ### Deep Learning: -- [Using Convolutional Neural Nets to Detect Facial Keypoints](http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/) +- [Using Convolutional Neural Nets to Detect Facial Keypoints](https://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/) - [Generate an Average Face using Python and OpenCV](https://www.learnopencv.com/average-face-opencv-c-python-tutorial/) - [Break A Captcha System using CNNs](https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710) - [Use pre-trained Inception model to provide image predictions](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) - [Create your first CNN](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) - [Build A Facial Recognition Pipeline](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8) -- [Build An Image Caption Generator](https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f) -- [Make your Own Face Recognition System](https://medium.freecodecamp.org/making-your-own-face-recognition-system-29a8e728107c) +- [Build An Image Caption Generator](https://www.freecodecamp.org/news/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f) +- [Make your Own Face Recognition System](https://www.freecodecamp.org/news/making-your-own-face-recognition-system-29a8e728107c) - [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) - [Object Detection With Neural Networks](https://towardsdatascience.com/object-detection-with-neural-networks-a4e2c46b4491) - Learn Twitter Sentiment Analysis - @@ -492,14 +481,14 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Use Transfer Learning for custom image classification](https://becominghuman.ai/transfer-learning-retraining-inception-v3-for-custom-image-classification-2820f653c557) - [Learn to Code a simple Neural Network in 11 lines of Python](https://iamtrask.github.io/2015/07/12/basic-python-network/) - [Build a Neural Network using Gradient Descent Approach](https://iamtrask.github.io/2015/07/27/python-network-part2/) -- [Train a Keras Model To Generate Colors](https://heartbeat.fritz.ai/how-to-train-a-keras-model-to-generate-colors-3bc79e54971b) -- [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/) +- [Train a Keras Model To Generate Colors](https://fritz.ai/how-to-train-a-keras-model-to-generate-colors/) +- [Get Started with Keras on a Custom Dataset](https://pyimagesearch.com/2018/09/10/keras-tutorial-how-to-get-started-with-keras-deep-learning-and-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/) - [Kaggle MNIST Digit Recognizer Tutorial](https://medium.com/@lvarruda/how-to-get-top-2-position-on-kaggles-mnist-digit-recognizer-48185d80a2d4) - [Fashion MNIST tutorial with tf.keras](https://medium.com/tensorflow/hello-deep-learning-fashion-mnist-with-keras-50fcff8cd74a) -- [CNN using Keras to automatically classify root health](https://www.pyimagesearch.com/2018/10/15/deep-learning-hydroponics-and-medical-marijuana/) -- [Keras vs Tensorflow](https://www.pyimagesearch.com/2018/10/08/keras-vs-tensorflow-which-one-is-better-and-which-one-should-i-learn/) -- [Deep Learning and Medical Image Analysis for Malaria Detection](https://www.pyimagesearch.com/2018/12/03/deep-learning-and-medical-image-analysis-with-keras/) +- [CNN using Keras to automatically classify root health](https://pyimagesearch.com/2018/10/15/deep-learning-hydroponics-and-medical-marijuana/) +- [Keras vs Tensorflow](https://pyimagesearch.com/2018/10/08/keras-vs-tensorflow-which-one-is-better-and-which-one-should-i-learn/) +- [Deep Learning and Medical Image Analysis for Malaria Detection](https://pyimagesearch.com/2018/12/03/deep-learning-and-medical-image-analysis-with-keras/) - [Transfer Learning for Image Classification using Keras](https://towardsdatascience.com/transfer-learning-for-image-classification-using-keras-c47ccf09c8c8) - [Code a Smile Classifier using CNNS in Python](https://github.com/kylemcdonald/SmileCNN) - [Natural Language Processing using scikit-learn](https://towardsdatascience.com/natural-language-processing-count-vectorization-with-scikit-learn-e7804269bb5e) @@ -517,23 +506,23 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 1](https://blog.asrpo.com/making_a_low_level_debugger) - [Part 2: C](https://blog.asrpo.com/making_a_low_level_debugger_part_2) - Implementing a Search Engine - - [Part 1](http://www.ardendertat.com/2011/05/30/how-to-implement-a-search-engine-part-1-create-index/) - - [Part 2](http://www.ardendertat.com/2011/05/31/how-to-implement-a-search-engine-part-2-query-index/) - - [Part 3](http://www.ardendertat.com/2011/07/17/how-to-implement-a-search-engine-part-3-ranking-tf-idf/) + - [Part 1](https://www.ardendertat.com/2011/05/30/how-to-implement-a-search-engine-part-1-create-index/) + - [Part 2](https://www.ardendertat.com/2011/05/31/how-to-implement-a-search-engine-part-2-query-index/) + - [Part 3](https://www.ardendertat.com/2011/07/17/how-to-implement-a-search-engine-part-3-ranking-tf-idf/) - [Build the Game of Life](https://robertheaton.com/2018/07/20/project-2-game-of-life/) - [Create terminal ASCII art](https://robertheaton.com/2018/06/12/programming-projects-for-advanced-beginners-ascii-art/) - [Write a Tic-Tac-Toe AI](https://robertheaton.com/2018/10/09/programming-projects-for-advanced-beginners-3-a/) - [Create photomosaic art](https://robertheaton.com/2018/11/03/programming-project-4-photomosaics/) - [Build the game "Snake" in the terminal](https://robertheaton.com/2018/12/02/programming-project-5-snake/) - [Write yourself a Git](https://wyag.thb.lt/) -- [A Python implementation of a Python bytecode runner](https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html) -- [Create a Voice assistant using Python](https://www.geeksforgeeks.org/voice-assistant-using-python/) +- [A Python implementation of a Python bytecode runner](https://aosabook.org/en/500L/a-python-interpreter-written-in-python.html) +- [Create a Voice assistant using Python](https://www.geeksforgeeks.org/python/voice-assistant-using-python/) ## Go: - [Create a Real Time Chat App with Golang, Angular 2, and WebSocket](https://web.archive.org/web/20260214230813/https://www.thepolyglotdeveloper.com/2016/12/create-real-time-chat-app-golang-angular-2-websockets/) -- [Building Go Web Applications and Microservices Using Gin](https://semaphoreci.com/community/tutorials/building-go-web-applications-and-microservices-using-gin) -- [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) +- [Building Go Web Applications and Microservices Using Gin](https://semaphore.io/community/tutorials/building-go-web-applications-and-microservices-using-gin) +- [How to Use Godog for Behavior-driven Development in Go](https://semaphore.io/community/tutorials/how-to-use-godog-for-behavior-driven-development-in-go) - Building Blockchain in Go - [Part 1: Basic Prototype](https://jeiwan.net/posts/building-blockchain-in-go-part-1/) - [Part 2: Proof of Work](https://jeiwan.net/posts/building-blockchain-in-go-part-2/) @@ -572,8 +561,8 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ## PHP: - [How To Build A Blog With Laravel](https://www.youtube.com/playlist?list=PLwAKR305CRO-Q90J---jXVzbOd4CDRbVx) (video) -- [Make Your Own Blog (in Pure PHP)](http://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog) -- [Build A Real Estate Website Example with SilverStripe](https://www.silverstripe.org/learn/lessons/) +- [Make Your Own Blog (in Pure PHP)](https://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog) +- [Build A Real Estate Website Example with SilverStripe](https://www.silverstripe.org/learn/lessons) - [Building Realtime Chat App with Laravel 5.4 and VueJS](https://www.youtube.com/playlist?list=PLXsbBbd36_uVjOFH_P25__XAyGsohXWlv) (video) - [Build A Social Network: Laravel 5 - Youtube](https://www.youtube.com/playlist?list=PLfdtiltiRHWGGxaR6uFtwZnnbcXqyq8JD) (video) - Build a full-featured multi-tenant app with Laravel @@ -606,7 +595,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ### Ruby on Rails: - [The Ruby on Rails Tutorial](https://www.railstutorial.org/book) -- [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) +- [Build Instagram From Scratch with Ruby on Rails](https://www.dropbox.com/scl/fi/50bett7q7c2lajc/Let-s-Build-Instagram-with-Ruby-on-Rails-Free-Edition.pdf?rlkey=65rjaz62p7xqw3i5dbuniebct&dl=0) - [Build a Social Network using Rails](https://medium.com/rails-ember-beyond/how-to-build-a-social-network-using-rails-eb31da569233) - [How To Build a Ruby on Rails Application](https://www.digitalocean.com/community/tutorials/how-to-build-a-ruby-on-rails-application) @@ -617,11 +606,11 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Write You A Scheme, Version 2](https://github.com/adamwespiser/scheme) - [Roll Your Own IRC Bot](https://wiki.haskell.org/Roll_your_own_IRC_bot) - [Making Movie Monad](https://lettier.github.io/posts/2016-08-15-making-movie-monad.html) -- [Making a Website with Haskell **(outdated)**](http://adit.io/posts/2013-04-15-making-a-website-with-haskell.html) +- [Making a Website with Haskell **(outdated)**](https://www.adit.io/posts/2013-04-15-making-a-website-with-haskell.html) ## R: -- [Build Web Apps with Shiny](http://shiny.rstudio.com/tutorial/) +- [Build Web Apps with Shiny](https://shiny.posit.co/r/getstarted/) - [Build A Cryptocurrency Bot](https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1) - [Learn Associate Rule Mining in R](https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50) @@ -639,14 +628,14 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Part 1: Implementing WebSocket. Introduction.](https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html) - [Part 2: Sending and Receiving Messages](https://nbaksalyar.github.io/2015/11/09/rust-in-detail-2.html) - [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/) -- [Single Page Applications using Rust](http://www.sheshbabu.com/posts/rust-wasm-yew-single-page-application/) +- [Single Page Applications using Rust](https://www.sheshbabu.com/posts/rust-wasm-yew-single-page-application/) - [Writing NES Emulator in Rust](https://bugzmanov.github.io/nes_ebook/) - Create a simulation of evolution using neural network and genetic algorithm, and compile the application to WebAssembly - - [Part 1](https://pwy.io/en/posts/learning-to-fly-pt1/) - - [Part 2](https://pwy.io/en/posts/learning-to-fly-pt2/) - - [Part 3](https://pwy.io/en/posts/learning-to-fly-pt3/) - - [Part 4](https://pwy.io/en/posts/learning-to-fly-pt4/) -- [hecto: Build your own text editor in Rust](https://www.flenker.blog/hecto/) + - [Part 1](https://pwy.io/posts/learning-to-fly-pt1/) + - [Part 2](https://pwy.io/posts/learning-to-fly-pt2/) + - [Part 3](https://pwy.io/posts/learning-to-fly-pt3/) + - [Part 4](https://pwy.io/posts/learning-to-fly-pt4/) +- [hecto: Build your own text editor in Rust](https://philippflenker.com/hecto/) ## Scala: @@ -658,7 +647,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Hacking with Swift - Learn Swift by doing 39 projects](https://www.hackingwithswift.com/read) - [Retro first-person shooter from scratch](https://github.com/nicklockwood/RetroRampage) - [Build an iOS App with SwiftUI](https://www.swift.org/getting-started/swiftui/) -- [Developing iOS Apps with SwiftUI (Stanford CS193p)](https://cs193p.sites.stanford.edu/) (video) +- [Developing iOS Apps with SwiftUI (Stanford CS193p)](https://cs193p.stanford.edu/) (video) ## Additional Resources @@ -667,10 +656,8 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB - [Full Stack Python](https://www.fullstackpython.com/) - [Node School](https://nodeschool.io/) - [DigitalOcean Community Tutorials](https://www.digitalocean.com/community/tutorials) -- [Exercism](http://www.exercism.io/) -- [Egghead.io](http://www.egghead.io/) -- [Michael Herman's Blog](http://mherman.org/) -- [Thinkster.io](http://thinkster.io) +- [Exercism](https://exercism.org/) +- [Egghead.io](https://egghead.io/) +- [Michael Herman's Blog](https://mherman.org/) - [Enlight](https://enlight.nyc/) -- [Hack Club Workshops](https://hackclub.com/workshops/) - [CodeCrafters](https://codecrafters.io/)