Alex Dubov
Alex Dubov
It's not about individual preferences, but about the state of dotnet ecosystem. I, personally, haven't seen a single largish dotnet application which was just a bunch of c# files. No...
Just a side remark: Tomcat uses ecj from eclipse (https://github.com/eclipse/eclipse.jdt.core) to compile JSPs on the fly. it's actually a reasonably small jar without any dependencies, and, as an added bonus,...
Razor support needs 2 obvious issues resolved: 1. Code generator: not documented, but somewhat straightforward, the codegen itself is a normal, runnable binary with some cli arguments. 2. Static assets...
@samhowes I, personally, would give your project a try - I already need a go helper tool and csproj patching to build my stuff, and your project takes it all...
Recently, I managed to trigger this very error on EKS. Upon investigation, a culprit of my issue was as following: 1. Trust policy for the intended pod role had wrong...
Actually, it seems we will stop supporting all pre-Lollipop devices this year. So, older than KitKat is no longer a problem. (Kind of funny how it is a struggle to...
One may easily argue that stack traces are the most import pieces of info error log messages carry. So any improvement over the present basic encoding will be welcome.
And yet, regions are critically important when dealing with S3. My s3 code is choke full of bucket region code queries. :-)
At this point of time, the right thing may be to add the region to each and every request, autopopulated from config. Long gone are the days when everything was...
Does this mean I can have a single client for all the regions and the client config region will only be used for defaults? No performance penalty, no hidden catches?