Results 40 issues of Tima Kinsart

It seems that the recursion engine relies on [one ambiguity] in the standard (the issue is about C++ but the C preprocessor is essentially the same): https://github.com/Hirrolot/metalang99/blob/695a9d8dbc3507447ba28d312da229730d20c6fc/include/metalang99/eval/rec.h#L12 Here, `ML99_PRIV_REC_NEXT` can...

bug

As for now, the list operations are implemented naively. The task is to unroll them (see [loop unrolling]) to improve their performance (at least unroll the mostly used functions). [loop...

performance

When your ADTs code interacts with another that doesn't use ADTs, you typically write wrappers. A good idea is to provide wrappers for common libraries (you can suggest a new...

enhancement
good first issue

Code: ```c #include #include coroutine void empty() {} int main() { int all = bundle(); assert(all != -1); bundle_go(all, empty()); /* #9 */ assert(hclose(all) != -1); } ``` When trying...

Just for interest: is it an abbreviation or just a name?

Just translate this tutorial to English so all the GitHub users could understand it.

I use Utterances for [my personal blog](https://hirrolot.github.io/). It is really an unfortunate thing that I can't just adjust comments' `font-size` with the text of a blog post. ![Screenshot from 2022-06-06...

People [sometimes](https://github.com/GoldsteinE/r9ktg/blob/d79ecc03cc8d475d53350755edbdffdc425b2266/src/main.rs#L370) need to pass additional dependencies to simple bots, but at the same time, they want to use our REPLs because they're easier to setup. However, currently, it can...

feature-request

I think that it would be nice if we had something like `LinearArgs` for `BotCommand` as a type that holds a sequence of arguments separated by some string. Related to...

feature-accepted
K-feature-request
C-main

People [sometimes](https://t.me/teloxide_ru/1101) want to execute some operation as the last step in their dispatch tree. This FR suggests implementing functionality for post-handling of requests. ## Possible implementations 1. Directly in...

feature-accepted
K-feature-request
A-update-managment