Skip to content

Instantly share code, notes, and snippets.

View gaycookie's full-sized avatar
🌈

> GayCookie ✌ gaycookie

🌈
View GitHub Profile

openpgp4fpr:1355981F6FD5F0DC316914B570633DCE4C15B50A

@gaycookie
gaycookie / SearchForLoot.json
Last active September 24, 2022 06:53
Search for Loot-tables
{
"Rarity": 50.0,
"InitialCooldown": 0,
"SoundEnabled": 1,
"DisableNotifications": 0,
"NotificationHeading": "Searching",
"NotificationText": "You found something...",
"NotificationText2": "Nothing found...",
"SFLBuildings": [
{
@gaycookie
gaycookie / main.py
Last active August 30, 2022 22:14
Newswire Notifications via Webhook
from threading import Timer
from requests import request
import sqlite3, os
api_url = "https://socialclub.rockstargames.com/events/eventlisting?pageId=1&gameId=GTAV"
article_url = "https://socialclub.rockstargames.com/events/{}/{}"
webhook_url = ""
def create_connection():
file = os.path.join(os.getcwd(), 'database.sqlite')
@gaycookie
gaycookie / deep pink.json
Last active March 25, 2022 18:50
Deep Pink colour scheme for SDR++
{
"name": "Deep Pink",
"author": "GayCookie",
"Border": "#6D6D7F7F",
"BorderShadow": "#00000000",
"Button": "#670039FF",
"ButtonActive": "#840049FF",
"ButtonHovered": "#840049FF",
"CheckMark": "#FF69B4FF",
"ChildBg": "#FFFFFF00",

Keybase proof

I hereby claim:

  • I am gaycookie on github.
  • I am gaycookie (https://keybase.io/gaycookie) on keybase.
  • I have a public key ASBRI4GimHr939dxgUaOL2rtOu5FVE24HBIkhycS_NpHRwo

To claim this, I am signing this object:

@gaycookie
gaycookie / main.py
Last active October 15, 2021 15:16
YouTube Downloader, something like this happens when you're out of idea's.
import youtube_dl, json, os, argparse
from pathlib import Path
class Config:
def __init__(self):
self.location = str(Path.joinpath(Path.home(), "Downloads"))
self.format = "mp3"
@staticmethod
def check_config():
@gaycookie
gaycookie / api.py
Last active June 20, 2021 15:13
Something random
import json
from flask import Flask, request
from random import randrange
app = Flask(__name__)
def roll(type, rolls):
total = 0
for i in range(rolls):
@gaycookie
gaycookie / WallpaperDownloader.py
Last active May 15, 2021 10:50
Konachan wallpaper downloader and automaticly sets it as your wallpaper!
import requests
import shutil
import os
folder = ".wallpapers"
tags = ["catgirl", "order:random", "width:1920", "height:1080", "rating:questionableless"]
url = "https://konachan.net/post.json?limit=1&tags=" + "+".join(tags)
workingDir = os.getcwd()
downloadDir = os.path.join(workingDir, folder)
@gaycookie
gaycookie / identity.json5
Last active February 14, 2021 15:37
Identity settings that works best with Creepings Origin.
{
// Whether an overlay message appears above the hotbar when a new identity is unlocked.
"overlayIdentityUnlocks": false,
// Whether an overlay message appears above the hotbar when a new identity is revoked.
"overlayIdentityRevokes": false,
// Whether a player's equipped identity is revoked on death.
"revokeIdentityOnDeath": false,
// Whether identities equip the items (swords, items, tools) held by the underlying player.
"identitiesEquipItems": true,
// Whether identities equip the armor (chestplate, leggings, elytra) worn by the underlying player.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.