I hereby claim:
- I am Luke-Nukem on github.
- I am luke_jones (https://keybase.io/luke_jones) on keybase.
- I have a public key whose fingerprint is 869A B608 13C4 24E5 06EB 0D3A 42E6 88B9 27B9 B1BD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| changetheme() { | |
| local theme_file="$HOME/.config/themelight" | |
| local light_gtk="Adwaita" | |
| local light_gedit="builder" | |
| local light_vim="zellner" | |
| local dark_gtk="Adwaita-dark" |
| #![feature(core_intrinsics)] | |
| pub trait Deserialize: Sized { | |
| fn deserialize(String) -> Self; | |
| } | |
| struct Position(i32, i32); | |
| struct Velocity(i32, i32); | |
| impl Deserialize for Position { |
| /// | |
| /// A generic version of `callback macro` | |
| /// | |
| /// # Example | |
| /// ```rust | |
| /// #[macro_use(callback)] | |
| /// # extern crate framework; | |
| /// trait Command { | |
| /// fn run(&self) {} | |
| /// } |
| #![feature(unboxed_closures)] | |
| #![feature(core)] | |
| #![feature(io)] | |
| use std::old_io::stdio::{stdin}; | |
| use std::collections::HashMap; | |
| // This is our toy state example. | |
| #[derive(Debug)] | |
| struct State { |