The technology stack that was inherited from the prior tech team at Research Blocks came with some outdated methodologies. One of those areas was in the deployment of React applicationa…Continue readingReact Build Settings on Amplify
Lesson learned — if you are using EFS on production systems you want to be using provisioned throughput mode. But, before we get into that, let’s go over the details…Continue readingAWS LEMP Stacks and EFS Issues
A recent Seeking Alpha article proposes the theory that Alibaba could threaten Amazon’s AWS cloud services. Amazon has been my best investment by far. The article has some great information…Continue readingAlibaba An AWS Threat? Not Quite
Get Your Certificate Signing Request (CSR) From Amazon Linux: cd /etc/ssl openssl req -new -key vim <domain>.<tld>.key -out <domain>.<tld>.csr Buy Your Certificate From Name.com purchase a cert for either a…Continue readingInstall A Name.com SSL Cert On Amazon Linux
User Management SSH Login With Keys From Your Computer Make sure you have created a private/public key pair. There are tons of articles online about how to use openSSH (for…Continue readingSome Linux User and SSH Tips and Tricks
Millions of websites across the Internet were automatically updated to WordPress 4.8.2 yesterday. Thousands of those sites have key components that are no longer working. Many of those…Continue readingWordPress 4.8.2 Data Query Woes
This is something I often come across in code. Just came across it in our MySLP project today , in fact. SELECT count(id) FROM my_table While the performance impact of…Continue readingPerformance Benefits Of COUNT(*) In SQL