Skip to content

Instantly share code, notes, and snippets.

@anatawa12
anatawa12 / SimpleVRCSDKApiCheck.sh
Created December 12, 2024 00:15
SimpleVRCSDKApiCheck
#!/bin/bash
set -eu
UNITY="/Applications/Unity/Hub/Editor/2022.3.6f1/Unity.app/Contents/MacOS/Unity"
UNITY="/Applications/Unity/Hub/Editor/2022.3.22f1/Unity.app/Contents/MacOS/Unity"
clear_and_install() {
local FOLDER="$1"
local PACKAGE="$2"
@yude
yude / bot.py
Created January 17, 2021 11:39
Discord のテキストチャンネルから systemd をこねくり回す
import discord
from discord.utils import get
import subprocess
import getpass
import tempfile
import os
client = discord.Client()
passwd = (getpass.getpass() + '\n').encode()
token = os.environ.get('DISCORD_TOKEN')
@client.event