From 0369492ce2f57203c3f3f0120b0481220cbb68a0 Mon Sep 17 00:00:00 2001 From: Rahul Bir <30447336+RahulBirCodes@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:57:49 -0700 Subject: [PATCH] Added web development section into programming --- content/technology/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/technology/index.md b/content/technology/index.md index 2eeb080..6d8a11f 100644 --- a/content/technology/index.md +++ b/content/technology/index.md @@ -10,6 +10,7 @@ - [Computer Science Major](#computer-science-major) - [Source Control](#source-control) - [iOS Development](#ios-development) + - [Web Development](#web-development) - [Language Guides](#language-guides) --- @@ -65,6 +66,9 @@ - [Stanford CS193P](https://cs193p.sites.stanford.edu) - Stanford University's course on developing applications for iOS using SwiftUI taught by Professor Paul Hegarty. Students are recommended to have experienec in object-oriented programming prior to taking the course. - [Apple Developer SwiftUI Tutorials](https://developer.apple.com/tutorials/swiftui) - Hands-on tutorials by Apple teaching the fundamentals of SwiftUI. +### Web Development +- [Eloquent Javascript](https://eloquentjavascript.net) - Interactive online book on Javascript taking you through the basics of the language, its incorporation into the browser, and backend programming with Node.js by Marijn Haverbeke. + ### Language Guides - [Programming: Principles and Practice Using C++, 2nd Edition](https://learning.oreilly.com/library/view/programming-principles-and/9780133796759/) - An introduction to the fundamentals concepts and techniques in programming through C++ by the creator of C++. - [Head First C](https://www.oreilly.com/library/view/head-first-c/9781449335649/) - A complete learning experience for C and structured imperative programming.