Skip to content

Instantly share code, notes, and snippets.

View fluteds's full-sized avatar

fluteds

View GitHub Profile
@Ynng
Ynng / custom.css
Last active May 18, 2024 14:20
vscode vtuber logo
.editor-group-watermark > .letterpress{
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important;
opacity: .75;
aspect-ratio: 3/2 !important;
}
@Raz-js
Raz-js / discord_javascript_documentation.md
Last active December 29, 2023 19:20
Discord Javascript Documentation

How To Open Discord Console

  1. Press CTRL + SHIFT + I (Developer Tools)
  2. Click on "Console"
  3. Clear the console image
  4. Now you can use the js snippets below by simply pasting them and pressing ENTER or editing some of the variables first depends on the snippet

If CTRL + SHIFT + I don't work:

Discord now disables the developer console by default :(
To fix this, go to %appdata%/discord/settings.json and set this variable to true:

@shmup
shmup / twitch_hexchat.md
Last active January 5, 2024 00:22
How to connect to Twitch with HexChat (SSL)

HEXCHAT / TWITCH

Here's a method to chat in a twitch #channel with HexChat

  1. Get HexChat here (or your package manager): https://hexchat.github.io/

  2. Click Add and name it Twitch or whatever.

  3. Now click Edit and change the server/port up top to: irc.chat.twitch.tv/6697

@D-Brox
D-Brox / canary_borked_themes.md
Last active November 1, 2023 16:42
Unbork themes guide

Canary broke themes again -_-

What happened?

Discord's css is minified, with it's classes following the format name-hash. When they pushed a new asset to the canary build, the classes got renamed:

This means the classes on the themes don't relate to any discord class anymore.

So what now?

Usage

Use the above file, replacing...

  • {URL of shortener} by the root URL where you have the shortener installed. For example https://nlsn.cf/
  • {github token} your github access token
  • {repo} by your username and repo in full. For example nelsontky/gh-pages-url-shortener-db

Extra information

@Poliwrath
Poliwrath / README
Last active November 30, 2023 08:33
Firefox things to make Discord "better"
These are my personal things for making Discord's web app bearable for me -- a barebones text chat application.
Almost all nitro / payment / game / voice chat stuff has been hidden / blocked.
If something breaks / looks wrong, I'll probably eventually fix it myself, but please leave comments.
A lot of the ublock filters only work if your language is set to English.
Strongly recommend
08/22/2022 - as of current PTB, performance on Firefox has yet again worsened.
Related bugzilla entries:
https://bugzilla.mozilla.org/show_bug.cgi?id=1605271
@Serat00l951
Serat00l951 / ps - no start with double click.cmd
Last active June 11, 2022 12:37
Disable starting powershell scripts with double click
rem Run this with admin rights!
rem Запускать от имени администратора!
powershell -command "& {Set-ExecutionPolicy -ExecutionPolicy Restricted -Force}"
ftype Microsoft.PowerShellScript.1="C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe" "%%1"
assoc .ps1=Microsoft.PowerShellScript.1
reg delete "HKCR\Microsoft.PowerShellScript.1\shell\runas" /f
@Serat00l951
Serat00l951 / ps - start with double click.cmd
Last active June 11, 2022 12:29
Start powershell scripts with double click
rem Run this with admin rights!
rem Запускать от имени администратора!
powershell -command "& {Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force}"
ftype Microsoft.PowerShellScript.1="C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe" "%%1"
assoc .ps1=Microsoft.PowerShellScript.1
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ps1" /f
reg add "HKCR\Microsoft.PowerShellScript.1\shell\runas" /f
reg add "HKCR\Microsoft.PowerShellScript.1\shell\runas" /v "HasLUAShield" /t REG_SZ /f
@bradtraversy
bradtraversy / vscode_shortcuts.md
Last active May 13, 2024 14:12
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@Prof9
Prof9 / guide.md
Last active June 25, 2022 04:21
Kaeru WFC connection guide for Nintendo Wi-Fi USB Connector

Notes:

  • For some people setting DNS settings in the Nintendo Wi-Fi USB Connector properties doesn't seem to work, if that applies to you you may have to set up DNS in the internet-facing connection properties instead.

Connection guide

  1. Set up a virtual machine running Windows XP.

    • Plenty of guides online on how to do this, so I won't be going into too much detail here.
    • I'd recommend using VirtualBox and the "Windows XP Mode" method found here, as all the downloads you need are from official sources: https://www.makeuseof.com/tag/download-windows-xp-for-free-and-legally-straight-from-microsoft-si/. NOTE: Skip the part where it tells you to set up Windows XP Virtual Machine Network Settings, you don't need to do this if the internet connection in your VM is already working.