Skip to content

Instantly share code, notes, and snippets.

View fupicat's full-sized avatar
🕳️
buraco

Fupicat fupicat

🕳️
buraco
View GitHub Profile
@fupicat
fupicat / hide_discord_decorations.css
Last active October 28, 2025 20:57
Add this to your Discord CSS with Vencord or other clients to hide animated profile decorations. Note that this also hides your own decorations, and decorations in the shop.
/* Hide avatar decorations */
[class*="avatarDecoration_"] {
display: none !important;
}
/* Hide profile effects */
[class*="profileEffects_"] {
display: none !important;
}
@fupicat
fupicat / list.c
Created March 14, 2023 00:34
Implementação simples de lista em C
/* Disclaimer eu n sei oq to fazendo
* nao use esse código ele foi so pra eu aprender
*/
#include <stdio.h>
#include <stdlib.h>
typedef struct list {
int size;
int *elements;
@fupicat
fupicat / download-images-array.js
Created December 23, 2022 18:01
Node.js - Download images from array.
const urls = [
// URL strings here.
];
var https = require("https"),
Stream = require("stream").Transform,
fs = require("fs");
function download(url, filename) {
https