Home
My Docs
Cancel

Networks Lab Notes

Links Σελίδα Μαθήματος DNS Watch Google Dig Dig Hex Packet Decoder BIND Download HTTP response status codes Subnet Calculator Υποδικτύωση Ενότητα 1 Εντολή ipconfig /all Η εν...

Publish a Maven Package

Step 0: Create a Sonatype account Visit central.sonatype.com and follow the appropriate steps to create an account and get a verified namespace Signing up using Github is recommended to simpli...

x86asm notes

Sections .data: Stores initialized data (constants, static variables) .bss: Stores uninitialized data or variables that should be zeroed out at runtime .text: Contains the executable code o...

Python Notes

Variables num = 5 s = "Example" arr = [5, 2, 6, 2, 7] b = False I/O Output print("Hello World") # Hello World print("Hello", "Kostas") # Hello Kostas print("num = ", num) # num = 5 Input i...

Room Api (Kotlin)

Dependencies build.gradle.kts (root) plugins { ... id("com.google.devtools.ksp") vesion "1.9.0-1.0.13" apply false ... } build.gradle.kts (module) plugins { ... id("com.google.devtool...

Linux Swapfile

Creating the swapfile sudo dd if=/dev/zero of=/swapfile bs=1M count=4096 status=progress This creates a swapfile and allocates 4GB for it Set the required permissions sudo chmod 600 /swapfile ...

Bash Notes

echo echo "Hello World with new line" echo -n "Hello World without new line" while while [ $bool ] do # ...Code... done for for (( i = 0; i < 10; i++ )) do # ...Code... done if ...

Vim Notes

Vim Modes a Append text following current cursor position A Append text to the end of current line i Insert text before the current cursor position I Insert text at the beginning of the curso...

Swing Themes Library

Tutorial Import SwingThemesLibrary in your project as a dependency (see Releases for .jar file) Themes Create a theme Theme theme = new Theme(); //And insert each color by hand ...

Assembly 8086 Notes

The code snippets are in armasm because x86asm wouldn’t render. So ignore the syntax errors. Emu8086 Download License key Registers Memory slots used to store data General Purpose Re...