Bash: aws-sts

aws-sts takes the marginally-useful JSON output from the aws sts command and generates shell code that can be fed into eval.

Useful for those of use with MFA enabled on our accounts. In an MFA CLI environment, your ACCESS_KEY_ID

Running VisualVM on MacOS

As of writing, VisualVM 1.4.2 is the newest version of VVM available. This doesn’t currently run against Java 12, and will bomb with an error dialogue if you try.

If you’ve installed Java 12 on Mac, it will be the …

AWS Elastic Beanstalk – Pitfalls

It’s pretty easy to get lost in the immense product palette offered by Amazon Web Services.  There’s everything from bare-bones virtual machines (EC2) through fast database provisioning (RDS) to Machine Learning (AML).  For any given requirement, you’re probably going …

Java debug options

Given that I have to apply these options on a very regular basis, I’d know them by heart.  Nope.

-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000

Suspend can be set to “y” if you need to get the debugger attached before anything runs.  Tomcat allows this …