KCKrishna Chaitanya Teralainkcterala.hashnode.dev·May 5, 2024 · 1 min readDeploy your app on AWS EC2 with NGINX and SSLHi, Recently AWS is charging for static IP address unless used via EC2 instance, so you can't deploy via ELB (if you are poor that is). Do the usual stuff, spin up an EC2 instance (allow http and https) with ubuntu as OS and copy your source files. I...00
KCKrishna Chaitanya Teralainkcterala.hashnode.dev·Jan 11, 2024 · 1 min readGotchas in JavaThese are some pitfalls that took me some time to unravel. I used to think .collect(Collectors.toList()) and .toList() are same and interchangeable. But first one creates a mutable list and second one creates a immutable list List<Integer>...00
KCKrishna Chaitanya Teralainkcterala.hashnode.dev·Jan 5, 2024 · 2 min readSpring Boot DockerSo I am learning docker and I gotta say, it's awesome. Spinning up the application you want with a single command is so convenient. This blog is for me to reference but I hope it helps you too. Image that runs in a container - that's what docker is. ...00