AWS Infrastructure at minimal dollars

I made it so gregfina.com images are served from an S3 bucket and cached by CloudFront using AWS.

Images are sync’d every 5 minutes with an S3 bucket. The S3 bucket runs a public website. There is an htaccess on the web server hosting gregfina.com that redirects all JPGs to the CloudFront location.

Not that this was required, but it was good practice for my AWS Developer Certification – Associate.

Before AWS on would have to sign large expensive contracts to get a global caching vendor with a minimum monthly commitment. Now a few clicks, and it happens.

Small Code Changes

This Blog skyliner does a good job talking about a need for software development to move from monolithic code to smaller changes which are pushed to production more frequently.  

It still seems no matter what methodology of  software cycle development lifecycle followed it includes some level of definition, development, QA, UAT, and Production Release.   Somewhere in the process there is a merge of multiple items into a release.   This still means your release to production could be monotholic. Even Google and Facebook which revolutionized the concept of Continous Integration (CI) and release fixes daily,  only release major updates once a week.    

Reading the blog left me with the  question is the future of CI, to release single items to production, validate over a defined period of time and push the next release?   This entire process would happen automatically based on a queue(FIFO) system.  

That would imply that the if you run code across a SaaS platform that platform would support a Facebook like update where code would be pushed and updated while the existing code continues to handle the requests and the users wouldn’t see discrepancies, some validation would happen, code would activate and a timer would start on the next release.

Is this really a reality?  

Spanning Tree

How does any switch get sold in the last 10 years which doesn’t implement at least a simplified spanning tree?   We had to implement a distributed spanning tree algorithm for OMSCS CS6250, two assignment ago which was a few hundred lines of code.    If a switch can see itself over a port, can’t it just disable both ports?    This would prevent users causing issues, unproductivity and a nightmare of network troubleshooting.  

That code should exist in the $69 desktop switch and up, no excuses not to add a few hundred lines of code.