Skip to content

Instantly share code, notes, and snippets.

View jsmette's full-sized avatar

Julien Smette jsmette

  • EVS Broadcast Equipment
  • Belgium, Liège
  • 22:13 (UTC +02:00)
  • X @Nova_BE_
View GitHub Profile
@CWFranklin
CWFranklin / app.js
Last active March 31, 2020 15:28
A script to detect user game changes and apply valid roles
var Discord = require('discord.js');
var discordBotToken = 'YOUR BOT TOKEN HERE';
var prefix = 'vores_';
var roleGame = {
"blackdesert": {
name: "black desert online",
id: ''
},
@sloria
sloria / bobp-python.md
Last active July 21, 2024 04:44
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens