2023-09-08 . 3 min read
Language Parsing, Visitor Pattern, Clousre Implementation, Recursive Rendering.
2023-03-21 . 2 min read
Use git submodules, sparse checkout and workspaces to create and manage your projects efficiently and elegantly.
2023-02-22 . 4 min read
Solving Advent of Code challenges while learning a new language can be like finding a treasure chest for every problem you solve.
2022-10-07 . 4 min read
Tools are really helpful and great for starting out but it's always fun to understand how it works and what actually happens behind the scenes.
2022-08-27 . 2 min read
Sometimes we might need to maintain 2 different github repo and may be we want to track and ignore different files as required....
2022-07-14 . 4 min read
For m training examples with each example having n features, a m x n dimensional vector can be used for representing the data.
2022-02-21 . 3 min read
32 or 64 bit systems are characterized by the amount of data the CPU registers can hold at once. CPU reads data in a sequence of bits.
2022-02-12 . 6 min read
Derivative, Partial Derivative, Gradient, Rate of Change, Vetor Fields, and ML
2022-01-12 . 3 min read
Gradient descent is an optimization algorithm that we use in machine learning and by optimization, we mean finding the maximum or minimum value of a function and in this case, we are descending to find the minimum value.
2022-01-04 . 2 min read
Single threaded language? Blocking Code? How is concurrency attained? Event loop?