All Projects → gyuho → Learn

gyuho / Learn

Licence: other
learn

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Learn

Learn Elm
🌈 discover the beautiful programming language that makes front-end web apps a joy to build and maintain!
Stars: ✭ 432 (-55.46%)
Mutual labels:  tutorial, learning
Tour of rust
A tour of rust's language features
Stars: ✭ 503 (-48.14%)
Mutual labels:  tutorial, learning
React Tutorial
A walkthrough of basic React concepts.
Stars: ✭ 482 (-50.31%)
Mutual labels:  tutorial, learning
Tinyraytracer
A brief computer graphics / rendering course
Stars: ✭ 3,971 (+309.38%)
Mutual labels:  tutorial, learning
Ko.javascript.info
Modern JavaScript Tutorial in Korean (모던 JavaScript 튜토리얼)
Stars: ✭ 822 (-15.26%)
Mutual labels:  tutorial, learning
Gulp Tutorial
Code examples for my Gulp.js tutorial series
Stars: ✭ 383 (-60.52%)
Mutual labels:  tutorial, learning
Renderhelp
⚡️ 可编程渲染管线实现,帮助初学者学习渲染
Stars: ✭ 494 (-49.07%)
Mutual labels:  tutorial, learning
Learn Rust
Stars: ✭ 356 (-63.3%)
Mutual labels:  tutorial, learning
Learn Vim
Learning Vim and Vimscript doesn't have to be hard. This is the guide that you're looking for.
Stars: ✭ 7,221 (+644.43%)
Mutual labels:  tutorial, learning
Dasarpemrogramangolang
📖 Source Code E-book Dasar Pemrograman Golang
Stars: ✭ 625 (-35.57%)
Mutual labels:  tutorial, learning
Start Machine Learning In 2020
A complete guide to start and improve in machine learning (ML), artificial intelligence (AI) in 2021 without ANY background in the field and stay up-to-date with the latest news and state-of-the-art techniques!
Stars: ✭ 357 (-63.2%)
Mutual labels:  tutorial, learning
Ros Academy For Beginners
中国大学MOOC《机器人操作系统入门》代码示例 ROS tutorial
Stars: ✭ 861 (-11.24%)
Mutual labels:  tutorial, learning
Learning Rust
Rust 学习之路 > Rust Programming Tutorial, include articles, interview, example, problems.
Stars: ✭ 376 (-61.24%)
Mutual labels:  tutorial, learning
Elm Tutorial
A guide to building web applications using Elm 0.18
Stars: ✭ 398 (-58.97%)
Mutual labels:  tutorial, learning
Learn Something Every Day
📝 A compilation of everything that I learn; Computer Science, Software Development, Engineering, Math, and Coding in General. Read the rendered results here ->
Stars: ✭ 362 (-62.68%)
Mutual labels:  algorithm, learning
Haskell Study Plan
An opinionated list of resources for learning Haskell
Stars: ✭ 493 (-49.18%)
Mutual labels:  tutorial, learning
50 Projects For React And The Static Web
⚛ 50 project ideas to learn by doing complete with project briefs, layout ideas, and resources!
Stars: ✭ 319 (-67.11%)
Mutual labels:  tutorial, learning
Processing Docs
Processing reference, examples, tutorials, and website
Stars: ✭ 346 (-64.33%)
Mutual labels:  tutorial, learning
React From Zero
A simple (99% ES2015 less) tutorial for React
Stars: ✭ 4,638 (+378.14%)
Mutual labels:  tutorial, learning
Algo.js
A Very Basic into Intermediate Algorithm Lesson
Stars: ✭ 11 (-98.87%)
Mutual labels:  algorithm, learning

I am an endless, active learner. I embrace challenges beyond my current abilities to broaden my knowledge the most. I want to know a little about a lot, and a lot about little: my favorites are C++ and Go.

The best way to learn is to teach what you have learned to other people. I tried YouTube channel, which was hard to maintain. So I decided to write my own textbook. I am still learning, and I may say things out of ignorance. Every post is working in progress, non-committal on a timeline. The point is to review and improve over time. This is a personal white-board where I scribble anything, organize my code, learning experiences.

I appreciate any kind of feedback or suggestions. Please email [email protected], issues, or pull request.



Contents

↑ top

Articles

↑ top

Unix, linux

Unix is essential in software development.

This is the Unix philosophy: Write programs that do one thing and do it well.

Doug McIlroy

↑ top

Assembly

An assembly language (or assembler language) is a low-level programming language for a computer, or other programmable device, in which there is a very strong (generally one-to-one) correspondence between the language and the architecture's machine code instructions. Each assembly language is specific to a particular computer architecture, in contrast to most high-level programming languages, which are generally portable across multiple architectures, but require interpreting or compiling.

Assembly language by Wikipedia

↑ top

C

C is a small language. And it helps you better understand how system works in low-level. It's still being used everywhere. I only wish I had more time to learn more about C.

↑ top

C++

Is learning C++ still worthwhile? Yes! I really want to learn more about C++:

C++ is one of the most widely used programming languages in the world. Well-written C++ programs are fast and efficient. The language is more flexible than other languages because you can use it to create a wide range of apps—from fun and exciting games, to high-performance scientific software, to device drivers, embedded programs, and Windows client apps. For more than 20 years, C++ has been used to solve problems like these and many others.

C/C++ Language and Standard Libraries by Microsoft

↑ top

Go

I like Go for its simplicity: less design concerns to consider and less frameworks to learn. Plus I love its great communities. Go is not perfect but really good at doing less, enabling more. It's a great introductory language between Python and C++. I want to know a lot about C++ and Go to build my foundation. This will help my transition to other languages or frameworks if needed.

↑ top

Python

Python is probably fast enough for many of what we need to do today. And it's relatively easy to learn and use, with rich ecosystems in data science, web frameworks, scripting, and many others.

↑ top

Computer systems

It's very important to understand hardware and low-level programming. I believe this will help a lot when you wonder why your high level program is not working or not performing well. I will take as much time as I need―nothing like cramming 1,200 page computer systems book in 12 weeks.

↑ top

Security systems

MIT course explains that security achieves confidentiality, integrity, availability―policy. And the goal is to make sure there is no way for adversary within threat model to violate this policy.

↑ top

Database systems

We are generating and consuming vast amounts of data in unprecendented pace in human history. Database systems are the workhorses of our data analysis applications.

↑ top

Linguistics, natural language processing

I love linguistics, and its computational applications.

↑ top

Mathematics, statistics

Most prominent solutions in Computer Science often come from mathematics. Arbitrary, unrelated things can fit together when you have mathematical backgrounds. Statistics helps solve intractable problems through approximation algorithms, machine learning algorithms, etc.

↑ top

Data structures and algorithms

↑ top

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].