Skip to content

Instantly share code, notes, and snippets.

View 2cookie's full-sized avatar
💭
probably eeping :3

2cookie

💭
probably eeping :3
View GitHub Profile
@aura-creator-v2
aura-creator-v2 / roblox.txt
Created December 30, 2025 00:06
Uploaded from Roblox
<?xml version="1.0" encoding="utf-8"?>
<roblox xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.roblox.com/roblox.xsd" version="4">
<Meta name="ExplicitAutoJoints">true</Meta>
<External>null</External>
<External>nil</External>
<Item class="Model" referent="RBX1">
<Properties>
<string name="Name">Rig</string>
<bool name="Archivable">true</bool>
</Properties> <Item class="Humanoid" referent="RBX2">
@D221
D221 / guide.md
Last active October 20, 2025 06:47
Touhou 8 (東方永夜抄 ~ Imperishable Night) installation with Minimal Input lag + english patches

Obtain ISO and patches for the game

https://www16.big.or.jp/~zun/html/th08dl.html

東方永夜抄 ~ Imperishable Night.iso
md5 F0C8B50089ED55BC1BCF1BC3E9614A68

eiya_update100a.exe
md5 3269D49D81EAFAE366BD6B2AEA4AE82D

eiya_update100a_100d.exe

These are the last known good official Adobe URLs that allow you to download the Adobe Flash Player 32.0 standalone projector content debugger for Windows, macOS, and Linux. These are executables that allow developers to open .swf files outside of a web browser, and they can connect to a debugger in an IDE, like Adobe Flash Builder, IntelliJ IDEA, or the SWF Debugger for Visual Studio Code.

Note: As of August 2025, these URLs were still active, but it is best to assume that they could be removed by Adobe at any time, without notice. If you anticipate needing a standalone Adobe Flash Player executable in the future, you should download and keep a backup copy somewhere safe. If these URLs are removed, you may need to find a way to run your SWF using Adobe AIR from HARMAN or Ruffle instead.

TL;DR

When Riot Games introduces the Vanguard anti-cheat to League of Legends, you should STOP playing and you must NOT install the anti-cheat when you get the pop-up. Vanguard is a kernel-level anticheat and these anticheats operate at a privilege level HIGHER THAN YOUR OWN. The anti-cheat can do things that even YOU can't do, without asking or letting you know. It's like Riot installing a camera in every room of your house and getting a copy of every key inside.

Here are just a few examples of what they can do:

@KarlRamstedt
KarlRamstedt / FirstPersonCameraRotation.cs
Created January 8, 2020 10:17
A simple First Person Camera rotation script for Unity.
using UnityEngine;
/// <summary>
/// A simple FPP (First Person Perspective) camera rotation script.
/// Like those found in most FPS (First Person Shooter) games.
/// </summary>
public class FirstPersonCameraRotation : MonoBehaviour {
public float Sensitivity {
get { return sensitivity; }
@fnky
fnky / ANSI.md
Last active January 24, 2026 13:48
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@xSystemIOx
xSystemIOx / Character Move C#
Last active January 16, 2026 05:11
2D Character movement Left/Right script for C#
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Move : MonoBehaviour {
private CharacterController player;
public float Speed;
@gunderson
gunderson / FlyCamera.cs
Last active January 11, 2026 14:30
Unity Script to give camera WASD + mouse control
using UnityEngine;
using System.Collections;
public class FlyCamera : MonoBehaviour {
/*
Writen by Windexglow 11-13-10. Use it, edit it, steal it I don't care.
Converted to C# 27-02-13 - no credit wanted.
Simple flycam I made, since I couldn't find any others made public.
Made simple to use (drag and drop, done) for regular keyboard layout