Skip to content

Instantly share code, notes, and snippets.

View SollyBunny's full-sized avatar

Solly SollyBunny

View GitHub Profile
@SollyBunny
SollyBunny / get-all-repos-with-issues-you-have-commented-on.py
Created September 14, 2025 20:25
Get all repos with issues you have commented on
#!/bin/env python3
import requests
USERNAME = "SollyBunny"
repos = set()
page = 1
while True:
url = f"https://api.github.com/search/issues?q=commenter:{USERNAME}&per_page=100&page={page}"
@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;
@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)