Skip to content

Instantly share code, notes, and snippets.

View fossouo's full-sized avatar

Donald FOSSOUO fossouo

View GitHub Profile
@fossouo
fossouo / qt5-al2-install.sh
Created September 14, 2022 23:13 — forked from jpbarto/qt5-al2-install.sh
QT5 Install Script
#!/usr/bin/bash
# This script is built to compile Qt5 on an Amazon Linux2-based Amazon Workspace
# This script is known to fail on a Standard Workspace with 2 vCPU and 4 GB of RAM (Out of Memory error suspected)
# Script has been tested on a Power Workspace with 4 vCPU and 32 GB of RAM
# based upon documentation at
# https://doc.qt.io/qt-5/linux-requirements.html
set -e
@fossouo
fossouo / install-git-apache-maven-3.3.9.sh
Last active January 10, 2020 15:26 — forked from miroslavtamas/install-apache-maven-3.3.9.sh
Install Apache Maven 3.3.9 on CentOS
#!/bin/sh
yum install git -y
wget http://www.eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
tar xzf apache-maven-3.3.9-bin.tar.gz
mkdir /usr/local/maven
mv apache-maven-3.3.9/ /usr/local/maven/
alternatives --install /usr/bin/mvn mvn /usr/local/maven/apache-maven-3.3.9/bin/mvn 1
alternatives --config mvn
@fossouo
fossouo / Benchmark-results.txt
Created June 15, 2018 12:27 — forked from saurabhmishra/Benchmark-results.txt
Kafka Benchmark Commands
End-to-end Latency
0.0543 ms ms (median)
0.003125 ms (99th percentile)
5 ms (99.9th percentile)
Producer and consumer
Producer - 1431170.2 records/sec (136.49 MB/sec)
Consumer - 3276754.7021 records/sec (312.4957 MB/sec)