This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set autoindent | |
set backup | |
set indicator | |
set linenumbers | |
set mouse | |
set tabsize 2 | |
set tabstospaces | |
include "/usr/share/nano/*.nanorc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Loading logger module | |
const log = require('fancy-log') | |
log.info('Loading...') | |
// Loading the rest of the modules | |
const Webhook = require("./webhook"), | |
express = require('express'), | |
TurndownService = require('turndown'), | |
turndownService = new TurndownService(), | |
events = require('events'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const snekfetch = require("snekfetch"); | |
const endpoint = "https://discordapp.com/api/v6/webhooks"; | |
class Webhook { | |
constructor(url) { | |
this.url = url; | |
this.id = ''; | |
this.token = ''; | |
this.meta = {}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cooldowns": { | |
"game": "Aguarde %t segundos antes de buscar algo novamente (%cd segundos de espera)", | |
"games": "Aguarde %t segundos antes de usar esse comando (%cd segundos de espera)", | |
"top": "Aguarde %t segundos antes de ver a lista de mais vendidos novamente (%cd segundos de espera)", | |
"new": "Aguarde %t segundos antes de ver a lista de lançamentos novamente (%cd segundos de espera)", | |
"upcoming": "Aguarde %t segundos antes de ver a lista de jogos vindo em breve novamente (%cd segundos de espera)", | |
"specials": "Aguarde %t segundos antes de ver a lista de ofertas novamente (%cd segundos de espera)", | |
"user": "Aguarde %t segundos para buscar por um usuário novamente (%cd segundos de espera)", | |
"users": "Aguarde %t segundos para buscar uma lista de usuários novamente (%cd segundos de espera)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Este app foi feito para Windows, mas sinta-se à vontade para modificá-lo | |
* para que seja compatível com o SO que você quiser. | |
* | |
* Neste exemplo, usei ele para abrir um arquivo de vídeo aleatório | |
* dentro de uma pasta. | |
*/ | |
var fs = require('fs'), | |
path = require('path'), |