"The best way to learn something is to build it from scratch." — Andrej Karpathy
This roadmap follows the Karpathy philosophy: understand every layer by implementing it yourself before reaching for abstractions. No framework worship. No magic. Just you, an LLM API, and progressively harder problems.
Vijay's Reccomendation
-
Enjoying this channel recently a lot, he talks about low level concepts in terms of Computer Architecture. https://www.youtube.com/c/CoffeeBeforeArch/videos
-
Mostly modern technology(Zig, WebAssembly, Rust) but i usually follow him for WebAssembly knowledge https://www.youtube.com/user/chrishayuk
-
Distributed System Foundation (Something you should take before joining Arpit's Bootcamp) https://www.youtube.com/c/DistributedSystemsCourse
- Programming using a series of transformations and aggregations, something I've been doing for years, is known as programming in the map/reduce style.
- The more abstract the type is, the greater its cardinality, and the smaller the set of operations it supports. So make use of universal quantifiers, particularly by implementing fully parametric functions. They guide you on how to implement their term-level definitions by narrowing down the number of possible implementations. In other words, the type system of Scala (or Haskell, for that matter) is not only great for capturing compile-time errors, but is also capable of leading you to the correct solution.
- You can encode union types by combining different Scala features such as type constructors, subtyping and implicits, and by taking advantage of the Curry-Howard Isomorphism and De Morgan's Laws for neg
I am moving this gist to a github repo so more people can contribute to it. Also, it makes it easier for me to version control.
Please go to - https://github.com/praveenpuglia/shadow-dom-in-depth for latest version of this document. Also, if you find the document useful, please shower your love, go ⭐️ it. :)
Heads Up! It's all about the V1 Spec.
In a nutshell, Shadow DOM enables local scoping for HTML & CSS.
I am moving this gist to a github repo so more people can contribute to it. Also, it makes it easier for me to version control.
Please go to - https://github.com/praveenpuglia/shadow-dom-in-depth for latest version of this document. Also, if you find the document useful, please shower your love, go ⭐️ it. :)
Heads Up! It's all about the V1 Spec.
In a nutshell, Shadow DOM enables local scoping for HTML & CSS.
| import { FormGroup, FormControl, FormArray, Validators } from "@angular/forms"; | |
| function testFormGroupTyped() { | |
| var frm = new FormGroup({ | |
| a: new FormArray([new FormControl(0)]), | |
| b: new FormControl(true), | |
| c: new FormGroup({ | |
| s: new FormControl("abc"), | |
| n: new FormControl(123) | |
| }) |
TypeScript and Playground練習問題集更新情報
WIP


