Administration… Apache Toolcase 28 Nov 202129 Dec 2022 Install Install apache2 via APT sudo apt install apache2 Manage Apache service You can view status, start, stop and restart the service: sudo service apache2 status sudo service apache2 start…
Administration… SSH Toolcase 28 Nov 202125 Jan 2022 Here is a small lists of frequent operations you may want to do regarding your SSH keys Create a SSH key pair On default directory The following command will create…
Administration… Apache virtual hosts example 28 Nov 202128 Nov 2021 Overview To setup virtual hosts on Apache the standard procedure is the following: First, create the directories of the document root for each siteIn the directory /etc/apache2/sites-available, create a configuration…
Libraries… Prepare your computer for OPENGL/GLAD programming (C++) 17 Feb 202120 Feb 2021 This is a tutorial based on the technologies required for the related courses of graphics.di.uoa.gr (x64, windows setup): CMAKE OPENGL 3.3GLFWGLADASSIMPSOILfreetypeirrKlangVS Studio community (latest version) Summary of what you are…
Books… Murachβs Java Servlets and JSP 1 Apr 201822 Jul 2019 Murach's Java Servlets and JSP The best book for Servlets and JSP. Progressive difficulty and a lots of a examples.
Exercises… Operation of a court with semaphores 3 Dec 20172 Oct 2019 Write a set of programs that simulate the operation of a court in a specific case scenario. Synchronization between the processes should be achieved with POSIX or System-V semaphores Resources:…
Install… Install XV6 Operating system 6 Nov 201727 Aug 2019 Summary of what you are going to install: qemuxv6 Summary of the commands: sudo apt update sudo apt install qemu git clone git://github.com/mit-pdos/xv6-public.git make make qemu-nox Here are the steps:…
Administration… MQTT Toolcase 4 Nov 201719 Dec 2021 Install Install Mosquitto sudo apt install mosquitto Install Mosquitto clients Useful for testing. sudo apt install mosquitto-clients Configuration file This file is usually placed at: /etc/mosquitto/mosquitto.conf Baseline configuration # Place…
Books… Design Patterns – Heads first 1 Nov 20172 Oct 2019 Head First Design Patterns - A brain friendly guide The best book for Design patterns. It is not difficult to read and It uses many illustrations which is very good…
Books… Effective Java 1 Oct 20172 Oct 2019 Effective Java This is not a beginner's book. But it is one of the most important intermediate level books you are ever going to read. Seriously. It contains many tips…