About Me
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Previews
Created 11/29/2020 | Updated 11/29/2020
On creating this homepage
Why not use an existing solution for continue to use Hugo for my personal homepage?
As a software engineer, experimenting with "edgy" technologies is part of the joy and this homepage seemed like an appropriate location for such nonsense.
Created 11/29/2020 | Updated 11/29/2020
Welcome
This is a preview of code:
#[wasm_bindgen]
pub fn get_post_from_toml(text: &str) -> String {
match Post::from_toml(text) {
Ok(post) => {
match serde_json::to_string(&post) {
Ok(val) => val,
_ => DEFAULT_NOT_FOUND_POST.to_string()
}
},
_ => DEFAULT_NOT_FOUND_POST.to_string()
}
}