Skip to content

Instantly share code, notes, and snippets.

View SollyBunny's full-sized avatar

Solly SollyBunny

View GitHub Profile
@SollyBunny
SollyBunny / webserver.js
Last active February 8, 2025 06:27
A node.js http(s)/ws server which is all in one neat file (https://github.com/SollyBunny/webserver)
#!/usr/bin/env node
// https://github.com/SollyBunny/ZISS
// ZISS: Ziss Is So Silly
/*
0. Foreword
Created by SollyBunny (find me on Discord)
You can do almost anything with this: share, fork, use (look at license)
@SollyBunny
SollyBunny / benchmarkcontainers.cpp
Created November 17, 2024 19:31
Benchmark containers
#include <cstdint>
#include <map>
#include <unordered_map>
#include <iostream>
#include <chrono>
#include <functional>
#include <cstdlib>
#include <cstring>
volatile int out;