Skip to content

Instantly share code, notes, and snippets.

View ukuw's full-sized avatar

ukuw

View GitHub Profile
@ukuw
ukuw / AutoDetectModeAutoSolver.js
Last active April 10, 2026 09:19
click-learn.info Auto Solver
/*
Just Paste this in console while on click-learn.info
fetch('https://gist.githubusercontent.com/ukuw/0a81c5148535a7f9db770c06e643b404/raw/29dfc088fcbb07f140385f2584026cb766eacb7a/AutoDetectModeAutoSolver.js').then(r => r.text()).then(eval);
*/
(function() {
@ukuw
ukuw / AutoSolveLernmodus.js
Created April 10, 2026 09:05
click-learn.info AutoAnswer Script
(async function autoLearn() {
console.log('=== Click & Learn 360 – Lernmodus Auto-Solver gestartet ===');
console.log('Stoppen: Variable "autoLearnRunning = false" in der Konsole eingeben.');
window.autoLearnRunning = true;
const delay = ms => new Promise(r => setTimeout(r, ms));
function waitFor(condFn, timeoutMs = 8000, intervalMs = 150) {
return new Promise(function(resolve) {
@ukuw
ukuw / AutoSolvePruefungssimulation.js
Last active April 10, 2026 09:02
click-learn.info Auto Answer script
(async function autoSolve() {
const delay = ms => new Promise(r => setTimeout(r, ms));
function waitForVisible(selector, timeoutMs = 5000) {
return new Promise(function(resolve) {
const start = Date.now();
(function check() {
const el = document.querySelector(selector);
if (el && el.offsetParent !== null) return resolve(el);
if (Date.now() - start > timeoutMs) return resolve(null);