Yakov
Yakov
Here is my solution for my previous issue.
Hello! As you know Erlang developers added new functions file:sendfile/2 and file:sendfile/5 in 15B version to perform sending files via tcp. I'll try to implement new send file function. I...
Some times i need to auto receive request body. For example for getting vars from "/login" POST request. And also i need to upload big files on server and save...
This simplified code: ```erlang -module(t). -feature(maybe_expr, enable). -export([mult2/1]). -spec mult2(string()) -> {ok, string()} | {error, bad_int}. mult2(Str) -> maybe {ok, Int} ?= convert_to_int(Str), {ok, integer_to_list(Int*2)} end. -spec convert_to_int(string()) -> {ok,...