├── AWS ├── README.md ├── onboarding │ ├── README.md │ ├── aws-account.md │ ├── aws-cli.md │ ├── aws-overview.md │ ├── aws-pricing.md │ ├── cloud-models.md │ ├── saas-paas-vs-iaas.md │ └── serverless.md ├── scripts │ ├── aws-month-costs.sh │ └── aws-services-all-regions.sh └── services │ ├── acm.md │ ├── api-gateway.md │ ├── asg.md │ ├── aws-iac-comparison.md │ ├── batch.md │ ├── beanstalk.md │ ├── cdk.md │ ├── cloudformation.md │ ├── cloudwatch.md │ ├── compute.md │ ├── dbs.md │ ├── dynamodb.md │ ├── ebs-vs-efs-vs-instance-store-vs-s3.md │ ├── ebs.md │ ├── ec2-vs-beanstalk.md │ ├── ec2.md │ ├── ecs.md │ ├── efs.md │ ├── eks.md │ ├── elasticache.md │ ├── elb.md │ ├── example1.md │ ├── fsx.md │ ├── iam.md │ ├── lambda-vs-batch.md │ ├── lambda.md │ ├── lightsail.md │ ├── rds.md │ ├── route-53.md │ ├── s3.md │ ├── sns.md │ └── vpc.md ├── Applications └── Wakapi │ └── README.md ├── CI-CD └── Jenkins │ ├── Jenkinsfile │ ├── README.md │ └── installation.sh ├── Cloudflare └── README.md ├── DataStores ├── PostgreSQL │ └── README.md └── README.md ├── DevOps ├── NexusOSS.md ├── SonarQube.md └── tools │ ├── BUILD │ ├── README.md │ └── devops-tools.Dockerfile ├── Docker ├── commands.md ├── docker-compose-template.yml ├── dockerfile-notes.md ├── install-docker.sh └── swarm-notes.md ├── GIT ├── README.md └── concepts.md ├── GitHub └── actions.md ├── GitOps └── README.md ├── Hugo └── notes.md ├── IaC ├── Ansible │ ├── README.md │ ├── common-code-snippets.md │ ├── examples │ │ ├── 1.hello-world │ │ │ ├── RUNME │ │ │ ├── ansible.cfg │ │ │ └── servers │ │ ├── 10.tags │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 11.files │ │ │ ├── ansible.cfg │ │ │ ├── copy-and-extract-zip-playbook.yml │ │ │ ├── copy-file-playbook.yml │ │ │ ├── files │ │ │ │ ├── dummy_file.txt │ │ │ │ └── dummy_folder.zip │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 12.services │ │ │ ├── ansible.cfg │ │ │ ├── hosts │ │ │ ├── playbook.yml │ │ │ └── run-playbook.sh │ │ ├── 13.users │ │ │ ├── ansible.cfg │ │ │ ├── files │ │ │ │ └── sudoer_superuser │ │ │ ├── hosts │ │ │ ├── playbook.yml │ │ │ └── run-playbook.sh │ │ ├── 14.create-sudo-user-and-remove-become │ │ │ ├── ansible.cfg │ │ │ ├── bootstrap.yml │ │ │ ├── hosts-bootstrap │ │ │ ├── hosts-normal │ │ │ ├── playbook.yml │ │ │ └── run-playbook.sh │ │ ├── 15.roles │ │ │ ├── README.md │ │ │ ├── ansible.cfg │ │ │ ├── hosts │ │ │ ├── playbook.yml │ │ │ ├── roles │ │ │ │ ├── base │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── servers │ │ │ │ │ ├── files │ │ │ │ │ └── dummy-file-from-roles-example │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── run-playbook.sh │ │ ├── 16.host_vars │ │ │ ├── README.md │ │ │ ├── ansible.cfg │ │ │ ├── host_vars │ │ │ │ ├── 192.168.10.77.yml │ │ │ │ ├── 192.168.10.78.yml │ │ │ │ └── 192.168.10.79.yml │ │ │ ├── hosts │ │ │ │ └── servers │ │ │ ├── playbook.yml │ │ │ └── run-playbook.sh │ │ ├── 17.handlers │ │ │ ├── ansible.cfg │ │ │ ├── handlers.yml │ │ │ ├── hosts │ │ │ ├── playbook.yml │ │ │ └── run-playbook.sh │ │ ├── 18.templates │ │ │ ├── ansible.cfg │ │ │ ├── hosts │ │ │ ├── playbook.yml │ │ │ ├── run-playbook.sh │ │ │ └── templates │ │ │ │ └── dummy-template.j2 │ │ ├── 2.become-sudo │ │ │ ├── RUNME │ │ │ ├── ansible.cfg │ │ │ └── servers │ │ ├── 3.first-playbook │ │ │ ├── RUNME │ │ │ ├── ansible.cfg │ │ │ ├── install_package.yml │ │ │ ├── remove_package.yml │ │ │ └── servers │ │ ├── 4.debug-and-logs │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 5.playbook-and-become │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 6.multiple-distros │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 7.improve-playbooks-combine-tasks │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ ├── 8.improve-playbooks-use-variables │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ │ └── 9.groups-target-nodes │ │ │ ├── ansible.cfg │ │ │ ├── dummy-playbook.yml │ │ │ ├── hosts │ │ │ └── run-playbook.sh │ └── structure-template │ │ ├── README.md │ │ ├── RUN_BOOTSTRAP │ │ ├── ansible.cfg │ │ ├── bootstrap.yml │ │ ├── bootstrap_complete.yml │ │ ├── files │ │ └── root-dummy-file │ │ ├── group_vars │ │ ├── all │ │ └── servers.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── host_vars │ │ ├── 192.168.10.77.yml │ │ ├── ansible-test-server-1.yml │ │ └── ansible-test-server-2.yml │ │ ├── hosts │ │ ├── servers.ini │ │ └── servers.yml │ │ ├── logs │ │ └── .gitignore │ │ ├── playbook.yml │ │ ├── roles │ │ └── base │ │ │ ├── files │ │ │ └── base-role-dummy-file │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ └── tasks │ │ │ └── main.yml │ │ ├── templates │ │ └── dummy-root-template.j2 │ │ └── vars │ │ └── other_variables.yml ├── README.md ├── Terraform │ ├── 0-template │ │ ├── .gitignore │ │ └── main.tf │ ├── 1-local │ │ ├── .gitignore │ │ ├── providers.tf │ │ └── resources.tf │ ├── 2-tfstate-backends │ │ ├── .gitignore │ │ ├── providers.tf │ │ └── resources.tf │ ├── 3-variables │ │ ├── .gitignore │ │ ├── custom.tfvars │ │ ├── production.auto.tfvars │ │ ├── providers.tf │ │ ├── resources.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── 4-modulles │ │ ├── .gitignore │ │ ├── local-file │ │ │ ├── .gitignore │ │ │ ├── output.tf │ │ │ ├── providers.tf │ │ │ ├── resources.tf │ │ │ ├── terraform.tfvars │ │ │ └── variables.tf │ │ └── main.tf │ ├── README.md │ ├── aws │ │ ├── README.md │ │ ├── ec2 │ │ │ ├── .gitignore │ │ │ ├── ec2-instances.tf │ │ │ ├── outputs.tf │ │ │ ├── providers.tf │ │ │ ├── terraform.tfvars │ │ │ └── variables.tf │ │ └── s3 │ │ │ ├── .gitignore │ │ │ ├── private-bucket.tf │ │ │ └── providers.tf │ ├── hashicorp-vault.md │ ├── proxmox │ │ ├── README.md │ │ └── clone-from-template-vm │ │ │ ├── .gitignore │ │ │ ├── main.tf │ │ │ ├── terraform.tfvars │ │ │ └── variables.tf │ └── structure-template │ │ ├── .gitignore │ │ ├── README.md │ │ ├── data.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── modules │ │ └── dummy │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── terraform.tfvars │ │ │ └── variables.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ ├── terraform.tfvars │ │ └── variables.tf └── Vagrant │ ├── README.md │ ├── multi-vms │ └── Vagrantfile │ └── ubuntu-focal │ └── Vagrantfile ├── Java ├── Maven-http-server │ ├── .gitignore │ ├── README.md │ ├── checkstyle.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── App.java │ │ └── webapp │ │ │ └── index.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── AppTest.java ├── Simple-http-server │ ├── README.md │ ├── SimpleHttpServer.java │ └── index.html └── maven.md ├── Kubernetes ├── README.md ├── configuration-files │ └── hello-nginx.yml ├── kubeadm-cluster.md └── minikube.md ├── LICENSE ├── Linux ├── Debian │ └── apps-install.sh ├── Kernel │ └── README.md ├── RPM │ ├── CentOS │ │ └── README.md │ ├── README.md │ └── httpd │ │ ├── demo-http-server-simple.sh │ │ └── demo-http-server.sh ├── Systemd │ ├── README.md │ ├── examples │ │ └── ddns-update │ │ │ ├── INSTALL │ │ │ ├── update_ddns.service │ │ │ ├── update_ddns.sh │ │ │ └── update_ddns.timer │ ├── journalctl.md │ ├── my-dummy-service.service │ ├── service-template.service │ ├── service.md │ ├── target.md │ └── timer.md ├── Ubuntu │ └── workspaces.md ├── apt │ └── README.md ├── awesome-cli-tools.md ├── bash │ ├── bash-expansions.md │ ├── brackets.md │ ├── conditions.md │ ├── custom-bash-prompt.md │ ├── loops.md │ ├── program-variables.sh │ ├── uuid.md │ └── variables.md ├── bootloader.md ├── bu │ └── snapshots.md ├── build-and-install-kernel.md ├── cgroup │ └── README.md ├── chroot-liveusb.md ├── dnf │ └── README.md ├── files │ ├── files-on-unix.md │ └── system-info-files.md ├── load-average.md ├── logs │ └── README.md ├── misc │ └── README.md ├── processes.md ├── storage │ ├── disks-manipulation.md │ └── nfs.md ├── sudo.md ├── useful-commands.md └── users-management.md ├── Markdown ├── highlights.md ├── mermaid.md └── unicodes.md ├── Mikrotik ├── 0.Fresh-install.md ├── 1.Mikrotik-update.md ├── 2.Backup.md ├── Firewall.md ├── OVPN │ ├── OVPN-notes.md │ └── template.ovpn └── default-configuration ├── Misc ├── ipmi.md └── mdm.md ├── Monitoring ├── Prometheus │ ├── README.md │ └── examples │ │ └── hello-world │ │ ├── README.md │ │ └── prometheus.yml └── grafana.md ├── Networks ├── CCNA │ ├── README.md │ ├── cisco-packet-tracer.md │ └── sfp.md ├── VLAN │ └── README.md ├── commands.md ├── dhcpcd.md ├── dmz.md ├── dns-records.md ├── firewalls.md ├── high-availability.md ├── ip.md ├── mDNS.md ├── openwrt │ └── README.md ├── osi.md ├── packet-capture.md ├── pfsense │ └── README.md ├── ports.md ├── protocols │ └── tftp.md └── static-ip.md ├── Nginx-Proxy-Manager ├── README.md └── doc │ ├── npm-proxy.png │ └── npm-ssl.png ├── Proxmox ├── NVIDIA-GPU.sh ├── Portainer.md ├── README.md ├── backup-and-snapshots.md ├── cli.md ├── clustering.md ├── create-CT-template.md ├── create-CT.md ├── create-VM-template.md ├── create-VM.md ├── firewall.md ├── high-availability.md ├── installation.md ├── networking.md ├── post-installation.md ├── storage.md └── user-management.md ├── RDP ├── README.md └── Rustdesk.md ├── README.md ├── Rust └── notes.rs ├── SSH ├── README.md ├── reverse-shell.md ├── ssh-tunneling.md └── sshfs.md ├── Ventoy └── README.md ├── Virtualization ├── Gnome-boxes │ └── README.md ├── Multipass │ └── README.md └── Virtualbox │ └── ova-to-vm.sh ├── Web ├── CSS.md └── server │ └── static-demo-website │ ├── css │ └── style.css │ ├── index.html │ └── js │ └── function.js ├── Wordpress └── README.md └── ZSH └── fonts.md /AWS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/README.md -------------------------------------------------------------------------------- /AWS/onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/README.md -------------------------------------------------------------------------------- /AWS/onboarding/aws-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/aws-account.md -------------------------------------------------------------------------------- /AWS/onboarding/aws-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/aws-cli.md -------------------------------------------------------------------------------- /AWS/onboarding/aws-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/aws-overview.md -------------------------------------------------------------------------------- /AWS/onboarding/aws-pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/aws-pricing.md -------------------------------------------------------------------------------- /AWS/onboarding/cloud-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/cloud-models.md -------------------------------------------------------------------------------- /AWS/onboarding/saas-paas-vs-iaas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/saas-paas-vs-iaas.md -------------------------------------------------------------------------------- /AWS/onboarding/serverless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/onboarding/serverless.md -------------------------------------------------------------------------------- /AWS/scripts/aws-month-costs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/scripts/aws-month-costs.sh -------------------------------------------------------------------------------- /AWS/scripts/aws-services-all-regions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/scripts/aws-services-all-regions.sh -------------------------------------------------------------------------------- /AWS/services/acm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/acm.md -------------------------------------------------------------------------------- /AWS/services/api-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/api-gateway.md -------------------------------------------------------------------------------- /AWS/services/asg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/asg.md -------------------------------------------------------------------------------- /AWS/services/aws-iac-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/aws-iac-comparison.md -------------------------------------------------------------------------------- /AWS/services/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/batch.md -------------------------------------------------------------------------------- /AWS/services/beanstalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/beanstalk.md -------------------------------------------------------------------------------- /AWS/services/cdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/cdk.md -------------------------------------------------------------------------------- /AWS/services/cloudformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/cloudformation.md -------------------------------------------------------------------------------- /AWS/services/cloudwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/cloudwatch.md -------------------------------------------------------------------------------- /AWS/services/compute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/compute.md -------------------------------------------------------------------------------- /AWS/services/dbs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/dbs.md -------------------------------------------------------------------------------- /AWS/services/dynamodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/dynamodb.md -------------------------------------------------------------------------------- /AWS/services/ebs-vs-efs-vs-instance-store-vs-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/ebs-vs-efs-vs-instance-store-vs-s3.md -------------------------------------------------------------------------------- /AWS/services/ebs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/ebs.md -------------------------------------------------------------------------------- /AWS/services/ec2-vs-beanstalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/ec2-vs-beanstalk.md -------------------------------------------------------------------------------- /AWS/services/ec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/ec2.md -------------------------------------------------------------------------------- /AWS/services/ecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/ecs.md -------------------------------------------------------------------------------- /AWS/services/efs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/efs.md -------------------------------------------------------------------------------- /AWS/services/eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/eks.md -------------------------------------------------------------------------------- /AWS/services/elasticache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/elasticache.md -------------------------------------------------------------------------------- /AWS/services/elb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/elb.md -------------------------------------------------------------------------------- /AWS/services/example1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/example1.md -------------------------------------------------------------------------------- /AWS/services/fsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/fsx.md -------------------------------------------------------------------------------- /AWS/services/iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/iam.md -------------------------------------------------------------------------------- /AWS/services/lambda-vs-batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/lambda-vs-batch.md -------------------------------------------------------------------------------- /AWS/services/lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/lambda.md -------------------------------------------------------------------------------- /AWS/services/lightsail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/lightsail.md -------------------------------------------------------------------------------- /AWS/services/rds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/rds.md -------------------------------------------------------------------------------- /AWS/services/route-53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/route-53.md -------------------------------------------------------------------------------- /AWS/services/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/s3.md -------------------------------------------------------------------------------- /AWS/services/sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/sns.md -------------------------------------------------------------------------------- /AWS/services/vpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/AWS/services/vpc.md -------------------------------------------------------------------------------- /Applications/Wakapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Applications/Wakapi/README.md -------------------------------------------------------------------------------- /CI-CD/Jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/CI-CD/Jenkins/Jenkinsfile -------------------------------------------------------------------------------- /CI-CD/Jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/CI-CD/Jenkins/README.md -------------------------------------------------------------------------------- /CI-CD/Jenkins/installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/CI-CD/Jenkins/installation.sh -------------------------------------------------------------------------------- /Cloudflare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Cloudflare/README.md -------------------------------------------------------------------------------- /DataStores/PostgreSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DataStores/PostgreSQL/README.md -------------------------------------------------------------------------------- /DataStores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DataStores/README.md -------------------------------------------------------------------------------- /DevOps/NexusOSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DevOps/NexusOSS.md -------------------------------------------------------------------------------- /DevOps/SonarQube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DevOps/SonarQube.md -------------------------------------------------------------------------------- /DevOps/tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DevOps/tools/BUILD -------------------------------------------------------------------------------- /DevOps/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DevOps/tools/README.md -------------------------------------------------------------------------------- /DevOps/tools/devops-tools.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/DevOps/tools/devops-tools.Dockerfile -------------------------------------------------------------------------------- /Docker/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Docker/commands.md -------------------------------------------------------------------------------- /Docker/docker-compose-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Docker/docker-compose-template.yml -------------------------------------------------------------------------------- /Docker/dockerfile-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Docker/dockerfile-notes.md -------------------------------------------------------------------------------- /Docker/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Docker/install-docker.sh -------------------------------------------------------------------------------- /Docker/swarm-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Docker/swarm-notes.md -------------------------------------------------------------------------------- /GIT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/GIT/README.md -------------------------------------------------------------------------------- /GIT/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/GIT/concepts.md -------------------------------------------------------------------------------- /GitHub/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/GitHub/actions.md -------------------------------------------------------------------------------- /GitOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/GitOps/README.md -------------------------------------------------------------------------------- /Hugo/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Hugo/notes.md -------------------------------------------------------------------------------- /IaC/Ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/README.md -------------------------------------------------------------------------------- /IaC/Ansible/common-code-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/common-code-snippets.md -------------------------------------------------------------------------------- /IaC/Ansible/examples/1.hello-world/RUNME: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ansible all -m ping -------------------------------------------------------------------------------- /IaC/Ansible/examples/1.hello-world/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/1.hello-world/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/1.hello-world/servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/1.hello-world/servers -------------------------------------------------------------------------------- /IaC/Ansible/examples/10.tags/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/10.tags/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/10.tags/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/10.tags/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/10.tags/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/10.tags/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/10.tags/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/10.tags/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/copy-and-extract-zip-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/copy-and-extract-zip-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/copy-file-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/copy-file-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/files/dummy_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/files/dummy_file.txt -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/files/dummy_folder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/files/dummy_folder.zip -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/11.files/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/11.files/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/12.services/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/12.services/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/12.services/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/12.services/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/12.services/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/12.services/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/12.services/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/12.services/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/13.users/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/13.users/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/13.users/files/sudoer_superuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/13.users/files/sudoer_superuser -------------------------------------------------------------------------------- /IaC/Ansible/examples/13.users/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/13.users/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/13.users/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/13.users/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/13.users/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/13.users/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/bootstrap.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/hosts-bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/hosts-bootstrap -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/hosts-normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/hosts-normal -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/14.create-sudo-user-and-remove-become/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/14.create-sudo-user-and-remove-become/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/README.md -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/roles/base/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/roles/base/tasks/main.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/roles/servers/files/dummy-file-from-roles-example: -------------------------------------------------------------------------------- 1 | an empty file -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/roles/servers/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/roles/servers/tasks/main.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/15.roles/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/15.roles/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/README.md -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.77.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.77.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.78.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.78.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.79.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/host_vars/192.168.10.79.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/hosts/servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/hosts/servers -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/16.host_vars/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/16.host_vars/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/17.handlers/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/17.handlers/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/17.handlers/handlers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/17.handlers/handlers.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/17.handlers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/17.handlers/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/17.handlers/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/17.handlers/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/17.handlers/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/17.handlers/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/18.templates/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/18.templates/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/18.templates/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/18.templates/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/18.templates/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/18.templates/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/18.templates/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/18.templates/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/18.templates/templates/dummy-template.j2: -------------------------------------------------------------------------------- 1 | Some random value: {{ template_dummy_variable }} -------------------------------------------------------------------------------- /IaC/Ansible/examples/2.become-sudo/RUNME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/2.become-sudo/RUNME -------------------------------------------------------------------------------- /IaC/Ansible/examples/2.become-sudo/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/2.become-sudo/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/2.become-sudo/servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/2.become-sudo/servers -------------------------------------------------------------------------------- /IaC/Ansible/examples/3.first-playbook/RUNME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/3.first-playbook/RUNME -------------------------------------------------------------------------------- /IaC/Ansible/examples/3.first-playbook/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/3.first-playbook/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/3.first-playbook/install_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/3.first-playbook/install_package.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/3.first-playbook/remove_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/3.first-playbook/remove_package.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/3.first-playbook/servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/3.first-playbook/servers -------------------------------------------------------------------------------- /IaC/Ansible/examples/4.debug-and-logs/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/4.debug-and-logs/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/4.debug-and-logs/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/4.debug-and-logs/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/4.debug-and-logs/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/4.debug-and-logs/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/4.debug-and-logs/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/4.debug-and-logs/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/5.playbook-and-become/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/5.playbook-and-become/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/5.playbook-and-become/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/5.playbook-and-become/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/5.playbook-and-become/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/5.playbook-and-become/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/5.playbook-and-become/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/5.playbook-and-become/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/6.multiple-distros/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/6.multiple-distros/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/6.multiple-distros/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/6.multiple-distros/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/6.multiple-distros/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/6.multiple-distros/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/6.multiple-distros/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/6.multiple-distros/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/7.improve-playbooks-combine-tasks/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/7.improve-playbooks-combine-tasks/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/7.improve-playbooks-combine-tasks/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/7.improve-playbooks-combine-tasks/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/7.improve-playbooks-combine-tasks/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/7.improve-playbooks-combine-tasks/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/7.improve-playbooks-combine-tasks/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/7.improve-playbooks-combine-tasks/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/8.improve-playbooks-use-variables/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/8.improve-playbooks-use-variables/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/8.improve-playbooks-use-variables/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/8.improve-playbooks-use-variables/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/8.improve-playbooks-use-variables/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/8.improve-playbooks-use-variables/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/8.improve-playbooks-use-variables/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/8.improve-playbooks-use-variables/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/examples/9.groups-target-nodes/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/9.groups-target-nodes/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/examples/9.groups-target-nodes/dummy-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/9.groups-target-nodes/dummy-playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/examples/9.groups-target-nodes/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/9.groups-target-nodes/hosts -------------------------------------------------------------------------------- /IaC/Ansible/examples/9.groups-target-nodes/run-playbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/examples/9.groups-target-nodes/run-playbook.sh -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/README.md -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/RUN_BOOTSTRAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/RUN_BOOTSTRAP -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/ansible.cfg -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/bootstrap.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/bootstrap_complete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/bootstrap_complete.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/files/root-dummy-file: -------------------------------------------------------------------------------- 1 | root dummy file -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/group_vars/all: -------------------------------------------------------------------------------- 1 | group_name: -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/group_vars/servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/group_vars/servers.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/handlers/main.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/host_vars/192.168.10.77.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/host_vars/192.168.10.77.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/host_vars/ansible-test-server-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/host_vars/ansible-test-server-1.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/host_vars/ansible-test-server-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/host_vars/ansible-test-server-2.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/hosts/servers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/hosts/servers.ini -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/hosts/servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/hosts/servers.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/playbook.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/roles/base/files/base-role-dummy-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/roles/base/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/roles/base/handlers/main.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/roles/base/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/roles/base/tasks/main.yml -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/templates/dummy-root-template.j2: -------------------------------------------------------------------------------- 1 | Some random value: {{ root_level_template }} -------------------------------------------------------------------------------- /IaC/Ansible/structure-template/vars/other_variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Ansible/structure-template/vars/other_variables.yml -------------------------------------------------------------------------------- /IaC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/README.md -------------------------------------------------------------------------------- /IaC/Terraform/0-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/0-template/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/0-template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/0-template/main.tf -------------------------------------------------------------------------------- /IaC/Terraform/1-local/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/1-local/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/1-local/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/1-local/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/1-local/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/1-local/resources.tf -------------------------------------------------------------------------------- /IaC/Terraform/2-tfstate-backends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/2-tfstate-backends/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/2-tfstate-backends/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/2-tfstate-backends/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/2-tfstate-backends/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/2-tfstate-backends/resources.tf -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/custom.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/custom.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/production.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/production.auto.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/resources.tf -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/3-variables/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/3-variables/variables.tf -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/output.tf -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/resources.tf -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/local-file/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/local-file/variables.tf -------------------------------------------------------------------------------- /IaC/Terraform/4-modulles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/4-modulles/main.tf -------------------------------------------------------------------------------- /IaC/Terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/README.md -------------------------------------------------------------------------------- /IaC/Terraform/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/README.md -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/ec2-instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/ec2-instances.tf -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/outputs.tf -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/aws/ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/ec2/variables.tf -------------------------------------------------------------------------------- /IaC/Terraform/aws/s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/s3/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/aws/s3/private-bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/s3/private-bucket.tf -------------------------------------------------------------------------------- /IaC/Terraform/aws/s3/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/aws/s3/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/hashicorp-vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/hashicorp-vault.md -------------------------------------------------------------------------------- /IaC/Terraform/proxmox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/proxmox/README.md -------------------------------------------------------------------------------- /IaC/Terraform/proxmox/clone-from-template-vm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/proxmox/clone-from-template-vm/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/proxmox/clone-from-template-vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/proxmox/clone-from-template-vm/main.tf -------------------------------------------------------------------------------- /IaC/Terraform/proxmox/clone-from-template-vm/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/proxmox/clone-from-template-vm/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/proxmox/clone-from-template-vm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/proxmox/clone-from-template-vm/variables.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/.gitignore -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/README.md -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/data.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/locals.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | environment = "production" 3 | } 4 | -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/main.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/modules/dummy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/modules/dummy/main.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/modules/dummy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/modules/dummy/outputs.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/modules/dummy/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/modules/dummy/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/modules/dummy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/modules/dummy/variables.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/outputs.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/providers.tf -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/terraform.tfvars -------------------------------------------------------------------------------- /IaC/Terraform/structure-template/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Terraform/structure-template/variables.tf -------------------------------------------------------------------------------- /IaC/Vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Vagrant/README.md -------------------------------------------------------------------------------- /IaC/Vagrant/multi-vms/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Vagrant/multi-vms/Vagrantfile -------------------------------------------------------------------------------- /IaC/Vagrant/ubuntu-focal/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/IaC/Vagrant/ubuntu-focal/Vagrantfile -------------------------------------------------------------------------------- /Java/Maven-http-server/.gitignore: -------------------------------------------------------------------------------- 1 | tomcat.*/ 2 | target/ -------------------------------------------------------------------------------- /Java/Maven-http-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/README.md -------------------------------------------------------------------------------- /Java/Maven-http-server/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/checkstyle.xml -------------------------------------------------------------------------------- /Java/Maven-http-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/pom.xml -------------------------------------------------------------------------------- /Java/Maven-http-server/src/main/java/com/example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/src/main/java/com/example/App.java -------------------------------------------------------------------------------- /Java/Maven-http-server/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/src/main/webapp/index.html -------------------------------------------------------------------------------- /Java/Maven-http-server/src/test/java/com/example/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Maven-http-server/src/test/java/com/example/AppTest.java -------------------------------------------------------------------------------- /Java/Simple-http-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Simple-http-server/README.md -------------------------------------------------------------------------------- /Java/Simple-http-server/SimpleHttpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Simple-http-server/SimpleHttpServer.java -------------------------------------------------------------------------------- /Java/Simple-http-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/Simple-http-server/index.html -------------------------------------------------------------------------------- /Java/maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Java/maven.md -------------------------------------------------------------------------------- /Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Kubernetes/README.md -------------------------------------------------------------------------------- /Kubernetes/configuration-files/hello-nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Kubernetes/configuration-files/hello-nginx.yml -------------------------------------------------------------------------------- /Kubernetes/kubeadm-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Kubernetes/kubeadm-cluster.md -------------------------------------------------------------------------------- /Kubernetes/minikube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Kubernetes/minikube.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/Debian/apps-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Debian/apps-install.sh -------------------------------------------------------------------------------- /Linux/Kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Kernel/README.md -------------------------------------------------------------------------------- /Linux/RPM/CentOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/RPM/CentOS/README.md -------------------------------------------------------------------------------- /Linux/RPM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/RPM/README.md -------------------------------------------------------------------------------- /Linux/RPM/httpd/demo-http-server-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/RPM/httpd/demo-http-server-simple.sh -------------------------------------------------------------------------------- /Linux/RPM/httpd/demo-http-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/RPM/httpd/demo-http-server.sh -------------------------------------------------------------------------------- /Linux/Systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/README.md -------------------------------------------------------------------------------- /Linux/Systemd/examples/ddns-update/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/examples/ddns-update/INSTALL -------------------------------------------------------------------------------- /Linux/Systemd/examples/ddns-update/update_ddns.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/examples/ddns-update/update_ddns.service -------------------------------------------------------------------------------- /Linux/Systemd/examples/ddns-update/update_ddns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/examples/ddns-update/update_ddns.sh -------------------------------------------------------------------------------- /Linux/Systemd/examples/ddns-update/update_ddns.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/examples/ddns-update/update_ddns.timer -------------------------------------------------------------------------------- /Linux/Systemd/journalctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/journalctl.md -------------------------------------------------------------------------------- /Linux/Systemd/my-dummy-service.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/my-dummy-service.service -------------------------------------------------------------------------------- /Linux/Systemd/service-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/service-template.service -------------------------------------------------------------------------------- /Linux/Systemd/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/service.md -------------------------------------------------------------------------------- /Linux/Systemd/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/target.md -------------------------------------------------------------------------------- /Linux/Systemd/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Systemd/timer.md -------------------------------------------------------------------------------- /Linux/Ubuntu/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/Ubuntu/workspaces.md -------------------------------------------------------------------------------- /Linux/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/apt/README.md -------------------------------------------------------------------------------- /Linux/awesome-cli-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/awesome-cli-tools.md -------------------------------------------------------------------------------- /Linux/bash/bash-expansions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/bash-expansions.md -------------------------------------------------------------------------------- /Linux/bash/brackets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/brackets.md -------------------------------------------------------------------------------- /Linux/bash/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/conditions.md -------------------------------------------------------------------------------- /Linux/bash/custom-bash-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/custom-bash-prompt.md -------------------------------------------------------------------------------- /Linux/bash/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/loops.md -------------------------------------------------------------------------------- /Linux/bash/program-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/program-variables.sh -------------------------------------------------------------------------------- /Linux/bash/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/uuid.md -------------------------------------------------------------------------------- /Linux/bash/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bash/variables.md -------------------------------------------------------------------------------- /Linux/bootloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bootloader.md -------------------------------------------------------------------------------- /Linux/bu/snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/bu/snapshots.md -------------------------------------------------------------------------------- /Linux/build-and-install-kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/build-and-install-kernel.md -------------------------------------------------------------------------------- /Linux/cgroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/cgroup/README.md -------------------------------------------------------------------------------- /Linux/chroot-liveusb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/chroot-liveusb.md -------------------------------------------------------------------------------- /Linux/dnf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/dnf/README.md -------------------------------------------------------------------------------- /Linux/files/files-on-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/files/files-on-unix.md -------------------------------------------------------------------------------- /Linux/files/system-info-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/files/system-info-files.md -------------------------------------------------------------------------------- /Linux/load-average.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/load-average.md -------------------------------------------------------------------------------- /Linux/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/logs/README.md -------------------------------------------------------------------------------- /Linux/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/misc/README.md -------------------------------------------------------------------------------- /Linux/processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/processes.md -------------------------------------------------------------------------------- /Linux/storage/disks-manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/storage/disks-manipulation.md -------------------------------------------------------------------------------- /Linux/storage/nfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/storage/nfs.md -------------------------------------------------------------------------------- /Linux/sudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/sudo.md -------------------------------------------------------------------------------- /Linux/useful-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/useful-commands.md -------------------------------------------------------------------------------- /Linux/users-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Linux/users-management.md -------------------------------------------------------------------------------- /Markdown/highlights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Markdown/highlights.md -------------------------------------------------------------------------------- /Markdown/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Markdown/mermaid.md -------------------------------------------------------------------------------- /Markdown/unicodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Markdown/unicodes.md -------------------------------------------------------------------------------- /Mikrotik/0.Fresh-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/0.Fresh-install.md -------------------------------------------------------------------------------- /Mikrotik/1.Mikrotik-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/1.Mikrotik-update.md -------------------------------------------------------------------------------- /Mikrotik/2.Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/2.Backup.md -------------------------------------------------------------------------------- /Mikrotik/Firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/Firewall.md -------------------------------------------------------------------------------- /Mikrotik/OVPN/OVPN-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/OVPN/OVPN-notes.md -------------------------------------------------------------------------------- /Mikrotik/OVPN/template.ovpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/OVPN/template.ovpn -------------------------------------------------------------------------------- /Mikrotik/default-configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Mikrotik/default-configuration -------------------------------------------------------------------------------- /Misc/ipmi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Misc/ipmi.md -------------------------------------------------------------------------------- /Misc/mdm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Misc/mdm.md -------------------------------------------------------------------------------- /Monitoring/Prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Monitoring/Prometheus/README.md -------------------------------------------------------------------------------- /Monitoring/Prometheus/examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Monitoring/Prometheus/examples/hello-world/README.md -------------------------------------------------------------------------------- /Monitoring/Prometheus/examples/hello-world/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Monitoring/Prometheus/examples/hello-world/prometheus.yml -------------------------------------------------------------------------------- /Monitoring/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Monitoring/grafana.md -------------------------------------------------------------------------------- /Networks/CCNA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/CCNA/README.md -------------------------------------------------------------------------------- /Networks/CCNA/cisco-packet-tracer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/CCNA/cisco-packet-tracer.md -------------------------------------------------------------------------------- /Networks/CCNA/sfp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/CCNA/sfp.md -------------------------------------------------------------------------------- /Networks/VLAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/VLAN/README.md -------------------------------------------------------------------------------- /Networks/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/commands.md -------------------------------------------------------------------------------- /Networks/dhcpcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/dhcpcd.md -------------------------------------------------------------------------------- /Networks/dmz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/dmz.md -------------------------------------------------------------------------------- /Networks/dns-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/dns-records.md -------------------------------------------------------------------------------- /Networks/firewalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/firewalls.md -------------------------------------------------------------------------------- /Networks/high-availability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/high-availability.md -------------------------------------------------------------------------------- /Networks/ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/ip.md -------------------------------------------------------------------------------- /Networks/mDNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/mDNS.md -------------------------------------------------------------------------------- /Networks/openwrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/openwrt/README.md -------------------------------------------------------------------------------- /Networks/osi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/osi.md -------------------------------------------------------------------------------- /Networks/packet-capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/packet-capture.md -------------------------------------------------------------------------------- /Networks/pfsense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/pfsense/README.md -------------------------------------------------------------------------------- /Networks/ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/ports.md -------------------------------------------------------------------------------- /Networks/protocols/tftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/protocols/tftp.md -------------------------------------------------------------------------------- /Networks/static-ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Networks/static-ip.md -------------------------------------------------------------------------------- /Nginx-Proxy-Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Nginx-Proxy-Manager/README.md -------------------------------------------------------------------------------- /Nginx-Proxy-Manager/doc/npm-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Nginx-Proxy-Manager/doc/npm-proxy.png -------------------------------------------------------------------------------- /Nginx-Proxy-Manager/doc/npm-ssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Nginx-Proxy-Manager/doc/npm-ssl.png -------------------------------------------------------------------------------- /Proxmox/NVIDIA-GPU.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/NVIDIA-GPU.sh -------------------------------------------------------------------------------- /Proxmox/Portainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/Portainer.md -------------------------------------------------------------------------------- /Proxmox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/README.md -------------------------------------------------------------------------------- /Proxmox/backup-and-snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/backup-and-snapshots.md -------------------------------------------------------------------------------- /Proxmox/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/cli.md -------------------------------------------------------------------------------- /Proxmox/clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/clustering.md -------------------------------------------------------------------------------- /Proxmox/create-CT-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/create-CT-template.md -------------------------------------------------------------------------------- /Proxmox/create-CT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/create-CT.md -------------------------------------------------------------------------------- /Proxmox/create-VM-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/create-VM-template.md -------------------------------------------------------------------------------- /Proxmox/create-VM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/create-VM.md -------------------------------------------------------------------------------- /Proxmox/firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/firewall.md -------------------------------------------------------------------------------- /Proxmox/high-availability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/high-availability.md -------------------------------------------------------------------------------- /Proxmox/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/installation.md -------------------------------------------------------------------------------- /Proxmox/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/networking.md -------------------------------------------------------------------------------- /Proxmox/post-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/post-installation.md -------------------------------------------------------------------------------- /Proxmox/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/storage.md -------------------------------------------------------------------------------- /Proxmox/user-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Proxmox/user-management.md -------------------------------------------------------------------------------- /RDP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/RDP/README.md -------------------------------------------------------------------------------- /RDP/Rustdesk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/RDP/Rustdesk.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/README.md -------------------------------------------------------------------------------- /Rust/notes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Rust/notes.rs -------------------------------------------------------------------------------- /SSH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/SSH/README.md -------------------------------------------------------------------------------- /SSH/reverse-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/SSH/reverse-shell.md -------------------------------------------------------------------------------- /SSH/ssh-tunneling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/SSH/ssh-tunneling.md -------------------------------------------------------------------------------- /SSH/sshfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/SSH/sshfs.md -------------------------------------------------------------------------------- /Ventoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Ventoy/README.md -------------------------------------------------------------------------------- /Virtualization/Gnome-boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Virtualization/Gnome-boxes/README.md -------------------------------------------------------------------------------- /Virtualization/Multipass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Virtualization/Multipass/README.md -------------------------------------------------------------------------------- /Virtualization/Virtualbox/ova-to-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Virtualization/Virtualbox/ova-to-vm.sh -------------------------------------------------------------------------------- /Web/CSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Web/CSS.md -------------------------------------------------------------------------------- /Web/server/static-demo-website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Web/server/static-demo-website/css/style.css -------------------------------------------------------------------------------- /Web/server/static-demo-website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Web/server/static-demo-website/index.html -------------------------------------------------------------------------------- /Web/server/static-demo-website/js/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Web/server/static-demo-website/js/function.js -------------------------------------------------------------------------------- /Wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/Wordpress/README.md -------------------------------------------------------------------------------- /ZSH/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSpyridakis/notes/HEAD/ZSH/fonts.md --------------------------------------------------------------------------------