I hereby claim:
- I am naikrovek on github.
- I am naikrovek (https://keybase.io/naikrovek) on keybase.
- I have a public key whose fingerprint is 952D F4B1 0BF8 6B7C 7062 6F98 E519 DCAF D22B 8003
To claim this, I am signing this object:
| public sealed partial class MainPage : Page { | |
| CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher; | |
| DiscordSocketClient _client; | |
| string token = ""; | |
| public MainPage() { | |
| this.InitializeComponent(); |
| 'use strict'; | |
| let Discord = require("discord.js"); | |
| let bot = new Discord.Client({ | |
| forceFetchUsers: true | |
| }); | |
| let botEmail = ""; | |
| let botPasswd = ""; |
| <Page | |
| x:Class="BlackBoard.MainPage" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:local="using:BlackBoard" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| mc:Ignorable="d"> | |
| <Grid Background="White"> |
| 'use strict'; | |
| // set up the Discord client. | |
| let Discord = require("discord.js"); | |
| let bot = new Discord.Client({ forceFetchUsers: true }); | |
| // this is not an api-compatible bot, so we must log | |
| // in as a regular user. These are those credentials. | |
| let botEmail = ""; | |
| let botPasswd = ""; |
| [ | |
| { "keys": ["ctrl+up"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false} }, | |
| { "keys": ["ctrl+down"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true} } | |
| ] |
I hereby claim:
To claim this, I am signing this object:
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| import java.security.InvalidAlgorithmParameterException; | |
| import java.security.InvalidKeyException; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.spec.AlgorithmParameterSpec; | |
| import javax.crypto.BadPaddingException; | |
| import javax.crypto.Cipher; | |
| import javax.crypto.IllegalBlockSizeException; | |
| import javax.crypto.NoSuchPaddingException; | |
| import javax.crypto.spec.IvParameterSpec; |
| // by david @ bees & bombs | |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { |
| // by david whyte aka bees and bombs. im sorry for this | |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { |