Skip to content

Instantly share code, notes, and snippets.

View lnstchtped's full-sized avatar
🦫
Oramnj Guice

LnsTchTps lnstchtped

🦫
Oramnj Guice
  • 11:05 (UTC -06:00)
View GitHub Profile
@amunchet
amunchet / noVNCCopyPasteProxmox.user.js
Last active September 10, 2025 19:03
Copy/Paste for noVNC Proxmox
// ==UserScript==
// @name noVNC Paste for Proxmox
// @namespace http://tampermonkey.net/
// @version 0.2a
// @description Pastes text into a noVNC window (for use with Proxmox specifically)
// @author Chester Enright
// @match https://*
// @include /^.*novnc.*/
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @grant none
@andrewmilson
andrewmilson / file-upload-multipart.go
Last active June 28, 2025 18:41
Golang multipart/form-data File Upload
package main
import (
"net/http"
"os"
"bytes"
"path"
"path/filepath"
"mime/multipart"
"io"