Skip to content

Instantly share code, notes, and snippets.

View oscoDOTblog's full-sized avatar
⚔️
"In this world, a single blade can take you anywhere you want to go"

Osco oscoDOTblog

⚔️
"In this world, a single blade can take you anywhere you want to go"
View GitHub Profile
@angeld23
angeld23 / remove_twitter_blue_promo.user.js
Last active March 9, 2024 03:23
Remove Twitter Blue Promotions: Removes the "Get Verified" box on the Home page and the "Verified" button on the sidebar
// ==UserScript==
// @name Remove Twitter Blue Promotions
// @namespace https://d23.dev/
// @version 1.1
// @description Removes the "Get Verified" box on the Home page and the "Verified" button on the sidebar
// @author angeld23
// @match *://*.twitter.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant none
// ==/UserScript==
@DenchiSoft
DenchiSoft / ip.txt
Created March 29, 2021 00:21
ip.txt syntax for experimental VTube Studio network tracking with OpenSeeFace
# To listen for remote connections, change this to 0.0.0.0 or your actual IP on the desired interface.
ip=0.0.0.0
# This is the port the server will listen for tracking packets on.
port=11573
curl --location --request POST 'https://YOUR_AUTH0_DOMAIN/oauth/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=YOUR_AUTH0_CLIENT_ID' \
--data-urlencode 'username=YOUR_USERNAME' \
--data-urlencode 'password=YOUR_PASSWORD' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'scope=openid'
@TypeA2
TypeA2 / danbooru_download.py
Last active January 2, 2024 03:40
Download all images on danbooru by tag
import sys, os, requests, json, time, math
if len(sys.argv) < 2:
print("Tags not specified")
sys.exit(1)
elif sys.argv[1].count(" ") > 1:
print("Maximum of 2 arguments")
sys.exit(1)
tags = sys.argv[1]
According to all known laws
of aviation,
there is no way a bee
should be able to fly.
Its wings are too small to get
its fat little body off the ground.
@kyhau
kyhau / LetsEncryptNotes.md
Last active July 8, 2023 01:28
Create SSL certificates using Let's Encrypt