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 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 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 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
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 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.
need for OpenDub (automatic dialogue generator from subtitle) implementation.
need for bug-book (journal book of errors) why? see chatgpt.
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
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.
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
A TRAINEDDATA file is an optical character recognition (OCR) model created by Tesseract.
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