Skip to content

Instantly share code, notes, and snippets.

View PomiNOT's full-sized avatar

PomiNOT PomiNOT

View GitHub Profile
@PomiNOT
PomiNOT / lol.js
Created September 27, 2025 09:00
function setupLightningBoltSimulator() {
// ---------- STYLES ----------
const css = `
:root {
--bg: #0b0f1a;
--panel: #121826cc;
--text: #e8eefc;
--muted: #9fb0d1;
--accent: #7cc7ff;
--accent-2: #a5f3fc;
@PomiNOT
PomiNOT / autoskip.js
Last active February 6, 2025 03:55
Autoskipper
// ==UserScript==
// @name Coursera Auto-advance
// @namespace Violentmonkey Scripts
// @match https://www.coursera.org/learn/*
// @grant none
// @version 1.0
// @author -
// @description 11/2/2024, 9:38:39 PM
// @run-at document-idle
// ==/UserScript==
@PomiNOT
PomiNOT / Main.java
Created September 8, 2023 15:40
Inputting with method references experiment
import model.Candidate;
import java.util.Scanner;
public class Main {
private static interface StringSetter {
void set(String value);
}
private static interface IntSetter {
#include <iostream>
#include <ctime>
#include <cstdlib>
int getNumOfPlayers() {
char input;
do {
std::cout << "Gamemode:\n";
std::cout << "a. Singleplayer\n";
std::cout << "b. Multiplayer\n";