Skip to content

Instantly share code, notes, and snippets.

@Neodevils
Neodevils / index.html
Last active October 22, 2022 20:50
AnimeJS Staggered Grid Effect
<div id="tiles"></div>
<h1 id="title" class="centered">
The name of the game is
<span class="fancy">Chess</span>.
</h1>
<i id="icon" class="fa-solid fa-chess centered"></i>
<a id="source-link" class="meta-link" href="https://cdpn.io/YzXOGpm" target="_blank">
@Neodevils
Neodevils / mobile-colors.html
Last active March 18, 2025 20:51
GitHub Syntax Highlight
<script> // #84bb81
const // #a04752
Uppercase // #db8043
method() // #9880c1
.property // #cedff2
this // #f7f9fc
text // #eff1f4
"String" // #87b4e8
// comments // #9a9ca1
</script> // Mobile Version
@Neodevils
Neodevils / createWebhookMessage.js
Last active July 11, 2023 11:56
Creating A Webhook Message
interaction.channel.createWebhook({
name: "minesa",
avatar: "https://media.discordapp.net/attachments/861208192121569280/1075861709610299412/106327680.png",
reason: "This is needed for now"
}).then(webhook => console.log(webhook.url))
const { AttachmentBuilder, ButtonBuilder, ActionRowBuilder } = require("discord.js");
const file = new AttachmentBuilder()
.setFile("https://cdn.discordapp.com/attachments/861208192121569280/1026236427622695013/Adobe_Express_20221002_2352210_1.png")