Skip to content

Instantly share code, notes, and snippets.

View aatame3's full-sized avatar
🤓
←これ俺???

aatame3 aatame3

🤓
←これ俺???
View GitHub Profile
@SoNothingMC
SoNothingMC / CiderAudio.md
Last active May 3, 2024 14:26
The Complete Guide to Cider Audio Lab

The Complete Guide to Cider Audio Lab

(aka Audio Lab descriptions without the jargon)

Have you wondered just what the f**k do those Cider Audio Lab descriptions mean?
Well, let me break it down for you.


What even is Audio Lab?

Cider Audio Lab is a suite of audio enhancement options that make your music sound better.

@echo off
set KEY=HKEY_CURRENT_USER\SOFTWARE\VRChat\VRChat
reg query %KEY% /f "FriendsPerLocation*" > VRChat_FriendsPerLocation_raw.txt
find "FriendsPerLocation" < VRChat_FriendsPerLocation_raw.txt > VRChat_FriendsPerLocation_filtered.txt
del VRChat_FriendsPerLocation_raw.txt
for /f %%t in (VRChat_FriendsPerLocation_filtered.txt) do (
reg delete %KEY% /v "%%t" /f
)
del VRChat_FriendsPerLocation_filtered.txt
@nekochanfood
nekochanfood / main.py
Created October 28, 2022 12:09
Display Blender rendering progress in VRChat's Chatbox using OSC
import bpy
import pythonosc
import argparse
from pythonosc import udp_client
from bpy.app.handlers import persistent
client = udp_client.SimpleUDPClient("127.0.0.1", 9000)
def send(message):
# print("successfully send message at" + datetime.datetime.now().strftime(" %Y-%m-%d %H:%M:%S") + ".")