I hereby claim:
- I am suburbanno on GitHub.
- I am Vinicius R (147016434176753664) on Discord.
/* ==UserStyle== | |
@name Bsky UI | |
@version 1.1 | |
@namespace https://github.com/Suburbanno/ | |
@description Better UI things for BlueSky, squared elements and hover colors | |
@author Suburbanno | |
==/UserStyle== */ | |
@-moz-document url("bsky.app"), url("main.bsky.dev"), url("app.staging.bsky.dev") { | |
.r-1wh0n7e, | |
.r-417010, |
{ | |
"name": "GreenCord", | |
"description": "Green", | |
"authors": [ | |
{ | |
"name": "Vinicius", | |
"id": "147016434176753664" | |
} | |
], | |
"semanticColors": { |
// ==UserScript== | |
// @id scanner-link-copy@xMAXIMx | |
// @name IITC plugin: Scanner link-copy | |
// @version 0.2.1 | |
// @description Adds scanner link (copy mode) to IITC | |
// @author xMAXIMx | |
// @category Info | |
// @include *://*.ingress.com/* | |
// @match *://*.ingress.com/* | |
// ==/UserScript== |
// Function isValidRA(RA) | |
function isValidRA(RA) { | |
let isValid, period | |
const regex = /^221\d{4}-006/, cutRA = RA.substr(0, 3) | |
if(!regex.test(RA)) isValid = false | |
switch(cutRA) { | |
case '221': | |
period = 1 |
require('dotenv').config(); | |
const { Client, Intents } = require('discord.js'); | |
const client = new Client({ | |
intents: [ | |
Intents.FLAGS.GUILDS, | |
Intents.FLAGS.GUILD_MESSAGES, | |
Intents.FLAGS.GUILD_MEMBERS, | |
], | |
}); |
// disable iitc plugin if it's on | |
// go to https://www.ingress.com/intel | |
// open console and paste in the code below, press enter | |
// join https://t.me/passcodes for more passcodes | |
// add jquery | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); |
from random import sample | |
with open('leaked_pins.txt', 'w') as f: | |
[f.write('%04d\n'%i) for i in sample(range(0, 10000), k=10000)] |
print('Server XP Calculator') | |
core = int(input('Put amount of Core available: ')) | |
fw = int(input('Put the amount of FireWall available: ')) | |
av = int(input('Put the amount of Antivirus available: ')) | |
core = core * 120 | |
fw = fw * 120 | |
av = av * 80 | |
total = core + av + fw |