AWS Lambda and API Gateway limitations

Take note of the API Gateway and AWS Lambda limitation, especially when working with binary files. API Gateway can only receive a maximum of 10 MB payload, meaning if you exceeded that, the client will receive an error 413 Request Entity Too Large However, if …

C# local function

A useful but overlooked (well, at least for me) feature from C# 7 called local function. it is fairly useful for long methods that might requires some self-contained code blocks.