- The Java Language Specification, Java SE 8 Edition
- OCA, Oracle Certified Associate Java SE 8 Programmer I, Study Guide
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
#!/usr/bin/python | |
import random | |
def getMaxNumber(): | |
i = 0 | |
while(True): | |
try: | |
maxNumber = int(input('Up to what number would you like to guess? ')) | |
break |
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
# Install ARCH Linux with encrypted file-system and UEFI | |
# Useful links -------------------------------------------------------------------- | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Partitioning (https://wiki.archlinux.org/index.php/partitioning) | |
# dm-crypt/Device encryption (https://wiki.archlinux.org/index.php/Dm-crypt/Device_encryption) | |
# dm-crypt/Encrypting an entire system (https://wiki.archlinux.org/index.php/Dm-crypt/Encrypting_an_entire_system) | |
# --------------------------------------------------------------------------------- | |
# Download the archiso image from https://www.archlinux.org/ |