Martin Ender

Results 25 issues of Martin Ender

It's normally possible to reload Unity on a running webpage by unloading the current instance (using `gameInstance.Quit()`) and then loading a new one (using `UnityLoader.instantiate` as usual) in a callback....

In cases, where the auxiliary variables are fixed (e.g. for unchanging mapped grids), recomputing the ghost cell values at each time step is a somewhat unnecessary (if small) overhead. In...

API

I noticed that all vertices on the bounding box (except the four corners) are duplicated (once for each cell sharing the vertex, I suppose). Is that a bug or a...

I'm not entirely sure where to file this issue since it concerns multiple repositories. I noticed that the `State` in PyClaw uses the name `index_capa` for Classic's `mcapa`, whereas `ClawRunData`...

Basically two unary operators that convert between characters and their Unicode code points. Not sure whether they should just work on the first character/integer or be able to transform entire...

enhancement
substitution-syntax

The `:;` modifiers are currently only available for entire-match elements, not for numbered and named groups. A potentially very useful feature would be to generate the cumulative capture count (from...

enhancement
substitution-syntax

When there are only explicit references to the result log (and no dynamic elements), automatically limit the log in size so that those references are covered. For example, using both...

[Boost](http://www.boost.org/doc/libs/1_57_0/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html) has conditional replacement syntax, where you can choose between two substitutions based on whether a given group was matched or not. That feature would be really useful, although I'd...

enhancement
substitution-syntax

Another one for the list of "if I ever pre-process the regex...". Add an escape sequence that matches exactly one line (e.g. `\_`) such that the horizontal position of the...

enhancement
regex-preprocessor

Probably a bit ambitious but this should be possible to implement this via string-preprocessing of a regex. The idea is that you have some escape sequence which remembers the position...

enhancement
regex-preprocessor