Simon A. Nielsen Knights
Simon A. Nielsen Knights
Questions like this are better to ask in one of the [communities](https://github.com/ziglang/zig/wiki/Community) rather than the issue tracker as the issue tracker is only for bug reports and this is not...
Another use-case would be [fonts](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM05/Chap5.html) and [image formats](https://github.com/google/iconvg/blob/main/spec/iconvg-spec.md) which encode and compute using fixed-point representations.
> I like to consider it to be semantic documentation Should discarded parameters/variables which are later used within the function be an error too? I've noticed that it's easy to...
`--autofix` makes more sense as a flag for zig fmt given that zig fmt is already modifying the code when it comes to sorting pointer attributes, fixing syntax between versions,...
You can get the expression too and the result isn't too far from the proposal though for blocks it'd require a bit more work to get the display right. Result:...
I don't really like `io_mode` as it changes the language from underneath along with many of the abstractions within the stdlib without a way to use `File` and similar outside...
@kprotty Methods taking the IO type would possibly be cleaner as the underlying type (e.g `File`) doesn't change despite a different IO mode and allows it's inclusion within containers without...
A few more resources - [Game AI Pro](http://www.gameaipro.com/) - [Linear Logic Programming for Narrative Generation](https://www.cs.cmu.edu/~cmartens/lpnmr13.pdf) - [IA on AI](https://intrinsicalgorithm.com/IAonAI/) - [Hierarchical Task Networks](https://blog.inductorsoftware.com/blog/htnoverview) - [Modeling Individual Personalities in The Sims...
- [Adam: A Method For Stochastic Optimization](https://arxiv.org/pdf/1412.6980.pdf) - [Instant Neural Graphics Primitives with a Multiresolution Hash Encoding](https://nvlabs.github.io/instant-ngp/assets/mueller2022instant.pdf) (SDFs specifically) - [Clever Algorithms](https://github.com/clever-algorithms/CleverAlgorithms) For both the GUI portion of IAUS at...
After experimenting a bit with different systems a plain Dual Utility system seems like the most effective for both performance and quality. It's capable of replacing state machines pretty much...