Skip to content

Instantly share code, notes, and snippets.

View LeviBroadnax's full-sized avatar
🧩
it is now safe to turn off your computer

Levi Broadnax LeviBroadnax

🧩
it is now safe to turn off your computer
View GitHub Profile
@LeviBroadnax
LeviBroadnax / install_bigcitycustomkitties.ps1
Created October 21, 2024 21:31
Simplified Installer for Swagguy47/BigCityCustomKitties
# Downloads and installs: https://github.com/Swagguy47/BigCityCustomKitties and https://github.com/BepInEx/BepInEx
# Usage: 1. Copy this file to the same directory as the game's executable
# 2. Right click this file in explorer and "Run with powershell"
$gameExecutable = './Little Kitty, Big City.exe'
$bepinex_url = 'https://github.com/BepInEx/BepInEx/releases/download/v5.4.23.2/BepInEx_win_x64_5.4.23.2.zip'
$bepinex_zip = './BepInEx_win_x64_5.4.23.2.zip'
$BCCK_url = 'https://github.com/Swagguy47/BigCityCustomKitties/releases/download/v.1.2.0/BCCustomKitties_v1.2.0.zip'
@LeviBroadnax
LeviBroadnax / synthwave_radio_filter.js
Created April 18, 2023 17:02
YouTube Chat Filter
// ==UserScript==
// @name YouTube Chat Filter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Block users with Russian characters in their names or messages and users that send the same message 3 or more times.
// @author SystemStack
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
@LeviBroadnax
LeviBroadnax / QueryHelper.cs
Last active March 9, 2023 09:23
Dynamic Grid Queries for ag-grid and Entity Framework
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using Microsoft.EntityFrameworkCore;
namespace DAL.Extensions
{
from html.parser import HTMLParser
from urllib.request import urlopen
class url_parse(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.all_urls = set()
self.result = set()