This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sending digital information over a wire | Networking tutorial (1 of 13) | |
| https://www.youtube.com/watch?v=XaGXPObx2Gs&list=PLowKtXNTBypH19whXTVoG3oKSuOcw_XeW | |
| Algorithms | |
| https://frontendmasters.com/courses/algorithms/arrays-q-a/ | |
| 1.5 Working with Objects | Archi - Archimate Toolkit 5 minute guide | |
| https://www.youtube.com/watch?v=AICrQzW6CDw&list=PLUxDCM4ujDqXDI2P2Vm2Ruoj6VfQVJRvv&index=7 | |
| Three fatal signs it’s time to add ArchiMate to your toolbox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo swapoff -a | |
| # sudo dd if=/dev/zero of=/swapfile bs=1G count=64 | |
| # sudo dd if=/dev/zero of=/swapfile bs=1MB count=1024 | |
| # for 16 GB | |
| sudo dd if=/dev/zero of=/swapfile bs=1MB count=16384 | |
| sudo chmod 600 /swapfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo docker run -p 8080:8080 ..... | |
| The left-hand side of the port number mapping is the Docker host port to map to and the right-hand side is the Docker container port number. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo swapoff -a | |
| sudo dd if=/dev/zero of=/swapfile bs=1G count=32 | |
| sudo mkswap /swapfile | |
| sudo swapon /swapfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * Exploring How Computers Work | |
| https://www.youtube.com/watch?v=QZwneRb-zqA | |
| * 8-bit computer update - by Ben Eater | |
| https://www.youtube.com/watch?v=HyznrdDSSGM&list=PLowKtXNTBypGqImE405J2565dvjafglHU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ubuntu 18.04 | |
| ------------------------------------------------------- | |
| * How to add Eclipse to Favorites? | |
| https://askubuntu.com/questions/1082340/how-to-add-eclipse-to-favorites | |
| TrustfulSSL.scala | |
| https://gist.github.com/iRevive/4a3c7cb96374da5da80d4538f3da17cb | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| OpenJdk internal working videos, I have not started them yet, will try to cover them all [5-Oct-2019], will be updating when and where I come across good once. | |
| Introduction to HotSpot Internals | |
| https://www.youtube.com/watch?v=XjfhsJarQy0 | |
| Developers’ Introduction to HotSpot Internals | |
| https://www.youtube.com/watch?v=MTTszlLGtt4 | |
| Learn about JVM internals - what does the JVM do? | |
| https://www.youtube.com/watch?v=UwB0OSmkOtQ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/Jarlakxen/Scala-Interview-Questions#general-questions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java process entry point can be found at (launcher) | |
| src/java.base/share/native/launcher/main.c here JLI_Launch is called which is defined in src/java.base/share/native/libjli/java.c file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| scalac -Xprint-pos -Yshow-syms -Yshow-symowners -Yshow-symkinds foryield.scala |
NewerOlder