Skip to content

Instantly share code, notes, and snippets.

View full-sized avatar
:octocat:
GitHubは私の街です。 (๑・ω・๑)

Ayase Minori sr229

:octocat:
GitHubは私の街です。 (๑・ω・๑)
View GitHub Profile
View url-encode.lua
char_to_hex = function(c)
return string.format("%%%02X", string.byte(c))
end
function urlencode(url)
if url == nil then
return
end
url = url:gsub("\n", "\r\n")
url = url:gsub("([^%w ])", char_to_hex)
@sr229
sr229 / genshin_summer_barbruh.txt
Last active October 7, 2021 16:22
Genshin Impact Playermodels for PAC3 (Apple Archipelago Set)
View genshin_summer_barbruh.txt
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
@sr229
sr229 / refpose.txt
Last active September 12, 2021 09:56
Custom PAC3 Outfit 1
View refpose.txt
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
[1] = {
["children"] = {
@sr229
sr229 / commonalgorithms.ipynb
Created June 29, 2021 07:20
CommonAlgorithms.ipynb
View commonalgorithms.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sr229
sr229 / install-anbox-dkms-fedora.sh
Last active May 21, 2022 04:06
Automated Script to Install Anbox Ashmem and Binder to WSL2 Linux Kernel
View install-anbox-dkms-fedora.sh
#!/bin/bash
set -o pipefail
KERNEL_WORKING_DIRECTORY="/usr/src"
KERNEL_VERSION=$(uname -r)
REQUIRED_DEPENDENCIES="git bison flex elfutils-libelf-devel openssl-devel"
KERNEL_SRC_DIR="$KERNEL_WORKING_DIRECTORY/WSL2-Linux-Kernel-$(uname -r)"
echo "Warning: This script has to be run on sudo permissions. If you encounter issues please report it immediately."
@sr229
sr229 / dvpn.yaml
Last active June 3, 2023 17:33
Mysterium dVPN Node Kubernetes config
View dvpn.yaml
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mysterium-dvpn-node
spec:
replicas: 1
selector:
matchLabels:
app: mysterium-dvpn-node
View 01-minecraft.yml
apiVersion: apps/v1
kind: Deployment
metadata:
name: fabric-suzuhara-deployment
labels:
app: fabric-suzuhara
namespace: sr229
spec:
replicas: 1
selector:
View keybase.md
@sr229
sr229 / mcs4_busicom.asm
Last active April 2, 2022 08:54
Recreation of the firmware source code for the Intel MCS-4 Based Busicom 141-PF
View mcs4_busicom.asm
;----------------------------------------------------------------------------------------------------------------------------------
;Recovered from: https://www.4004.com/2009/Busicom-141PF-Calculator_asm_rel-1-0-1.txt
;Please read legal notice below for the software terms.
;----------------------------------------------------------------------------------------------------------------------------------
;LEGAL NOTICE, DO NOT REMOVE
;
;Annotated Busicom 141-PF software based on binaries recovered by Tim McNerney and Fred Huettig in collaboration with the Computer
;History Museum (November 2005). Original disassembly, reverse-engineering, initial analysis and documentation by Barry Silverman,
;Brian Silverman, and Tim McNerney (November 2006). Detailed analysis, commenting, documentation by Lajos Kintli (July 2007).
;
View postinstall.sh
sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh)"