Skip to content

Instantly share code, notes, and snippets.

View Vractos's full-sized avatar
🎯
Focusing

Vinicius Vractos

🎯
Focusing
View GitHub Profile
# Estão na nota mas não estão em Taguatinga
-------------------------------------------------------------------------------------
51779767 (Lanterna)
51915469A
52042962A
100181996A
46843004A Tem 2 na nota, mas não veio nenhuma
KSP00ZFR5APA Tem 2 na nota, mas não veio nenhuma
51713065A Tem 2 na nota, mas não veio nenhuma
51882514A Tem 2 na nota, mas não veio nenhuma
@Vractos
Vractos / .zshrc
Last active February 22, 2022 00:04
Zsh Config
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/vinicius/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@Vractos
Vractos / delete-slack-messages.js
Last active November 10, 2021 23:16 — forked from firatkucuk/delete-slack-messages.js
Deletes slack public/private channel messages, private chat messages and channel thread replies.
#!/usr/bin/env node
// Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/
// Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID
// CONFIGURATION #######################################################################################################
const token = 'SLACK TOKEN';
// Legacy tokens are no more supported.
// Please create an app or use an existing Slack App
@Vractos
Vractos / seletores.css
Last active June 23, 2021 04:52
Seletores CSS
/* Seletor Universal */
* {
color: #ff0;
background-color: skyblue;
} */
/* Seletor de Classe */
.tag {
color: #ff0;
background-color: skyblue;