Skip to content

Instantly share code, notes, and snippets.

View fluteds's full-sized avatar

fluteds

View GitHub Profile
@fluteds
fluteds / ateez-bstage-translate.user.js
Created May 14, 2023 20:56
Shows English translations when Korean text is hovered over on b.stage via Google Translate.
// ==UserScript==
// @name ATEEZ b.stage Translator
// @version 1.0
// @author Fluteds
// @description Shows English translations when Korean text is hovered over on b.stage via Google Translate.
// @match https://ateez.kqent.com/*
// @icon https://static.musictoday.com/store/bands/6099/images/favicon.ico
// @grant GM_xmlhttpRequest
// ==/UserScript==
@fluteds
fluteds / ban-list.txt
Last active November 24, 2022 13:08
Twitch bots that are known to do hate raids and doxing in alphabetical order
.ban 0007000000
.ban 0210mzv9jb
.ban 05c3yf3b5h
.ban 05c3yf3b5h
.ban 09lnnntqp4fj
.ban 0bqhd46xpo
.ban 0egn8sxav2
.ban 0fmg4tqbp867
.ban 0osii60bnc
.ban 0osii60bnc
@fluteds
fluteds / twitch-pronouns.css
Last active May 31, 2023 16:15
Styles the pronouns from pronouns.alejo.io to look like the pronouns from pronoundb.org on twitch.tv
@media (prefers-color-scheme: dark) {
.user-pronoun, .chat-line__message .tw-pd-x-05 {
color: #fffff;
border: 0px;
font-weight: normal;
background: #6b6b6d; /* Fix correct background */
text-transform: lowercase;
}
}
@fluteds
fluteds / A GitHub Commands List Pack.md
Last active April 10, 2022 16:23
A pack of Gists that contain a range of useful Git commands for the cmd line.

Useful Git Commands for the cmd line

This Gist 'pack' contains some of the most useful commands that I use on a day to day bases or need to use when I've pushed a mistake! These are also useful if you aren't using GitHub desktop.

Contents

  • Change Author and Email on Commits
  • Revert Pull Requests & Rebasing/Squashing Their Commits
  • Updating Forked Repos
  • Rebasing Pushed Commits

VIM Editor Commands

Because I can never remember any commands.

There are two modes in vim.

  • One is the command mode
  • Second is the insert mode.

In the command mode, user can move around the file, delete text, etc. In the insert mode, user can insert text.

Keybase proof

I hereby claim:

  • I am fluteds on github.
  • I am fluted (https://keybase.io/fluted) on keybase.
  • I have a public key ASAnY5vpNapEsODDTiRg4QA3KAbD5hb0aK-MqsRpVp8-vAo

To claim this, I am signing this object:

Fletcher ███▍░░░░░░░░░░░░░ 15 plays
Billie Eilish ██▎░░░░░░░░░░░░░░ 10 plays
Britney Spears █▌░░░░░░░░░░░░░░░ 7 plays
Natasha Bedingfield █▌░░░░░░░░░░░░░░░ 7 plays
Tate McRae █▌░░░░░░░░░░░░░░░ 7 plays
Charli XCX █▍░░░░░░░░░░░░░░░ 6 plays
Olivia Rodrigo █▍░░░░░░░░░░░░░░░ 6 plays
twenty one pilots █▍░░░░░░░░░░░░░░░ 6 plays
Ed Sheeran █▏░░░░░░░░░░░░░░░ 5 plays
Lady Gaga █▏░░░░░░░░░░░░░░░ 5 plays
@fluteds
fluteds / Gitfiti Powershell Fix.md
Last active May 16, 2021 17:42
An edit for the last lines of the Gitfiti POWERSHELL script to use ssh logins and pushes

Gitfiti Powershell Fix

If another branch is used for something else e.g. let's say you used master this commit will create a new branch called main. If this happens the new branch will not show until merged with the master branch or switch your default branch to main to show the effects. Switching -u to -f avoids fatal errors when running Gitfiti again on the same repo.

Replace the last lines of the Powershell script output with the following:

git remote set-url origin https://github.com/fluteds/reponame.git
git remote add origin https://github.com/fluteds/reponame.git
git branch -M main