.
├── Classes
│ ├── Bioinformatics
│ │ └── Content
│ │ ├── 00-Inspiration
│ │ ├── 01-eScience
│ │ ├── 02-PlatformTools
│ │ ├── 03-PythonReview
│ │ ├── 04-BioReview
│ │ ├── 05-BioInfoBasics
│ │ ├── 17-NeuralNetworks
│ │ ├── 20-ImageBasics
│ │ ├── 21-BioImage
│ │ ├── 22-BioNetworks
│ │ ├── 23-GraphTheory
│ │ └── 24-CompEpi
│ ├── ComputationalThinking
│ │ ├── Content
│ │ │ ├── 01-Computation
│ │ │ ├── 02-GitLinuxBash
│ │ │ ├── 03-IntroPython
│ │ │ ├── 04-ExpressionsTypes
│ │ │ ├── 05-Branches
│ │ │ ├── 06-Loops
│ │ │ ├── 07-Containers
│ │ │ ├── 08-Functions
│ │ │ ├── 09-ModulesPackages
│ │ │ │ ├── simple_package
│ │ │ │ └── subfolder
│ │ │ ├── 10-DebuggingTesting
│ │ │ ├── 11-TypeHints
│ │ │ ├── 12-Strings
│ │ │ ├── 13-AlgorithmsSoftware
│ │ │ ├── 14-Recursion
│ │ │ ├── 15-ClassesInheritance
│ │ │ ├── 16-TypeFormatDebug
│ │ │ ├── 17-Exceptions
│ │ │ ├── 18-InputOutput
│ │ │ │ ├── docopt
│ │ │ │ │ └── examples
│ │ │ │ │ └── git
│ │ │ │ ├── folder
│ │ │ │ │ ├── subfolder
│ │ │ │ │ │ ├── subsubfolder
│ │ │ │ │ │ │ └── anotherfile.py
│ │ │ │ │ │ └── subsubfolder2
│ │ │ │ │ └── subfolder2
│ │ │ │ └── whatever
│ │ │ ├── 19-TestingFrameworks
│ │ │ ├── 20-IteratorsGenerators
│ │ │ ├── 21-FunctionalProg
│ │ │ ├── 22-DataVis
│ │ │ ├── 23-Regex
│ │ │ └── 24-EvilEval
│ │ └── Syllabus
│ ├── DataStructures
│ │ ├── Content
│ │ │ ├── 00-Inspiration
│ │ │ └── 10b-IntegeterSorts
│ │ └── Syllabus
│ ├── DataStructuresLab
│ │ └── Content
│ │ ├── 00-VirtualMachines
│ │ ├── 01-02-LinuxBash
│ │ │ └── Debian
│ │ └── 03-VersionControl
│ ├── DeepLearning
│ ├── EvolutionaryComputation
│ │ ├── Content
│ │ │ ├── 01-ComputationalProblems
│ │ │ ├── 02-BioAnalogyOrigins
│ │ │ ├── 03-MetaheuristicParts
│ │ │ ├── 04-RepresentMutateRecombine
│ │ │ ├── 05-FitnessSelection
│ │ │ ├── 06-PopularVariants
│ │ │ ├── 07-ParameterTuning
│ │ │ ├── 08-ParameterControl
│ │ │ ├── 09-Implemention
│ │ │ ├── 10-Hybridization
│ │ │ ├── 11-Non-stationaryNoisyFunctionOptimization
│ │ │ ├── 12-MultiobjectiveEAs
│ │ │ ├── 13-ConstraintHandling
│ │ │ ├── 14-InteractiveEAs
│ │ │ ├── 15-Co-evolutionarySystems
│ │ │ ├── 16-AdvancedTheory
│ │ │ ├── 17-EvolutionaryRobotics
│ │ │ └── 18-GeneticProgramming
│ │ └── Syllabus
│ ├── Networking
│ │ ├── Content
│ │ │ ├── 00-Inspiration
│ │ │ ├── 01-Overview
│ │ │ ├── 02-Application
│ │ │ ├── 03-Transport
│ │ │ ├── 04-NetworkData
│ │ │ ├── 05-Security
│ │ │ ├── 06-NetworkControl
│ │ │ ├── 07-DataLink
│ │ │ ├── 08-Wireless
│ │ │ ├── 09-PacketCrafting
│ │ │ ├── 10-DayInLifeOfPacket
│ │ │ └── 12-LanHacking
│ │ └── Syllabus
│ ├── OperatingSystems
│ │ └── Content
│ │ ├── 00-History
│ │ ├── 01-Overview
│ │ ├── 02-Processes
│ │ └── 03-InputOutput
│ ├── ProgrammingCpp
│ │ └── Content
│ └── Security
│ ├── Content
│ │ ├── 00-Inspiration
│ │ ├── 01-InfoSecOverview
│ │ ├── 02-IntroCryptoCaesar
│ │ ├── 03-TranspositionCiphers
│ │ ├── 04-AffineCipher
│ │ ├── 05-SubstitutionFrequency
│ │ ├── 06-OneTimePad
│ │ ├── 07-CryptoMath
│ │ ├── 08-AsymmetricEncryption
│ │ ├── 09-ModernSymmetric
│ │ ├── 10a-SymmetricBlock
│ │ ├── 10b-SymmetricStream
│ │ ├── 11-Hashing
│ │ ├── 12a-AppliedCryptoSystems
│ │ ├── 12b-DeniableForwardSecure
│ │ ├── 13b-ReverseEngineering
│ │ ├── 14-MaliciousSoftware
│ │ ├── 15-BufferOverflow
│ │ ├── 16-Databases
│ │ ├── 17-DefensiveProgramming
│ │ ├── 18-Authentication
│ │ ├── 19a-AccessControls
│ │ ├── 19b-Permissions
│ │ ├── 20-PasswordUserGroup
│ │ ├── 21a-OSHardening
│ │ ├── 21b-Virtualization
│ │ ├── 21c-AppArmorSELinux
│ │ └── 21d-PracticalPersonal
│ └── Syllabus
├── ContactPublicKey
├── ITextras
│ ├── GitMSTwebsite
│ ├── LinuxCampusNetwork
│ └── OpenO365
├── ResearchDevelopment
└── SyllabusGeneral