Skip to content

Instantly share code, notes, and snippets.

View Nolkeg's full-sized avatar
🏠
Working from home

Nolkeg

🏠
Working from home
View GitHub Profile
@Nolkeg
Nolkeg / server.py
Created July 3, 2025 12:05
Python server to server webgl brotli build
import http.server
import socketserver
import os
PORT = 8000
class BrotliHTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
def end_headers(self):
if self.path.endswith(".br"):
self.send_header("Content-Encoding", "br")
@Nolkeg
Nolkeg / AdjustWannayuk.cs
Created July 13, 2021 05:50
Unity TMP Thai wannayuk adjustor
using System.Collections.Generic;
using System.Reflection;
using TMPro;
using UnityEditor;
using UnityEngine;
public class AdjustWannayuk : EditorWindow
{
static bool overrideAll = true;
static float wannayukHeight = 30f;