Skip to content

Instantly share code, notes, and snippets.

View pkpc99's full-sized avatar
💭
I may be slow to respond.

pkpc99

💭
I may be slow to respond.
View GitHub Profile
@pkpc99
pkpc99 / BA_SpineFilenames.md
Last active July 16, 2025 18:43
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

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...

YouTube Extension Pack

most of these are for Chromium browsers because I like Chromium but if you want firefox versions you can probably find something similar on Add-ons for Firefox.
i'll be linking official websites but when those aren't available I'll just use the Web Store

Annotations Restored for YouTube™

brings back annotations on all videos that used it before their "removal". i say "removal" in quotes because annotation data wasn't actually removed from YouTube's code, just made invisible to the average viewer. fixes a lot of old videos that make use of annotations to do point & click adventure games
https://github.com/isaackd/AnnotationsRestored

@pkpc99
pkpc99 / BA_SchaleFilenames.md
Last active January 2, 2025 22:02
SchaleDB Filenames
@pkpc99
pkpc99 / gh-pages-deploy.md
Created September 19, 2024 13:56 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@pkpc99
pkpc99 / hosting-on-github.md
Created October 12, 2024 01:33 — forked from TylerFisher/hosting-on-github.md
Basic steps for hosting on Github

Hey there, apparently people are still using this Gist from 2013! It's out of date! Consult the Github docs.

Steps for Hosting a Website on GitHub

  1. Create a GitHub account on github.com.
  2. Download either [GitHub for Mac][1] or [GitHub for Windows][2], depending on your operating system. Open the app and log in using the account you just created.
  3. (On Mac): After you login, click advanced and make sure that your name and email are correct. Then, click "Install Command Line Tools", just in case you want to start using the command line later in life.
  4. Create a new repository in your GitHub application. Name it your-username.github.io. The name is very important. Note the folder that GitHub is saving the repository to. Make sure the "Push to GitHub?" box is checked.
  5. Move your website's files into the folder that GitHub just created when you made the repository. IMPORTANT: Your homepage HTML file must be called "index.html", and it must exist in the top-level