Skip to content

Instantly share code, notes, and snippets.

@Vanilluv
Vanilluv / ZeroOmega.json
Created January 30, 2026 16:23 — forked from GamerNoTitle/ZeroOmega.json
ZeroOmega Sync
{
"+Burpsuite": {
"bypassList": [
{
"conditionType": "BypassCondition",
"pattern": "127.0.0.1"
},
{
"conditionType": "BypassCondition",
"pattern": "[::1]"
@HugoAlvidrez
HugoAlvidrez / chatbot.js
Created January 8, 2026 20:54
Proyecto chatbot en Javascript
class Chatbot {
constructor() {
this.rules = {
hola: () => "Hola, pideme lo que quieras :D",
adios: () => "Bye bye, espero hablemos de nuevo pronto <3",
ayuda: () =>
"Puedo responder a saludos, despedidas y mostrar ayuda básica"
};
}
@tydev-new
tydev-new / sys2_ch.4_reflection.js
Last active January 3, 2026 16:24
Agent Design Playground - Ch.4 Reflection (by sys2)
/**
* CHAPTER 4: REFLECTION (VANILLA JS)
*
* This pattern forces the agent to critique and refine its own output in a loop before showing the final answer to the user. It is used to catch hallucinations, logic errors, or safety violations that often occur in a "first draft" generation.
*
* The agent generates an initial output, explicitly critiques it
* to identify flaws (bugs, tone, edge cases), and then generates
* a refined version based on that self-correction.
*
* This improves robustness compared to a "zero-shot" generation.
function setup() {
createCanvas(400, 400);
}
function draw() {
background(232, 218, 239);
}
// organic is used to store the list of instances of Organic objects that we will create
var organics = [];
// The variable change stores the rate of rotation and the y coordinate for noise later
[
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQMQ==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQMg==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQMw==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQNA==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQNQ==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQNg==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQNw==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQOA==",
"REVWX0hPQU5HTE9ORy1WT1JURVgtQVBQOQ==",
@jordaniasaldanha95
jordaniasaldanha95 / app.js
Created January 2, 2026 18:45
Código de leitura de tela
if ('speechSynthesis' in window) {
let utterance = new SpeechSynthesisUtterance(texto);
utterance.lang = 'pt-BR';
utterance.rate = 1.2;
window.speechSynthesis.speak(utterance);
} else {
console.log("Web Speech API não suportada neste navegador.");
}
@ONLym22
ONLym22 / aiedit.js
Created January 2, 2026 18:33
Uploaded via ONLym Bot
// 📂 Source: JavaScript
case "aiedit":
case "editimage":
{
if (!isPremium) return onlyPrem();
try {
let q = m.quoted ? m.quoted : m;
let mime = (q.msg || q).mimetype || '';
if (!/image/.test(mime)) return xreply(`Kirim atau kutip gambar dengan caption *${prefix + command} prompt*\n\nContoh: *${prefix + command} buat agar menggunakan topi*`);
@louim
louim / tuple-time.js
Last active January 3, 2026 16:00
Are you curious how much time you spend tupleing with colleagues? Go to https://production.tuple.app/profile/usage. Paste script in console. Enjoy!
(async function () {
// ========== CONFIGURE DATE RANGE HERE ==========
const startDate = new Date("2025-01-01");
const endDate = new Date("2025-12-31T23:59:59");
// ===============================================
const timePerPerson = {};
const logs = [];
// Parse time string like "46 min", "1 hr 30 min", "2 hr" to minutes
@VityaSchel
VityaSchel / hetzner-robot-server-monitoring-bulk-mass-adding.js
Last active January 3, 2026 16:02
Hetzner Robot Server Monitoring bulk mass adding
/*
This script automatically adds many domains to the hetzner sysmon via robot console. It is preconfigured to create an http check on port 443 with ssl enabled and no auth.
Instructions:
1. Go to https://robot.hetzner.com/server
2. Open your server
3. Open "monitoring" tab
4. Click on "configured systems" to reveal the sysmon form (it should show a plus sign, checks list, etc)
5. Open devtools in your browser -> go to console
6. Make sure to select "System-Monitor" iframe context! the script won't run in the top page context
7. Modify "yourdomains" to add whatever domains you want
const CONFIG = {
sheet_Retirement: "Retirement Plan",
sheet_Spends: "Statement - Spends",
sheet_Investment: "Investments",
sheet_Assets: "Assets",
sheet_Goals: "Savings Goals",
sheet_Budget: "Budget & Expense",
timezone: Session.getScriptTimeZone()
};