This file contains 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
# SuperfishのCA証明書と秘密鍵 | |
% ls -al superfish_ca | |
-rw-rw-r-- 1 user user 1086 2月 20 16:56 cacert.pem | |
-rw-rw-r-- 1 user user 2127 2月 20 16:46 secret.key | |
# 適当に秘密鍵生成 | |
% openssl genrsa -out foo.key 2048 | |
Generating RSA private key, 2048 bit long modulus | |
.........................................+++ | |
....................................................+++ |
This file contains 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
# coding: utf-8 | |
=begin | |
# cron2ical.rb | |
## install | |
$ wget https://gist.github.com/.../raw/.../cron2ical.rb | |
$ gem install icalendar chrono | |
## setting |
This file contains 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
*://*.036izu.net/* | |
*://*.2ch.sc/* | |
*://*.2nn.jp/* | |
*://*.5chmap.com/* | |
*://*.access01.com/* | |
*://*.ailbainpro.com/* | |
*://*.airmore.com/* | |
*://*.altema.jp/* | |
*://*.annneme.net/* | |
*://*.apowersoft.jp/* |
This file contains 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
"""minimum_rtsp_bot.py | |
- 指定したRTSPストリームをプレイするだけのbotです | |
- DiscordのどこかのVoiceChに入った状態で '!playstream' とすると、そのchに入ってきてストリームを流し始めます | |
- 再生中に '!stopstream' とすると、再生を停止してvoice chからも抜けます | |
- 再生中に '!resyncstream' で再接続します | |
- 必要なパッケージは(多分)discord.py・discord.py[voice]・pynacl、あとffmpegがパスの通ってるところに必要だと思います | |
- botのTOKENの取得は https://qiita.com/1ntegrale9/items/cb285053f2fa5d0cccdf を参考にして下さい | |
""" | |
import os | |
import discord |
This file contains 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 UdonSharp; | |
using UnityEngine; | |
using VRC.SDKBase; | |
using VRC.Udon; | |
namespace lizscript | |
{ | |
[UdonBehaviourSyncMode(BehaviourSyncMode.None)] | |
public class UnlockObjects : UdonSharpBehaviour | |
{ |
This file contains 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 UdonSharp; | |
using UnityEngine; | |
using VRC.SDKBase; | |
using VRC.Udon; | |
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)] | |
public class TopazChatVRCDN : UdonSharpBehaviour | |
{ | |
[Header("PlayerとAnimator (両方VideoPlayer自身)")] |
This file contains 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
=begin | |
## 概要 | |
iTunesでAAC形式のファイル(.m4a)を、ffmpegで再エンコードするスクリプトです | |
Windows 11 22H2 以降 + Rekordboxで発生する音量バグ対策として作成しました | |
参考:https://twitter.com/vrctokage/status/1733199629989347811 https://note.com/khlizard/n/n56dd6650f1e5 | |
実行にはRubyとffmpegが必要です | |
## 設定項目 |
This file contains 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
@echo off | |
cd %~dp0 | |
python img2pdf.py %* | |
echo. | |
@REM pause | |
timeout /t 3 |