Please enable JavaScript.
Coggle requires JavaScript to display documents.
RRK1 - Coggle Diagram
RRK1
-
Algorithms
-
-
Big-O
O(1): Constant time (e.g., accessing an element in an array).
O(n): Linear time (e.g., traversing a list of n elements).
O(log n): Logarithmic time (e.g., binary search in a sorted array).
O(n^2): Quadratic time (e.g., nested loops).
-
-
-
-
-
-
Unix/Linux Internals
-
-
-
Memory Management
Key Concepts
-
Paging: Memory is divided into small, fixed-size chunks called pages.
Swapping: When there’s not enough physical memory, the system can temporarily move inactive pages to a special area on the disk called the swap space.
-
File systems
Key concepts
-
Inodes: Every file has an inode which stores metadata (such as the file’s size, permissions, etc.) but not the file's actual content.
-
-
-
Web Technologies
-
-
-
-
-
-
-
Chrome Dev Tools
Tabs
-
Console: View errors and log output from JavaScript. You can also run JavaScript commands directly here.
Network: Monitor all HTTP requests and responses, including headers, status codes, and load times.
-
Performance: Analyze the performance of the web page, including render time, script execution time, and more.
-
-