HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nam17887

no profile record

comments

nam17887
·3 lata temu·discuss
great. I just followed you on Twitter. I have a similar idea - I'm building a software testing tool using 100% Rust and serverless. Do you regularly post updates of your works on twitter?
nam17887
·3 lata temu·discuss
I have no idea what I am looking at
nam17887
·4 lata temu·discuss
Automate things?
nam17887
·4 lata temu·discuss
I've written a fully functioning web server using a managed language, with SSL, multi-threading, Keep-Alive and chunked content encoding.

I suggest to start with understanding the HTTP protocol by reading the RFC. The most important part is how to start and end the HTTP message (by closing connection, by Content-Length, or by chunked encoding).

Then next important bit is how to receive the HTTP message. Network APIs will ask for number of bytes to receive, so you'll need to know exactly how the message ends.

Stick with the RFC, programming language doesn't matter because socket APIs are very much the same.
nam17887
·4 lata temu·discuss
Books. Read. Read a lot.
nam17887
·4 lata temu·discuss
I love MonoDevelop, I used it to write C# for Linux before the .NET core days
nam17887
·4 lata temu·discuss
you say "as a service" for things that are not a service and then you make it a service.