I hereby claim:
- I am akku1139 on github.
- I am akku1139 (https://keybase.io/akku1139) on keybase.
- I have a public key whose fingerprint is 8D16 20B6 0CDF C431 806B 0FA7 0BE4 41B4 20B2 1AD3
To claim this, I am signing this object:
// ==UserScript== | |
// @name ็ตถๅฏพๆฐใใใฟใใง้ใใชใ | |
// @namespace Violentmonkey Scripts | |
// @match *://*/* | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @description 12/7/2023, 10:44:38 PM | |
// ==/UserScript== |
from http.server import HTTPServer | |
from http.server import BaseHTTPRequestHandler | |
from threading import Thread | |
class CustomHTTPRequestHandler(BaseHTTPRequestHandler): | |
def do_GET(self): | |
self.send_response(200) | |
self.send_header('Content-type', 'text/plain; charset=utf-8') | |
self.end_headers() | |
self.wfile.write('GETใกใฝใใใๅฎ่ฃ '.encode()) |
#!/bin/bash | |
# .mkchroot-common.sh distroname minirooturl chrootname | |
if [ `whoami` != "root" ] | |
then | |
echo "Must be run as root user." | |
exit 1 | |
fi | |
tmpdir=$(mktemp -p /tmp -d chroot-${3}-${1}.XXXXXXXX) | |
trap "rm -rf $tmpdir" EXIT |
// ==UserScript== | |
// @name enhanced-h264ify | |
// @namespace Violentmonkey Scripts | |
// @version 0.1 | |
// @description enhanced-h264ify for user script. | |
// @author akku | |
// @match *://*.youtube.com/* | |
// @match *://*.youtube-nocookie.com/* | |
// @match *://*.youtu.be/* | |
// @grant none |
[Unit] | |
Description=Overlayfs Vivaldi profile | |
Requires=local-fs.target | |
After=local-fs.target | |
[Service] | |
User=root | |
Type=oneshot | |
Restart=no | |
RemainAfterExit=true |
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
# Change these settings to your own preference |
I hereby claim:
To claim this, I am signing this object:
! Jun 14, 2024 https://www.youtube.com | |
www.youtube.com###clarify-box | |
||mobile.events.data.microsoft.com^ | |
! Jul 1, 2024 https://wallet.duinocoin.com | |
wallet.duinocoin.com##.adblocker_detected | |
!||discord.com^ | |
!||x.com^ |
// ==UserScript== | |
// @name No stop YouTube Music | |
// @namespace Violentmonkey Scripts | |
// @match https://music.youtube.com/* | |
// @grant none | |
// @author akku | |
// @description 11/22/2024, 7:29:38 PM | |
// @description YouTube music has been modified to detect tab transitions and stop the music. | |
// @run-at document-start | |
// ==/UserScript== |
// https://gist.github.com/akku1139/5355e46b54982ba868dfa1175388eb72 | |
/** ๆๅฐๅฎ่ฃ | |
* https://developers.cloudflare.com/email-routing/email-workers/runtime-api/ | |
* @typedef EmailMessage | |
* @property {string} from | |
* @property {string} to | |
* @property {Headers} headers | |
* @property {ReadableStream} raw | |
* @property {number} rawSize |