Recent Posts
Setup Terraform
msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi aws configure sso &REM Enter the access key (AWS_ACCESS_KEY_ID), secret (AWS_SECRET_ACCESS_KEY), default region (AWS_DEFAULT_REGION) Get-ExecutionPolicy &REM If this isn't Unrestricted, "Set-ExecutionPolicy AllSigned" / "Set-ExecutionPolicy Bypass -Scope Process" Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) choco install aws-vault https://www.terraform.io/downloads https://releases.hashicorp.com/terraform/1.1.4/terraform_1.1.4_windows_amd64.zip
read more
Mariadb Column Store
On Debian Linux 10,
apt update apt-cache search mariadb apt install -y mariadb-server root@debian:~# mariadb Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 36 Server version: 10.3.34-MariaDB-0+deb10u1 Debian 10 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.
read more
Java Modules
Features in Java since 1.8:
https://ondro.inginea.eu/index.php/new-features-in-java-versions-since-java-8/
https://www.marcobehler.com/guides/a-guide-to-java-versions-and-features
//In module-info.java at root of packages module my.myModule { //requires their.theirMofile -- Compile time and run time dependency //requires static ... -- Compile time dependency //requires transitive ... //exports com.my.package.name //exports com.my.package.name to com.other.package //uses ... //provides MyInterface with MyInterfaceImpl } //See more at https://www.baeldung.com/java-9-modularity
read more