Angular NgZone Use Case

I was recently working on a project that loaded an iFrame into an Angular component's template file. The source of this iFrame is generated by a third party who uses Chase to validate payment information, and I was integrating the third party tool into our web app. One key aspect…

AWS CloudWatch Events

Issues with cron settings: Today I learned the hard way, and much later than the ideal case, that the AWS CloudWatch event cron settings does not support advanced cron configurations! I created an AWS Lambda with EFS and wanted to schedule it to run every other Monday. After trying different…

AJV Schema Validation

Apparently the properties property is required and is expected to be on the outmost section of the schema body. If you want to validate the query string of a request, it does not work do to: export const mySchema = { $id: 'path/to/schema/file/mySchema.json', query: { properties: { url: { type:…