5 Constant Lists That Give Context to your Integers and Strings
Enum i a great feature of modern software development. Here you will find five lists that lives in Enums (or Enum-like) that add lots of context for your code. It will look better and cleaner.
Validate all the things: improve your security with input validation!
If there's one habit that can make software more secure, it's probably input validation. Here's how to apply OWASP Proactive Control C5 (Validate All Inputs) to your code.
TypeScript Utility Types: The 6 Most Useful
Write better typescript code by using typescript utility types. Record, Partial, Required, Omit, Pick, Exclude utilities.
Query parameter data types and performance
Recently, I could help solve a “mysterious” performance problem for a customer. The problem turned out to be a badly chosen query parameter type, which led to poor query performance. After working on this customer’s case, I realized that the meaning of the data type of a query parameter is not universally understood, which is why I decided to write this article.
Building Serverless Applications That Scale The Perfect Amount
Great reasoning about how to think about the architecture that scale on Serverless, thinking about the load and costs.
Run a PHP application on AWS Fargate
An example for a pipeline to configure and deploy a PHP application on AWS Fargate.
6 Signs Your Daily Standups Aren’t Working
Architecture Decision Records help you, your team, and future teams
Decisions are made everyday and often the number of daily decisions make us forget older ones. Keeping a record of the decisions is a great tool to revisit what was done and also be more confident that a change can be made, when a previous statement become obsolete somehow. ADRs are a great tool for a mature software.
Waiting for PostgreSQL 15 – Add support for MERGE SQL command
MERGE SQL commands is able to perform INSERT/UPDATE/DELETE based on a base query and some conditions. This is very useful for some business logic that can be applied directly on the database data.