Skip to content

Instantly share code, notes, and snippets.

View olvrb's full-sized avatar

Oliver Boudet olvrb

  • Luleå
View GitHub Profile
@olvrb
olvrb / Localizable.strings
Last active April 25, 2019 09:03
TermHere 1.3 New Strings
<!-- Title of the Help window. -->
<key>HELP</key>
<string>Hjälp</string>
<!-- Done button label. -->
<key>DONE</key>
<string>Klar</string>
@olvrb
olvrb / app.js
Created August 18, 2017 08:26
Simple, complete example of a bot in Discord.js
// Load up the discord.js library
const Discord = require("discord.js");
// This is your client. Some people call it `bot`, some people call it `self`,
// some might call it `cootchie`. Either way, when you see `client.something`, or `bot.something`,
// this is what we're refering to. Your client.
const client = new Discord.Client();
// Here we load the config.json file that contains our token and our prefix values.
const config = require("./config.json");