Skip to content

Instantly share code, notes, and snippets.

@themeteorchef
themeteorchef / Javascript ISO country code to country name conversion
Created October 5, 2015 20:16 — forked from maephisto/Javascript ISO country code to country name conversion
ISO 3166-1 alpha-2 country code to country name conversion with a simple Javascript implementation, an array and a function.
var isoCountries = {
'AF' : 'Afghanistan',
'AX' : 'Aland Islands',
'AL' : 'Albania',
'DZ' : 'Algeria',
'AS' : 'American Samoa',
'AD' : 'Andorra',
'AO' : 'Angola',
'AI' : 'Anguilla',
'AQ' : 'Antarctica',
@scyto
scyto / proxmox-backup.md
Last active May 1, 2024 08:05
setup promox backup server and synology as data store over SMB

Proxmox Backup

At this time proxmox backup only backs up VM and Containers - ths guide covers that.

What i didn't realize is the backup job is still defined on the cluster and PBS provides a new storage type that dedupes and managed all the vzdump files created - which is cool.

I decided to run proxmox backup on my Synology NAS where it has more reliable connection to the NAS (i.e. via memory) for doing deduple, garbage collection, prune, verification etc. However the steps here generally remain true.

Once again i used one of Derek Seaman's Awesome Blogs for the basis of this - but with my own tweaks (like using SMB instead of CIFS. As of 9/21 my tweaks are signifcnant, in the original blog it is missing steps to enable encoding acceleration in CTs and VMs.

this gist is part of this series

#!/usr/bin/env bash
# Abort sign off on any error
set -e
# Start the benchmark timer
SECONDS=0
# Repository introspection
OWNER=$(gh repo view --json owner --jq .owner.login)
@hitthemoney
hitthemoney / Krunker WebSockets Explained.md
Last active May 1, 2024 08:03
This markdown file explains Krunker.io's social websockets and how to connect, get data from them, captchas, and more.

Krunker WebSockets Explained

WebSocket

WebSocket is a protocol over http. You should read: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API for more info on WebSocket.

Encoding/Decoding

Krunker uses msgpack for decoding and encoding packets. Msgpack is also smaller and sometimes faster depending on the implementation you use/make.

Packets

Like I said earlier, Krunker uses msgpack for decoding and encoding packets. A ping packet would like this: ["po"] which you send when you get a ["pi"] packet, and the ping result packet you receive is ["pir", ]. For fetching a profile, you can use ["r", "profile", , null]. The result packet would be like ["0", "profile", , , , , ...etc]. For finding packets, you can download https://krunker.io/social.html using a command like cURL, formatting the file and lo

@g-a-d
g-a-d / get_api_token.py
Created April 22, 2022 16:02
Get Github API token for a Github app (python)
def get_github_token(app_id, pem_file, organization_slug, repository, private_key_file):
jwt = get_jwt_token(app_id, private_key_file)
installation = requests.get(f'https://api.github.com/orgs/{organization_slug}/installation', headers={'Authorization': f'Bearer {jwt}'})
access_tokens_url = installation.json()['access_tokens_url']
# values for the permissions are documented here: https://docs.github.com/en/rest/overview/permissions-required-for-github-apps
data = {'repository': repository, 'permission': {'contents': 'write'}}
token_request = requests.post(access_tokens_url, headers={'Authorization': f'Bearer {jwt}'}, json=data)
token = token_request.json()['token']
return token
@gabe565
gabe565 / change-arc-icon.md
Last active May 1, 2024 07:56
Change Arc Browser Icon

Change Arc Browser Icon

arc

A collection of commands that change the Arc Browser icon.

Commands

Theme Command
Candy Arc defaults write company.thebrowser.Browser currentAppIconName candy

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@orimanabu
orimanabu / install_podman_on_amazon_linux_2023.sh
Last active May 1, 2024 07:54
Install Podman on Amazon Linux 2023
#!/bin/bash
# To build podman, you have enough resource on the instance.
# I tested this script on t2.xlarge.
topdir=${HOME}/work
mkdir -p ${topdir}
# Install prereq rpms
sudo dnf install -y git golang libseccomp-devel gpgme-devel autoconf automake libtool yajl yajl-devel libcap-devel systemd-devel cni-plugins iptables-nft rpm-build meson golang-github-cpuguy83-md2man.x86_64
@do-nat
do-nat / install-firefox.sh
Last active May 1, 2024 07:51
Install Firefox Developer edition or Firefox Beta on Ubuntu or another Debian-based Linux
#!/usr/bin/env bash
# Create directory for keyrings if it does not exist
sudo install -d -m 0755 /etc/apt/keyrings
# Download and save keyring
wget -q "https://packages.mozilla.org/apt/repo-signing-key.gpg" -O- | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null
# The fingerprint should be 35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3
gpg -n -q --import --import-options import-show /etc/apt/keyrings/packages.mozilla.org.asc | awk '/pub/{getline; gsub(/^ +| +$/,""); print "\n"$0"\n"}'