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
| use std::collections::HashMap; | |
| use rand::Rng; | |
| use regex::Regex; | |
| const BEGIN: &str = "___BEGIN__"; | |
| const END: &str = "___END__"; | |
| const STATE_SIZE: usize = 2; |
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
| """mini-markov.py - a somewhat opinionated markovify-inspired text generator.""" | |
| __author__ = "xjunko" | |
| __license__ = "WTFPL" | |
| import bisect | |
| import random | |
| import re | |
| from typing import Callable, Iterable, TypeAlias |
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
| /* | |
| * | |
| * @name Nurse Type T | |
| * @description TypeT my belvoed | |
| * @author xJunko | |
| * @version 1.0.9 | |
| * @authorId 736223131240497183 | |
| * | |
| */ |
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
| """ puo_dumb_wifi.py - simple wifi trial reset script """ | |
| __author__ = "xJunko" | |
| __world__ = "antipathy" | |
| import subprocess | |
| import time | |
| import urllib.request |
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
| Device: Speakers USBZH11S {8fed1daf-bb85-4d6c-9272-5425e7e4d5dd} | |
| VSTPlugin: Library BL-Gain60.dll Gain 0.466667 | |
| GraphicEQ: 32 4; 64 2; 125 1; 250 0; 500 -1; 1000 -2; 2000 0; 4000 2; 8000 3; 16000 3 | |
| Convolution: ..\irs\Razor Surround ((48k Z-Edition)) 2.Stereo +20 bass.wav | |
| Device: Microphone USBZH11S {4b7a0680-874a-47b1-8b29-4a2ba709c041} | |
| VSTPlugin: Library BL-Gain60.dll Gain 0.510417 | |
| VSTPlugin: Library LoudMax64.dll Thresh 0 Output 0.479545 "Fader Link" 0 "ISP Detection" 0 "Large GUI" 0 | |
| VSTPlugin: Library rnnoise_stereo.dll ChunkData "VkMyIdAAAAA8P3htbCB2ZXJzaW9uPSIxLjAiIGVuY29kaW5nPSJVVEYtOCI/PiA8Uk5Ob2lzZT48UEFSQU0gaWQ9InZhZF9ncmFjZV9wZXJpb2QiIHZhbHVlPSIzMC4wIi8+PFBBUkFNIGlkPSJ2YWRfcmV0cm9hY3RpdmVfZ3JhY2VfcGVyaW9kIiB2YWx1ZT0iNy4wIi8+PFBBUkFNIGlkPSJ2YWRfdGhyZXNob2xkIiB2YWx1ZT0iMC4yMzk5OTk5OTQ2MzU1ODIiLz48L1JOTm9pc2U+AA==" |
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 V programming language | |
| // https://github.com/vlang | |
| import gg | |
| import gx | |
| import math | |
| @[heap] | |
| pub struct Window { | |
| pub mut: |
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
| ## To fix "cannot be loaded because running scripts is disabled on this system" (run: 'get-executionpolicy' returns: Restricted) --> | |
| set-executionpolicy remotesigned | |
| # Run following to bypass "not digitally signed" issue (fixes per session only) | |
| Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass | |
| $dryRun = $false; | |
| $packages = 'packages.txt' | |
| write-host "`n---+++ START powershell script to install packages, using chocolately (`chocolatey.org`) +++---`n" |
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
| # internal | |
| vcredist140 | |
| directx | |
| # code | |
| git | |
| python3 | |
| mingw | |
| llvm |
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
| import json | |
| import aiohttp | |
| # | |
| TEST_TOKEN: str = "" | |
| # | |
| class Character: |
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
| """ | |
| sync.py - "i thought this is a solved problem already wtf" edition | |
| i tried to use symlinks to sync the dots but git be like fuck you | |
| so im like fuck you too symlinks and wrote this script out of spite | |
| """ | |
| __author__ = "FireRedz" | |
| import shutil |
NewerOlder