This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sdk install java 23.0.1-librca && sdk use java 23.0.1-librca | |
// java --enable-preview Main.java | |
record Point(int x, int y) {} | |
sealed interface Shape permits Rectangle, Circle {} | |
record Rectangle(int width, int height) implements Shape {} | |
record Circle(int radius) implements Shape {} | |
void main() { | |
var point = new Point(1, 2); | |
println(describePoint(point)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - | |
echo "step1" | |
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list | |
echo "kubeadm install" | |
sudo apt update -y | |
sudo apt -y install vim git curl wget kubelet=1.24.3-00 kubeadm=1.24.3-00 kubectl=1.24.3-00 | |
echo "memory swapoff" | |
sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab | |
sudo swapoff -a | |
sudo modprobe overlay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP INDEX IF EXISTS transfers_in, transfers_out; | |
CREATE INDEX transfers_in ON transfers (target_account_id); | |
CREATE INDEX transfers_out ON transfers (source_account_id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax=docker/dockerfile:1.4 | |
FROM jbangdev/jbang-action as builder | |
WORKDIR / | |
COPY <<EOF main.java | |
//DEPS io.quarkus:quarkus-bom:2.8.0.Final@pom | |
//DEPS io.quarkus:quarkus-resteasy-reactive | |
import javax.ws.rs.*; | |
import javax.ws.rs.core.MediaType; |
This (and related gists) captures how i created my docker swarm architecture. This is intended mostly for my own notes incase i need to re-creeate anything later! As such expect some typos and possibly even an error...
Each major task has its own gist, this is to help with maitainability long term.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
If last close exists: open = last_close, else open = first(price) | |
*/ | |
SELECT | |
time_bucket('1 day', time) AS bucket, | |
symbol, | |
CASE | |
WHEN LAST(price_close, time) IS NOT NULL THEN LAST(price_close, time) | |
ELSE FIRST(price_open, time) | |
END AS price_open |
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
- If you want to add a link, comment or send it to me
- Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak
- Royce Williams list sorted by vendors responses Royce List
- Very detailed list NCSC-NL
- The list maintained by U.S. Cybersecurity and Infrastructure Security Agency: CISA List
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id":"PMTPbtB79fUTnDS2f2Hn7Q_0000", | |
"full_name":"niall merrigan", | |
"first_name":"niall", | |
"middle_initial":null, | |
"middle_name":null, | |
"last_name":"merrigan", | |
"gender":"male", | |
"birth_year":null, | |
"birth_date":null, |
NewerOlder