Tag:

美国

润学/移民/找工作笔记

Copy from here. 第一章 零基础转码篇 你的第一门编程语言,Python。Coursera上的Python for Everbody (UMich):https://www.coursera.org/learn/python?specialization=python 你的第二门也是最重要的Computer Science课程,数据结构和算法 (UCSD):https://www.coursera.org/specializations/data-structures-algorithms?=#courses 前端入门(Reactjs): Meta的Coursera零基础前端转码课:https://www.coursera.org/professional-certificates/meta-front-end-developer 如果只看文字版,推荐W3CSchool教程: HTML:https://www.w3schools.com/html/default.asp CSS:https://www.w3schools.com/css/default.asp JavaScript:https://www.w3schools.com/js/default.asp 其他参考文档: Reactjs官方文档:https://reactjs.org/tutorial/tutorial.html MDN文档(权威JavaScript、CSS、HTML文档):https://developer.mozilla.org/en-US/ TypeScript文档:https://www.typescriptlang.org/docs/ 互动的codeing bootcamp:https://www.freecodecamp.org/learn/front-end-development-libraries/#bootstrap 后端入门: 后端语言(个人强烈且只推荐Java)Java(Duke):https://www.coursera.org/specializations/object-oriented-programming 后端框架(推荐Springboot)Springboot:https://www.youtube.com/watch?v=9SGDpanrc8U 数据库(推荐PostgreSQL,同时可以学MongoDB、Redis、MySQL等)SQL与PostgreSQL:https://www.coursera.org/specializations/postgresql-for-everybody?#courses Amazon Web Service:https://www.youtube.com/watch?v=3hLmDS179YE 课程以外重要的基本技能: 正确使用Git:https://docs.github.com/en/get-started/using-git/about-git IDE与编辑器: Visual Studio Code入门教程:https://code.visualstudio.com/docs/introvideos/basics Jetbrains全家桶使用指南(IDEA、PyCharm、WebStorm等):https://www.jetbrains.com/help/ Visual Studio入门教程:https://visualstudio.microsoft.com/vs/getting-started/ Markdown文档基本语法:https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax Linux command line tools手册:https://www.freecodecamp.org/news/the-linux-commands-handbook/ 面试: 初级版 Cracking the Coding Interview,北美码农面试经典入门圣经: 纸质版(请尽量购买正版):https://www.amazon.com/Cracking-Coding-Interview-Programming-Questions/dp/0984782850 电子版(请勿用于商用并遵守版权法律):https://github.com/Avinash987/Coding/blob/master/Cracking-the-Coding-Interview-6th-Edition-189-Programming-Questions-and-Solutions.pdf Leetcode,所有古今中外大小厂的算法题都在这里,至少30道,上不封顶:https://leetcode.com/explore/ 以下是完整的Computer […]

Back To Top