This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |