Skip to content

Instantly share code, notes, and snippets.

@rz6agx
rz6agx / Xray-proxy-scheme-upd.md
Last active June 17, 2026 05:41
xray proxy VPN

Многоуровневая прокси-схема с Xray, которая выживет в 2025–2026 годах

TL;DR
РФ-VPS (VLESS + Vision + Reality → microsoft.com) → Зарубежный VPS (Shadowsocks-2022 blake3-aes-128-gcm) → Интернет
Маршрутизация только на клиенте, сервер в РФ просто «глухая труба».

К 2025–2026 году это самая живучая и незаметная схема для России.

Зачем это нужно в конце 2025 года

@Kavex
Kavex / VRChatWorkflow.md
Last active January 9, 2026 14:10
VRChat Unity Workflow
@Uricorn
Uricorn / vrchataudiotutorial.md
Last active November 23, 2025 12:33
How to play audio such as music on VRChat using VoiceMeeter Banana

Overview

Anyone who has played VRChat has surely noticed that there are players who go around using custom sounds, ranging from music to sound effects.

This is achieved through 3 main methods.

  1. Using your physical microphone to record the audio.
  • This is the easiest but worst method. As you can imagine, you have to fumble around to set up a way for your microphone to hear your speakers, and the audio quality won't be any good.
  1. Adding audio to avatars.
@ivanskodje
ivanskodje / youtube-dl-download-pluralsight-videos.md
Last active March 13, 2026 01:16
youtube-dl for downloading pluralsight videos

Downloading Videos from Pluralsight

Disclaimer

Pluralsight do not permit users to download their videos.
If you are an user of pluralsight you have agreed with their ToS,
and are thusly refrained from doing so.
Use this knowledge at your own risk.

youtube-dl for Windows

@briandk
briandk / CONTRIBUTING.md
Created March 18, 2016 20:29
A basic template for contributing guidelines that I adapted from Facebook's open source guidelines

Contributing to Transcriptase

We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:

  • Reporting a bug
  • Discussing the current state of the code
  • Submitting a fix
  • Proposing new features
  • Becoming a maintainer

We Develop with Github

@NickStrupat
NickStrupat / AutoPropertyExtensions.cs
Last active March 2, 2023 12:46
Get the backing field of an auto-property and vice versa (this only works for auto-props generated by C# compiler, and is not as good as Mono.Reflection.GetBackingField)
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
public static class AutoPropertyExtensions {
const String Prefix = "<";
const String Suffix = ">k__BackingField";
private static String GetBackingFieldName(String propertyName) => $"{Prefix}{propertyName}{Suffix}";
@DraTeots
DraTeots / ComPort over Network.md
Last active May 28, 2026 14:04
ComPort over Network
@SquidLord
SquidLord / egps.lua
Last active July 20, 2025 05:59
egps: A* pathfinding library for Minecraft ComputerCraft turtles.
-- This library provide high level turtle movement functions.
--
-- Before being able to use them, you should start the GPS with egps.startGPS()
-- then get your current location with egps.setLocationFromGPS().
-- egps.forward(), egps.back(), egps.up(), egps.down(), egps.turnLeft(), egps.turnRight()
-- replace the standard turtle functions.
-- If you need to use the standard functions, you
-- should call egps.setLocationFromGPS() again before using any egps functions.
-- Gist at: https://gist.github.com/SquidLord/4741746