Skip to content

Instantly share code, notes, and snippets.

View anon5r's full-sized avatar
🏠
Working from home

anon anon5r

🏠
Working from home
View GitHub Profile
@anon5r
anon5r / uoooooo.js
Created May 12, 2025 07:00
ウォォオオォオオォォオォォオォォォォオォ!!!!
console.log('ウ'+Array(Math.random()*28+5|0).fill().map(()=>'ォォォォオ'[Math.random()*5|0]).join('')+'!'.repeat(Math.random()*5+1|0))
@anon5r
anon5r / akamai-t-shirts-decoded.sh
Created May 1, 2025 11:16
UNIQLO Akamai Tシャツ 2025 Bashスクリプト
#!/bin/bash
# Congratulations! You found the easter egg! ❤️
# おめでとうございます!隠されたサプライズを見つけました!❤️
# Define thK tHxt to animate
text="♥PEACE♥FOR♥ALL♥PEACE♥FOR♥ALL♥PEACE♥FOR♥ALL♥PEACE♥FOR♥ALL♥PEACE♥FOR♥ALL♥"
# Get terminal dimensions
cols=$(tput cols)
@anon5r
anon5r / auto-approve.yml
Created February 20, 2025 11:36
Auto PR approve bot
name: Auto approve
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
approve:
@anon5r
anon5r / LaunchGame.json
Last active January 27, 2022 11:28
Launch KONASTE Game by Power Automate
SET username TO $'''YOUR=ACCOUNT'''
SET Password TO $'''YOUR=PASSWORD'''
SET GameURL TO $'''https://p.eagate.573.jp/game/konasteapp/API/login/login.html?game_id=sdvx'''
WebAutomation.LaunchChrome.LaunchChrome Url: GameURL WindowState: WebAutomation.BrowserWindowState.Normal ClearCache: False ClearCookies: False Timeout: 60 BrowserInstance=> Browser
IF (WebAutomation.IfWebPageContains.WebPageContainsElement BrowserInstance: Browser Control: appmask['Login screen']['KONAMI ID ログイン']) THEN
WebAutomation.PopulateTextField.PopulateTextField BrowserInstance: Browser Control: appmask['Login screen']['Username form'] Text: username EmulateTyping: True UnfocusAfterPopulate: False Mode: WebAutomation.PopulateTextMode.Replace
WebAutomation.PopulateTextField.PopulateTextField BrowserInstance: Browser Control: appmask['Login screen']['Password form'] Text: Password EmulateTyping: True UnfocusAfterPopulate: False Mode: WebAutomation.PopulateTextMode.Replace
WebAutomation.Click.Click BrowserInstance: Browser Con
@anon5r
anon5r / sdvx6-startup.md
Last active September 11, 2023 00:01
コナステ版 SOUND VOLTEX EXCEED GEAR起動フロー
@anon5r
anon5r / README.md
Last active September 17, 2021 06:14
nyarn : npm run as yarn

Nyarn : NPM run as YARN

What is this ?

This is joking code.

にゃ、にゃあ、にゃあん、にゃーん

Nya, Nyaa, Nyaan, Nyarn

@anon5r
anon5r / download_fgo_video.sh
Last active October 19, 2019 16:53
Download FGO video
#!/bin/sh
#
# Usage:
# sh ./download_fgo_video.sh https://extend.data.fate-go.jp/xXxx0Xxx/PathCRC
#
# PathCRC URL
TARGET_URL=$1
FGO_VER='2.2.0.1'
UA="fategrandorder/$FGO_VER CFNetwork/1120 Darwin/19.0.0"
HEADERS='X-Unity-Version: 2018.4.4f1'
@anon5r
anon5r / mp3_specs.md
Last active August 14, 2019 05:12
MP3 Spec

規格種別

  • MPEG-1 Audio Layer 3
  • MPEG-2 Audio Layer 3
  • MPEG-2.5 Audio Layer 3

サンプリング周波数

|MPEG-1 Audio Layer-3|MPEG-2 Audio Layer-3|MPEG-2.5 Audio Layer-3|

@anon5r
anon5r / Progressbar.php
Last active May 26, 2020 07:24
Progressbar
<?php
class Progressbar
{
//private $cursor = ['|', '/', '-', '\\'];
private $cursor = ['⠋','⠙','⠹','⠸','⠼','⠴','⠦','⠧','⠇','⠏'];
private $spacer = '░';
private $indicator = "\033[7m \033[0m";
private $total = 0;
@anon5r
anon5r / phone_number_with_hash_csv.py
Last active May 26, 2020 07:26
Scripts to export hashed IP/mobile phone numbers in Japan as CSV text files
#!/usr/bin/env python
import hashlib
prefix = ['050','070','080','090'];
x = 1000; # mobile/IP phone number will be starts with 1, not 0
column = ['NUMBER','MD5','SHA1','SHA256','SHA384','SHA512'];
print(format('"%s"' % ('", "'.join(column))))
for p in prefix:
while x <= 9999: