Skip to content

Instantly share code, notes, and snippets.

View joaompinto's full-sized avatar

João Pinto joaompinto

View GitHub Profile
mkdir C:\rust-server
cd C:\rust-server
curl -o steamcmd.zip https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip
tar -xf steamcmd.zip -C C:\rust-server
cd C:\rust-server\steamcmd
steamcmd.exe +login anonymous +force_install_dir C:\rust-server\rust_server +app_update 258550 validate +quit
cd C:\rust-server\rust_server
notepad start_server.bat
mkdir -p ~/bin
curl -Lo ~/bin/micromamba https://github.com/mamba-org/micromamba-releases/releases/download/1.4.9-0/micromamba-linux-64
chmod 755 ~/bin/micromamba
export MAMBA_ROOT_PREFIX=~/micromamba
micromamba shell init -s bash -p $MAMBA_ROOT_PREFIX
source ~/.bashrc
micromamba config append channels conda-forge
micromamba install -n base -y python=3.11
# pip install adal
from msal import PublicClientApplication
from os import environ
app = PublicClientApplication(
environ['AZURE_CLIENT_ID'],
authority="https://login.microsoftonline.com/common")
result = None # It is just an initial value. Please follow instructions below.
@joaompinto
joaompinto / Caching multi-stage builds in GA.md
Created June 27, 2023 21:07 — forked from UrsaDK/Caching multi-stage builds in GA.md
Speed up your multistage builds in GitHub Actions

Caching multi-stage builds in GitHub Actions

Caching Docker builds in GitHub Actions is an excellent article by @dtinth which analyses various strategies for speeding up builds in GitHub Actions. The upshot of the article is a fairly decisive conclusion that the best two ways to improve build times are:

  1. Build images via a standard docker build command, while using GitHub Packages' Docker registry as a cache = Longer initial build but fastest re-build times.

  2. Build your images via docker integrated BuildKit (DOCKER_BUILDKIT=1 docker build), while using a local registry and actions/cache to persist build caches = Fastest initial build but slightly longer re-build times.

The problem

import os
import socket
import time
import atexit
# Fork the process
pid = os.fork()
if pid == 0:
# This is the child process
@joaompinto
joaompinto / user_lvel_root.sh
Created March 28, 2023 21:11
user level root on alpine
#!/bin/sh
unshare -Urm
cd /tmp/alpine/
mkdir tmp
mount --rbind /tmp tmp
mkdir proc
mount --rbind /proc proc
mkdir dev
mount --rbind /dev dev
mkdir sys
@joaompinto
joaompinto / list_active_x,.py
Created March 16, 2023 21:14
List ActiveX Class IDs and names
# Python re-implemention of the code found at:
#
# https://github.com/openwebos/qt/blob/master/src/activeqt/container/qaxselect.cpp
import winreg
clsid_keys = winreg.OpenKey(winreg.HKEY_CLASSES_ROOT, "CLSID")
i = 0
while True:
i = i + 1
try:
curl -Lo ~/.local/bin/cfssljson https://github.com/cloudflare/cfssl/releases/download/v1.6.3/cfssljson_1.6.3_linux_amd64
curl -Lo ~/.local/bin/cfssl https://github.com/cloudflare/cfssl/releases/download/v1.6.3/cfssl_1.6.3_linux_amd64
chmod 755 ~/.local/bin/cfssl*
# Creating the Certificate Authority
cat > ca-csr.json << _EOF_
{
"CN": "Prototype Test Certificate Authority",
"key": {
"algo": "rsa",
@joaompinto
joaompinto / standaalone-python-install.sh
Created May 18, 2021 18:33
Install standalobe python on Windows
#!/bin/sh
set -eu
cd /tmp
function setup_profile() {
cat >> ~/.bashrc << _EOF_
export PATH=~/usm/python/install:~/usm/python/install/Scripts:\$PATH
_EOF_
}
kind delete cluster
kind create cluster
export OPERATOR_VERSION=v2.0.0-0.g0142d1e9
kubectl create ns cf-operator
helm install cf-operator \
--namespace cf-operator \
--set "global.operator.watchNamespace=kubecf" \
https://s3.amazonaws.com/cf-operators/helm-charts/cf-operator-${OPERATOR_VERSION}.tgz