TatriX
TatriX
I created [Discord channel](https://discord.gg/NQPmVR). Feel free to join!
It turns our that invite links have expiration date. Here's unlimited one: https://discord.gg/JHHcHp5
What do you think about giving an iterator instead of custom methods? Instead of ```rust match url.next_path_part() { None => Page::Home, Some("report") => Page::Report(page::report::init(url)), _ => Page::Unknown(url), } ``` something...
For our work project I'm using very simple approach: there is a simple `Screen` enum which can be converted from `Url` and back to it. It works really nice from...
> "For our work project" - I assume we can't see it (?). Yes, unfortunately I can't show it. I haven't thought that much about nested modules, but I would...
And yet another thing: I was slightly confused about `Url` not being a real url, but rather some relative application specific thing. Maybe I'm wrong though. My mental model works...
Here's a reproducible example based on `counter` example from the latest master: ```rust // ... snip fn before_mount(_: Url) -> BeforeMount { BeforeMount::new() .mount_point(seed::body()) .mount_type(MountType::Takeover) } #[wasm_bindgen(start)] pub fn render()...
I've encountered a problem with wordpress xml which has `content:encoded` and `excerpt:encoded` tags. I'm getting: ``` Error(Custom("duplicate field `encoded`") ``` See https://gist.github.com/iwek/3977831
I did a workaround for now: ```rust pub encoded: Vec, // encoded[0] is `content:encoded` ``` Though it's not very reliable.
AstroBlasto is pretty straightforward and can be used as a walk-through tutorial. What I'd like to read is a high level overview or main ggez concepts and components. Also what...