Skip to content

Instantly share code, notes, and snippets.

View mhackersu's full-sized avatar
🐧
tokimeku

Mike Hacker mhackersu

🐧
tokimeku
View GitHub Profile
@mhackersu
mhackersu / main.py
Created March 27, 2025 20:27
Standard Deviation Function
import time
import requests
import statistics
def get_exchange_rate(base_currency, target_currency, api_url):
response = requests.get(api_url)
data = response.json()
if 'rates' in data and target_currency in data['rates']:
return data['rates'][target_currency]
else:
@mhackersu
mhackersu / arch-webserver.md
Created February 19, 2025 22:37 — forked from janoliver/tutorial.md
Arch Linux as a Web Server

In this tutorial, I briefly explain how to set up a webserver using nginx, openssl and uwsgi on Arch Linux. The tutorial is applicable to other Linux distributions and goes through the required configuration step by step. It is, I believe, beginner friendly.

0. Version

I updated, changed and tested the tutorial on Dec. 8th, 2013. All commands and configuration files relate to the software versions that are currently available in the Arch package repositories. Especially nginx and uwsgi change often and

Keybase proof

I hereby claim:

  • I am mhackersu on github.
  • I am mhackersu (https://keybase.io/mhackersu) on keybase.
  • I have a public key ASCQkUjaCC4gl2ALKNv3Zf24JBkk9AU3Ttqi0PTj72gg0Ao

To claim this, I am signing this object:

@mhackersu
mhackersu / install-k8s-arch.md
Created September 6, 2022 02:53 — forked from keqiang/install-k8s-arch.md
Install Kubernetes on Bare-metal Arch Linux Using kubeadm

Install Kubernetes on Bare-metal Arch Linux Using kubeadm

You can use root to perform following steps until a regular user is indicated

Install Packages that K8s(actually kubeadm) requires

If one of these packages are not presented, kubeadm will report warnings or errors

pacman -S docker ebtables ethtool socat
@mhackersu
mhackersu / arch_linux_installation.md
Created April 20, 2022 15:30 — forked from OdinsPlasmaRifle/arch_linux_installation.md
LVM on LUKS Arch installation with systemd-boot
@mhackersu
mhackersu / fetch-dev-secrets-from-vault.sh
Created August 11, 2021 17:50 — forked from shtratos/fetch-dev-secrets-from-vault.sh
Bash script to fetch and store secrets from Azure KeyVault
#!/usr/bin/env bash
#
# Fetch secrets for local development from Azure KeyVault
# and print them to stdout as a bunch of env var exports.
# These secrets should be added to your local .env file
# to enable running integration tests locally.
#
KEY_VAULT=$1
function fetch_secret_from_keyvault() {
<div>
<style>
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
<HTML>
<HEAD>
<!-- Anti-flicker snippet (recommended) -->
<style>.async-hide { opacity: 0 !important} </style>
<script>(function(a,s,y,n,c,h,i,d,e){s.className+=' '+y;h.start=1*new Date;
h.end=i=function(){s.className=s.className.replace(RegExp(' ?'+y),'')};
(a[n]=a[n]||[]).hide=h;setTimeout(function(){i();h.end=null},c);h.timeout=c;
})(window,document.documentElement,'async-hide','dataLayer',4000,
{'13139655':true});</script>
<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-58846608-1"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-58846608-1', { 'optimize_id': 'GTM-MMTMTBJ'});</script>