Skip to content

Instantly share code, notes, and snippets.

View victorcash's full-sized avatar
🥹

Victor Qian victorcash

🥹
  • 28 Ducks
  • Berlin, Germany
View GitHub Profile
@victorcash
victorcash / windows-keys.md
Created April 30, 2026 10:45 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@victorcash
victorcash / Characters.cs
Created March 30, 2019 05:08 — forked from rzubek/Characters.cs
Unity C# script loading at runtime
// note: this interface will be referenced in loaded source code:
public interface ICharacter
{
int Height { get; }
string Language { get; }
}
public class Human : ICharacter
{
public int Height { get { return UnityEngine.Random.Range(150, 200); } }
@victorcash
victorcash / ScriptEngine.cs
Created March 30, 2019 05:08 — forked from SeargeDP/ScriptEngine.cs
Sandboxed scripting environment for C# based on Mono.CSharp for .NET 3.5 (works in Unity3D projects)
// Written by Michael 'Searge' Stoyke in 03/2015
// Released as public domain, do whatever you want with it!
using System;
using System.IO;
using System.Reflection;
using System.Text;
using Mono.CSharp;
namespace GameLibrary {