Radek Szymczyszyn

Results 186 comments of Radek Szymczyszyn

I'm not sure whether dialyzer is able to tackle imports, so we _might_ not be able to verify that the calls made in `ejabberd_c2s`/`ejabberd_c2s_mine` to functions in `ejabberd_c2s_*_lib` are done...

@ysz Good stuff! WRT BoringSSL, this is from its [PORTING.md](https://boringssl.googlesource.com/boringssl/+/HEAD/PORTING.md): > Note: BoringSSL does not have a stable API or ABI. It must be updated with its consumers. It is...

Hi Hashim, Thanks for your interest in MongooseIM! Depending on where you are in your setup or reconnaissance, there are different ways to achieve what you want. The simplest is...

Only one - it provides the functionality for versions of Erlang prior to 23 / 24 which bring `shell_docs` (the former just for OTP docs, the latter also for non-OTP...

Log for https://github.com/erlang/otp/commit/8313eae72dd170d2f4502d225b74dbf543198313 at https://github.com/erszcz/docsh/commit/a2e0ebde8508a4db853fcf7fab28c807821f7c5a: ``` $ r3 ct --suite test/completeness_SUITE.erl ===> Verifying dependencies... ===> Compiling docsh src/docsh_lib.erl:168: Warning: missing specification for function compile_info_source_file/1 src/docsh_lib.erl:229: Warning: erlang:get_stacktrace/0: deprecated; use the...

I tried this on OTP 22, 24, and 25, but with all of them I get the same, parenthesised printout: ``` > Form = merl:quote({1,1}, ""). > io:format("~s\n", [erl_pp:expr(Form, [])])....

I did a similar exercise with `erl_prettypr` on OTP 24: ``` $ cat z.erl -module(z). uri_encode_path_byte(_) -> . f(Value) -> . $ erl ... 6> c("z.erl", [debug_info]). z.erl:3:1: Warning: function...

> I didn't know you can use ExDoc for plain Erlang projects. Yeah, it was a journey, but it's possible for some time now, thanks to our work in the...