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>

Keybase proof

I hereby claim:

  • I am olvrb on github.
  • I am olvrb (https://keybase.io/olvrb) on keybase.
  • I have a public key ASCvzJ7fVQy2oltOj5WrqJ5kCebFL0xb-vVNXOubaZ356wo

To claim this, I am signing this object:

@olvrb
olvrb / app.js
Created November 1, 2017 12:59
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()}`
}
});