Skip to content

Latest commit

 

History

History
71 lines (45 loc) · 3.88 KB

README.md

File metadata and controls

71 lines (45 loc) · 3.88 KB

My Learning Journal 🥜

This GitHub repository serves as a collection of my daily learnings in technology. Here, you'll find notes, code snippets, and resources that reflect my progress and insights.

🛠️ CMake

CMake is an open-source, cross-platform tool designed to manage the build process of software using compiler-independent configuration files. It generates platform-specific build scripts, such as Makefiles for Linux or project files for IDEs like Visual Studio, from a single set of configuration files. I can learn from here.

🧠 Keras

Keras is a high-level deep learning API that allows users to easily build, train, and deploy neural networks. It abstracts many low-level details of neural networks and provides a simple, user-friendly interface for complex tasks. Explore.

🔦 Lidar

Lidar is a method for determining ranges by targeting an object or a surface with a laser and measuring the time for the reflected light to return to the receiver. Wiki

🛣️ Lin–Kernighan Algorithm

The Lin–Kernighan algorithm is a powerful heuristic for solving the Traveling Salesman Problem (TSP), which is a classic NP-hard combinatorial optimization problem. This algorithm is designed to find a near-optimal solution through iterative local optimization techniques.

🕸️ Darknet

Darknet is an open-source neural network framework written in C and CUDA, designed for both CPU and GPU computing. It’s widely known for powering the YOLO (You Only Look Once) object detection models, which are some of the fastest and most popular real-time object detectors.

Transfer Learning

need for OpenDub (automatic dialogue generator from subtitle) implementation.

GraphQL

need for bug-book (journal book of errors) why? see chatgpt.

Hoisting

link

more

Symlink

A symbolic link (or symlink) is a special type of file in Unix-like operating systems that serves as a reference or pointer to another file or directory. It acts like a shortcut, allowing you to access files or directories from multiple locations without duplicating the actual data. Explore

Flyweight Pattern

link

Shadowing

Shadowing occurs when a variable in a certain scope (like inside a function) has the same name as a variable in an outer scope (like the global scope). When this happens, the inner variable "shadows" or "hides" the outer variable, meaning that within the inner scope, any reference to that variable name will refer to the inner variable rather than the outer one.

Example of Shadowing:

x = 10  # Global variable

def example_function():
    x = 5  # Local variable, shadows the global variable
    print(f"Inside function: {x}")  # This prints 5

example_function()  # Call the function
print(f"Outside function: {x}")  # This prints 10

TRAINEDDATA File

A TRAINEDDATA file is an optical character recognition (OCR) model created by Tesseract.

LSTM

link

Reverse Proxy

VGSL

Otsu algorithm

Alpha Channel

link

DPI

DPI stands for Dots per Inch, referring to the number of ink droplets a printer will produce per inch while printing an image. The more dots of ink per inch the picture has, the more detail you will see when printed. wiki