Explore >> Select a destination


You are here

kewah.com
| | blog.theserverlessterminal.com
15.4 parsecs away

Travel
| | Learn how to use AWS Lambda's response streaming for improved performance with large payloads and real-time applications
| | bobbyhadz.com
7.2 parsecs away

Travel
| | Learn about what AWS CDK constructs are, the Different Levels of CDK Constructs and how to write your own.
| | nodogmablog.bryanhogan.net
14.2 parsecs away

Travel
| | In my previous post I showed how to build a .NET 5 library inside a docker image and deploy it to an AWS Lambda. This post is a small extension on that. I'm going to build a .NET 5 Web API application, turn it into a docker image, deploy it to an AWS Lambda, and connect an API Gateway to the Lambda to call the controller inside the application, inside the container, inside the Lambda!
| | connorberry.com
39.6 parsecs away

Travel
| Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...