Alex Badics
Alex Badics
A feldolgozást a https://github.com/badicsalex/hun_law csinálta, egészen konkrétan a definiált nyelvtan a munkagép: https://github.com/badicsalex/hun_law/blob/master/hun_law/grammar/grammar.ebnf A https://github.com/sassbalint/mta-itm-tv érdekes ötlet, igazából annak semmi akadálya nincs, hogy törvényjavaslatokra is elő lehessen állítani automatikusan az...
Ja, és difftoolnak a github csak a kisebb törvényekre jó, mert a nagy fájlokat nem akarja megjeleníteni.
The main thing I want to get out of this is construction-time type checking, so I really must be able to override at least the type annotation of `the_x`. Also,...
Huh, `if typing.TYPE_CHECKING:` is another trick I haven't thought of. I've tried ``` @attr.s(auto_attribs=True) class BetterXContainer(XContainer): if TYPE_CHECKING: the_x: XButBetter ``` It solves the "ton of asserts in the methods"...
Hi! Thanks for joining in :smile: I'm sorry, the comment is correct, I just didn't read it properly and notice "the same body". (Defining an attribute two times in the...
Hi, I found myself writing the following code: ```rust impl maud::Render for MyLittleStructure { fn render_to(&self, buffer: &mut String) { html_to!(buffer, .container { ... Non trivial html stuff ... }...
This is exactly what I've been experimenting with lately. I started using `encase`, because `bytemuck`'s alignment complaints were getting annoying. And `encase`'s `write()` does indeed rearrange some struct fields. Since...
It would be great if the generator explicitly disallowed vec3, or automatically added padding, because this seems like a very common pitfall.
Hi, I'm actually struggling with this one currently (while bringing `g2o` to the rust world), and I've made some warcrime-level workarounds to call "mut self" methods on an instance. I'm...
I'm not sure what the status here is, but I'd love to implement the `VK_GOOGLE_display_timing` version, if you can give some guidance.