Skip to content

Instantly share code, notes, and snippets.

View kosayoda's full-sized avatar
💭
typing...

Kieran Siek kosayoda

💭
typing...
View GitHub Profile
@kosayoda
kosayoda / keybase.md
Created September 17, 2020 10:36
Keybase

Keybase proof

I hereby claim:

  • I am kosayoda on github.
  • I am kosayoda (https://keybase.io/kosayoda) on keybase.
  • I have a public key ASBDt9Z_g6OZPyIRKJ8NIu5jpSM_JOgPTTjsJew3hQ0nmgo

To claim this, I am signing this object:

@kosayoda
kosayoda / hangman.rs
Created September 14, 2019 05:28
Yell at this please
use std::io;
use std::iter;
use std::collections::BTreeSet;
use rand::seq::SliceRandom;
use rand::thread_rng;
static WORDS: &'static str = include_str!("wordlist.txt");