Skip to content

Instantly share code, notes, and snippets.

View BulzyKrown's full-sized avatar
✔️
Verified Bot Developer in Discord

BulzyKrown BulzyKrown

✔️
Verified Bot Developer in Discord
View GitHub Profile
@BulzyKrown
BulzyKrown / git.md
Last active January 25, 2022 00:33
Git mini cursito

Primera configuracion de git:

  • git config --global user.name "TUNICK"
  • git config --global user.email "TUCORREO"
  • git config --global alias.s "status"
  • git config --global alias.l "log --oneline --decorate --all --graph"

Revisar la config

  • git config --global -l

Revisar el estado de los archivos:

@BulzyKrown
BulzyKrown / Discord
Last active September 11, 2018 21:01
Discord Animation
https://discordapp.com/assets/0bdc0497eb3a19e66f2b1e3d5741634c.webm
@BulzyKrown
BulzyKrown / app.js
Created February 5, 2018 05:22 — forked from olvrb/app.js
send random color discord js
message.channel.send({
embed: {
color: Math.floor(Math.random() * 16777214) + 1, //random color between one and 16777214 (dec)
description: `Random color generated: ${randColor}\n${randColor} is equal to 0x${randColor.toString(16).toUpperCase()}`
}
});