Skip to content

Instantly share code, notes, and snippets.

View Suburbanno's full-sized avatar
📡
Focusing

Vinicius Suburbanno

📡
Focusing
View GitHub Profile
@Suburbanno
Suburbanno / Bskyui.user.css
Last active September 10, 2024 00:50
bsky css
/* ==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": {
@Suburbanno
Suburbanno / Scanner-link-copy.js
Created April 29, 2022 04:24
Adds scanner link (copy mode) to IITC
// 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,
],
});
@Suburbanno
Suburbanno / ingress-passcode.js
Created January 15, 2019 17:55 — forked from idealhack/ingress-passcode.js
ingress passcode auto run
// 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);
@Suburbanno
Suburbanno / Florian_Programming_Challenge.py
Created December 28, 2018 18:50
Generates an array of numbers between 0 - 9999 with leading zeros and returns
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)]
@Suburbanno
Suburbanno / README.md
Created December 2, 2018 22:09
Discord authentication (server: fennifith)

Discord authentication (server: fennifith)

I hereby claim:

  • I am suburbanno on GitHub.
  • I am Vinicius R (147016434176753664) on Discord.
@Suburbanno
Suburbanno / vHackOSserverXp.py
Last active April 13, 2018 15:58
🆙 A simple calculator to calculate the amount of XP you earn with the server.
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