File tree Expand file tree Collapse file tree 5 files changed +103
-95
lines changed Expand file tree Collapse file tree 5 files changed +103
-95
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,13 @@ you have any questions, please feel free to reach out to us.
2424 * Symmetric
2525 * Asymmetric
2626 * Transitive
27+
2728### 2. Sum Rule
29+
2830### 3. Product Rule
31+
2932### 4. Pigeonhole Principle
33+
3034### 5. Basic Logic
3135 * Proposition
3236 * Compound Proposition
@@ -56,12 +60,15 @@ you have any questions, please feel free to reach out to us.
5660 * Fallacy
5761 * Converse Error
5862 * Inverse Error
63+
5964### 6. Proof Techniques
6065 * Direct Proof
6166 * Proof by Contradiction
67+
6268### 7. Logical Fallacies and Biases
6369 * Biases in computer science
64- ### 1. Computer Data
70+
71+ ### 8. Computer Data
6572 * Integer
6673 * Floating Point
6774 * Base 10
Original file line number Diff line number Diff line change 4141 * Little Endian
4242 * Big Endian
4343
44- ### 5 . Multiprocessing
44+ ### 4 . Multiprocessing
4545 * Flynn’s Taxonomy
4646 * Single Instruction, Single Data (SISD)
4747 * Single Instruction, Multiple Data (SIMD)
5454 * Million Instructions Per Second (MIPS)
5555 * Standard Performance Evaluation Corporation (SPEC)
5656
57- ### 6 . Input/Output (I/O) Architecture
57+ ### 5 . Input/Output (I/O) Architecture
5858 * Bus
5959 * Address Line
6060 * Data Line
9090 * Faults
9191 * Aborts
9292
93- ### 7 . Memory Architecture
93+ ### 6 . Memory Architecture
9494 * Volatile
9595 * Non-Volatile
9696 * CPU Registers
118118 * Throughput
119119 * Buffering
120120
121- ### 8 . Wireless and Mobile Technologies
121+ ### 7 . Wireless and Mobile Technologies
122122 * WI-FI (b/a/g/4/5/6/6E)
123123 * Cellular network
124124 * Bluetooth
Original file line number Diff line number Diff line change 1- 1 . Basic Operators
1+ # GoLang
2+
3+ ### 1. Basic Operators
24 * \+
35 * \-
46 * \*
1820 * ^=
1921 * |=
2022
21- 2 . Conditions
23+ ### 2. Conditions
2224 * ==
2325 * !=
2426 * \>
2527 * \<
2628 * \> =
2729 * <=
2830
29- 3 . Data Types
31+ ### 3. Data Types
3032 * String
3133 * Boolean
3234 * Int
4749 * Complex64
4850 * Complex128
4951
50- 4 . Strings
52+ ### 4. Strings
5153 * \\ '
5254 * \\ "
5355 * \\ \
6466 * Fscanf
6567 * Scanf
6668
67- 5 . List
69+ ### 5. List
6870 * ` New() `
6971 * ` Init() `
7072 * ` Back() `
8082 * ` PushFrontList() `
8183 * ` Remove() `
8284
83- 6 . Array
85+ ### 6. Array
8486 * ` Len() `
8587
86- 7 . Slice
88+ ### 7. Slice
8789 * ` Len() `
8890 * ` cap() `
8991 * ` copy() `
9092 * ` make() `
9193 * ` append() `
9294
93- 8 . Structs
95+ ### 8. Structs
9496 * Attributes
9597 * Methods
9698 * Composition
9799
98- 9 . Statements
100+ ### 9. Statements
99101 * import
100102 * package
101103 * if
110112 * func
111113 * const
112114
113- 10 . Basic Functions
115+ ### 10. Basic Functions
114116 * ` print() `
115117 * ` println() `
116118 * ` type() `
120122 * ` close() `
121123 * ` recover() `
122124
123- 11 . Tasks
125+ ### 11. Tasks
124126 * Create variables
125127 * Cast variables
126128 * Utilize Nested loops
Original file line number Diff line number Diff line change 11# Operating Systems
22
3-
43### 1. OS Basics
54 * Windows
65 * Unix
3332 * Logging
3433 * Backups
3534
36- ### 1 . Boot Process
35+ ### 2 . Boot Process
3736 * Basic Input/Output System (BIOS)
3837 * Unified Extensible Firmware Interface (UEFI)
3938 * Master Boot Record (MBR)
4948 * Rootkit
5049 * Bootkit
5150
52- ### 2 . Windows
51+ ### 3 . Windows
5352 * Built-In Accounts
5453 * Local Accounts
5554 * Domain Accounts
7776 * Setup Log
7877 * System Log
7978
80- ### 3 . DOS/PowerShell
79+ ### 4 . DOS/PowerShell
8180 * Command Prompt
8281 * PowerShell (PS)
8382 * PS Integrated Scripting Environment (ISE)
136135 * ` Clear-Host `
137136 * ` Rename-Item `
138137 * ` Remove-Item `
139- ### 4. UNIX
138+
139+ ### 5. UNIX
140140 * Kernel architecture
141141 * Unix Shells
142142 * Shell command structure
201201 * Relative Path
202202 * Environment Variables
203203 * vi/vim
204- ### 5. File and Directory Permissions
204+
205+ ### 6. File and Directory Permissions
205206 * Unix permission syntax
206207 * ` chmod `
207208 * ` chown `
208209
209- ### 6 . Mobile OS's
210+ ### 7 . Mobile OS's
210211 * Android
211212 * Rooting
212213 * ART
213214 * Sideloading
214215 * iOS
215216 * Jailbreaking
216217
217- ### 7 . File Systems
218+ ### 8 . File Systems
218219 * Physical layer
219220 * File system layer
220221 * Data layer
221222 * Metadata layer
222223 * Filename layer
223224
224- ### 8 . OS Processes
225+ ### 9 . OS Processes
225226 * Linux kernel design
226227 * Windows kernel design
227228 * Android kernel design
228229 * iOS kernel design
229230
230- ### 9 . Process Internals
231+ ### 10 . Process Internals
231232 * Process parts
232233 * Kernel components
233234 * Schedule dispatcher
239240 * Race Condition
240241 * Deadlock condition
241242
242- ### 10 . Interrupts, Exceptions, and Trap Handling
243+ ### 11 . Interrupts, Exceptions, and Trap Handling
243244 * Interrupts
244245 * Exceptions
245246 * Trap handling
246247
247- ### 11 . Device Drivers
248+ ### 12 . Device Drivers
248249 * Loadable-kernel modules (LKM)
249250 * Device drivers
250251 * File system drivers
255256 * Block device
256257 * Character device
257258
258- ### 12 . System Virtualization
259+ ### 13 . System Virtualization
259260 * Virtual machine monitor (VMM)
260261 * Virtual machine (VM)
261262 * Types of Virtual Machine Monitors
You can’t perform that action at this time.
0 commit comments