I'm Nathan, and I currently work for Townhouse as the Head of Software Development, writing Typescript and Ruby by day and functional Rust and Scala by night. I write for SitePoint about Ruby, and I'm writing interesting thoughts about all sorts on my blog. You can also find me on Twitter and of course here on GitHub. If you want to email me the old fashioned way, you can get in touch with me at mail/at/nathankleyn.com.
static NAME: &'static str = "Nathan";
static COMPANY: &'static str = "Townhouse";
static MY_WEBSITE_AND_BLOG: &'static str = "https://nathankleyn.com/";
static COMPANY_WEBSITE: &'static str = "https://townhouse.co.uk/";
static TWITTER: &'static str = "https://twitter.com/nathankleyn";
static EMAIL: &'static str = "mail/at/nathankleyn.com";
static SITEPOINT_PROFILE: &'static str = "https://www.sitepoint.com/author/nkleyn/";
fn main() {
println!("{}", github_readme());
}
fn github_readme() -> String {
format!("I'm {}, and I currently work for [{}]({}) as the Head of Software Development, \
writing Ruby by day and functional Rust and Scala by night. \
[I write for SitePoint about Ruby]({}), and \
[I'm writing interesting thoughts about all sorts on my blog]({}). \
You can also find me on [Twitter]({}) and of course here on GitHub. \
If you want to email me the old fashioned way, you can get in touch with me at {}.",
NAME, COMPANY, COMPANY_WEBSITE, SITEPOINT_PROFILE, MY_WEBSITE_AND_BLOG, TWITTER, EMAIL)
}