Skip to content

Instantly share code, notes, and snippets.

View kiraio-moe's full-sized avatar
๐Ÿ”ฅ
Work & Code

Bayu Satiyo โœจ kiraio-moe

๐Ÿ”ฅ
Work & Code
View GitHub Profile
@pkpc99
pkpc99 / BA_SpineFilenames.md
Last active May 19, 2025 12:38
Blue Archive Spine Name Codes/Filenames

updated occassionally

CH

filename character
CH0058_spr Hifumi (Swimsuit)
CH0060_spr Tsurugi (Swimsuit)
CH0063_spr Hina (Swimsuit)
CH0064_spr Iori (Swimsuit)
CH0066_spr Shun (Small)
CH0069_spr Mika
@ThePlenkov
ThePlenkov / boot.sh
Last active May 5, 2025 10:58
Resolve WSL DNS automatically
#!/bin/bash
# Remove existing "nameserver" lines from /etc/resolv.conf
sed -i '/nameserver/d' /etc/resolv.conf
# Run the PowerShell command to generate "nameserver" lines and append to /etc/resolv.conf
# we use full path here to support boot command with root user
/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command '(Get-DnsClientServerAddress -AddressFamily IPv4).ServerAddresses | ForEach-Object { "nameserver $_" }' | tr -d '\r'| tee -a /etc/resolv.conf > /dev/null
@TameemS
TameemS / debloatLDPlayer.md
Last active May 16, 2025 07:31
Debloating LDPlayer

Inspired by this

More of my guides: Debloating MEMu - Debloating Nox (Updated)

This mainly applies to LDPlayer9. They will probably work on the low end options (like LDPlayer5) but not guaranteed.

Debloating LDPlayer

This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.

  1. Download LDPlayer, preferably an offline version from the version history

For this tutorial I will be making a bypass for dutchycorp.space, if you want to follow along example links are here.

image

  1. Manually solve the captcha or follow the steps on the site and obtain the destination of the shortener. In my case this is http://dutchycorp.ovh/sl/DmtIL8Om

  2. Go back to the shortener's site and Press ctrl+U or right-click and select view page source

  3. Press ctrl+f and search the destination image

@ozbillwang
ozbillwang / Git_Behind_Proxy.md
Last active May 20, 2025 14:14
Configure Git to use a proxy (https or SSH+GIT)
@P1N2O
P1N2O / README.md
Last active March 26, 2025 15:27
Guide to Compile an Android Kernel with Clang

Android Kernel Compilation Guide

This gist is intended to assist beginners, like myself, in getting started with Android Kernel Compilation. Please note that while I'm sharing my setup and process, this guide may not be entirely accurate, and I welcome suggestions from experienced developers to improve it.

Installing Build Tools

I am on Arch, so I will be using pacman to install the base-devel package group.

sudo pacman -S base-devel

On a Debian based distro, you can use apt and install the build-essential package.

@quaternioninterpolation
quaternioninterpolation / ImageDOCrossfade.cs
Last active January 21, 2025 06:57
DOTween UnityEngine.UI.Image image cross fade
/** --
** Copyright (C) 2019 by Josh van den Heever
**
** Permission is hereby granted, free of charge, to any person obtaining a copy of
** this software and associated documentation files (the "Software"), to deal in
** the Software without restriction, including without limitation the rights to
** use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
** of the Software, and to permit persons to whom the Software is furnished to
** do so, subject to the following conditions:
**
@LukeZGD
LukeZGD / NekoparaExtraction.md
Last active March 26, 2025 19:56
Nekopara Data Extraction for Vol. 1, 0, 2, 3, 4, and Extra

Nekopara Data Extraction for Vol. 1, 0, 2, 3, 4, and Extra

  • This guide can also be used in other VNs that have the Kirikiri/CatSystem2 engine

Tools Needed:

@krisleech
krisleech / renew-gpgkey.md
Last active June 1, 2025 14:40
Renew Expired GPG key

Renew GPG key

Given that your key has expired.

$ gpg --list-keys
$ gpg --edit-key KEYID

Use the expire command to set a new expire date:

@coin8086
coin8086 / using-proxy-for-git-or-github.md
Last active January 24, 2025 07:47
Use Proxy for Git/GitHub

Use Proxy for Git/GitHub

Generally, the Git proxy configuration depends on the Git Server Protocol you use. And there're two common protocols: SSH and HTTP/HTTPS. Both require a proxy setup already. In the following, I assume a SOCKS5 proxy set up on localhost:1080. But it can also be a HTTP proxy. I'll talk about how to set up a SOCKS5 proxy later.

SSH Protocol

When you do git clone ssh://[user@]server/project.git or git clone [user@]server:project.git, you're using the SSH protocol. You need to configurate your SSH client to use a proxy. Add the following to your SSH config file, say ~/.ssh/config:

ProxyCommand nc -x localhost:1080 %h %p