Skip to content

Instantly share code, notes, and snippets.

View HideyukHira's full-sized avatar

toyboyninja HideyukHira

View GitHub Profile
@kishida
kishida / html2csv.py
Last active July 10, 2025 21:57
Stable Diffusion web-ui styles from Fooocus
from bs4 import BeautifulSoup
import csv
# Open and read the HTML file
with open("Style reference.html", 'r', encoding='utf-8') as file:
content = file.read()
# Parse the HTML content using BeautifulSoup
soup = BeautifulSoup(content, 'html.parser')
@UserUnknownFactor
UserUnknownFactor / Japanese SFX.md
Last active April 26, 2026 06:08
Japanese game and manga text sound effect (SFX) database

Japanese SFX

Introduction

This is a compiled collection of common Japanese SFXs (sound effects or onomatopoeia).

This collection uses mostly Romaji transliterations. Some of them can be used in combination with other SFXs; some of them, or combinations thereof, can be written separately for emphasis within the same panel (example: do-ki-, ドッ キッ ), but can be considered part of the same action; some use repeated sub-elements or prolongation characters (ー) within them. All interjections can be written differently, usually to indicate particularly strong or repeated stimulation. For example, a cho in isolation is almost certainly a truncated version of chotto, where the speaker was distracted from finishing the word. A prolongation of a character, on the other hand, often implies lazy, harsh, or sloppy pronunciation, or possibly even a scream. Because of this, many SFXs can have multiple meanings, depending on the action drawn, as well as one's interpretation of that action.

@andrewahead4
andrewahead4 / rest_insert_post.php
Last active August 6, 2024 08:59
A simple post insert using WP REST API and PHP over basic authentication
<?php
///////////////////////////////////////////////////////////////////////////////////
// //
// This is using a sample local WordPress Install and is not production safe //
// It uses the REST and Basic Auth plugins //
// //
///////////////////////////////////////////////////////////////////////////////////