Skip to content

Instantly share code, notes, and snippets.

View gazmull's full-sized avatar
🎨

Euni gazmull

🎨
View GitHub Profile
@gazmull
gazmull / _README.md
Last active March 9, 2023 17:50
Kamihime PROJECT NTK - Bypass New DL Because the Game Sucks

Uriel is Probably Gay

Have you ever felt that as soon as you read this, you already wasted 4 hours of reading? FOUR. HOURS!one1!!1!one1

tl;dr: For Kamihime PROJECT (NTK ver.) game. Bypasses the new "DL" because the game still sucks asshole. Yes. I just said yes.

What's New

Click here for full changelog

3.0.1 - 2023-02-03

@gazmull
gazmull / khStompOnStamp.user.js
Last active July 1, 2021 08:40
Stomp on Stamp for Kamihomo project for lazy asses [yes still working on wiosi stamps]
/* eslint-disable max-len */
// ==UserScript==
// @name Kamihime PROJECT (EN) - Stomp on Stamp
// @version 2.0
// @description I watch Isekai Cheat Magician everyday
// @author Eunicorn
// @homepage https://thegzm.space
// @include /^https:\/\/cf\.(?:g|r)\.kamihimeproject\.dmmgames\.com\/front\/cocos2d-proj\/components-(?:pc|sp)\/game\/app\.html/
// @include /^https:\/\/cf\.en\.(?:g|r)\.skh\.dmmgames\.com\/front\/cocos2d-proj\/components-(?:pc|sp)\/game\/app\.html/
@gazmull
gazmull / hideMyAss.user.js
Created September 23, 2020 10:55
Hide your Magic Jewels. Piece of shit gacha
// ==UserScript==
// @name Kamihime PROJECT (EN) - Hide Magic Jewels
// @version 1.0
// @description Djehuti is now available on XBOX1, PS4, Nintendo Switch, and PC platforms.
// @author Eunicorn
// @homepage https://thegzm.space
// @include /^https:\/\/cf\.(?:g|r)\.kamihimeproject\.dmmgames\.com\/front\/cocos2d-proj\/components-pc\/game\/app\.html/
// @include /^https:\/\/cf\.en\.(?:g|r)\.skh\.dmmgames\.com\/front\/cocos2d-proj\/components-pc\/game\/app\.html/
// @grant none
// @run-at document-end
@gazmull
gazmull / cwebp.sh
Last active March 27, 2023 05:41
[bash - cwebp] Converts all PNG/JPG/JPEG files in a directory (recursive) to WebP. Optional Forced flag to re-convert existing WebP files.
#!/bin/bash
# Tested at Debian 10 (Buster)
# Usage: ./cwebp.sh [-f] <directory>
forced=n
# If first arg contains forced flag (-f), remove first arg. Directory becomes first arg.
[ "$1" = "-f" ] && forced=y && shift && echo "Forced Mode Detected"
# List all regular files (JPG/JPEG/PNG) in the directory
@gazmull
gazmull / kamihimedb.thegzm.space
Last active August 23, 2019 23:26
NGINX config sample for kamihime database
# This is for KamihimeDB v3.0. For v2.0
# see the last revision at https://gist.github.com/gazmull/85ea4cacc30647d8afc8ef910b2291a7/744f0ab8fea0284b6c483cf513e2475018994d95
server {
listen 80;
#listen [::]:80 default_server;
server_name [your domain name];
location ~ ^/(assets/|img/|js/|css/|scenarios/|og-image.png|robots.txt|humans.txt|favicon.ico) {
@gazmull
gazmull / docker-compose.yml
Last active March 7, 2019 13:54
ramiel-bot - docker-compose for prebuilt
version: "3"
services:
ramiel-server:
container_name: lavalink
image: fredboat/lavalink:b5fe889b
restart: on-failure:3
network_mode: host
volumes:
- ./application.yml:/opt/Lavalink/application.yml
@gazmull
gazmull / .blacklist
Last active January 12, 2021 15:11
Blacklist for Kamihime Database Scenario Util
akunin_otoko_B_02.png
akunin_otoko_B_05.png
akunin_otoko_B_06.png
amaruteianoyagi_06.png
aresu_04.png
behimosu_06.png
beourufu_03.png
beourufu_06.png
beruzebubu_06.png
black.jpg
@gazmull
gazmull / towerOfHanoi.cpp
Created July 29, 2018 18:06
Tower of Hanoi Case Study
/*
Author: gazmull <vescalaw@gmail.com>
Description: [Case Study] Tower of Hanoi with data structuring.
*/
#include <iostream>
#include <iomanip>
using namespace std;