Sergey Bronnikov

Results 139 issues of Sergey Bronnikov

We are using coveralls GH action for sending `coverage.info` file to Coveralls service (see settings in [workflow](https://github.com/tarantool/tarantool/pull/7791)). `coverage.info` file has been prepared using `lcov` (see [command-line](https://github.com/tarantool/tarantool/blob/d960476d1cc2581771d2903f31c53acd3e204b07/.test.mk#L122-L133)). ``` Using lcov file:...

Probably Twitter is less relevant than earlier and field for Mastodon profile could be useful. ![image](https://github.com/luarocks/luarocks-site/assets/1151557/dd8c386d-ea34-4d02-b044-d5480f187c3c) This issue requests an additional field for Mastodon.

There is a regression in comparison to previous Elle version. Elle cannot check example described in paper [^1]: ```clojure elle.core=> (require '[elle.list-append :as a] #_=> '[jepsen.history :as h]) nil elle.core=>...

Lua is not added to a `PATH` and its location is not documented. It would be nice to describe install path in a README. Current location is `$(pwd)/.lua`, see [^1]....

Lua 5.4.4 is released [^1]. [^1]: https://www.lua.org/versions.html#5.4

https://github.com/sergev/vak-opensource/tree/master/games

- проверить заголовки (вложенность, заглавные буквы убрать) - проверить сноски - убрать все пробелы перед запятыми - убрать висячие переносы - проверить иллюстрации - починить таблицы - починить сноски на...

The same can be done with [coccinelle](http://coccinelle.lip6.fr/): `spatch --in-place --sp-file mmap.cocci src/*.c` Where contents of `mmap.cocci` (that's the whole contents): ```patch @@ identifier p; statement S; @@ p = mmap(...);...

Lua has a number of default metamethods ([Lua 5.3 Manual](https://www.lua.org/manual/5.3/manual.html) -> *2.4 – Metatables and Metamethods*) that defines an object behaviour for example for default Lua operators. Most of these...