About Sweepbright SweepBright transforms each step of the real estate transaction process into a fully digital journey. Its rich stack of features possible by an open architecture, empowers real estate agencies of any kind to become far more efficient and deliver exceptional customer experiences. It has been designed from the onset with a mobile first […]
What is a Well-Architected Review? https://youtu.be/afFxViWjNcY A well-architected-review is based on an AWS whitepaper from AWS that describes the ideal way of running workloads in AWS, all these findings are combined in the Well-Architected Framework. This framework consists of six pillars: operational excellence, security, reliability, performance efficiency, cost optimization, and sustainability. It’s a way of […]
AWS Users and Roles can have their permissions limited by a Permission Boundary. The effective permissions are at the intersection of the user or role policy and the permission boundary (which is also defined as an IAM policy). One of the use-cases of using Permission Boundaries is to restrict external access of your AWS users […]
How Cake uses Kinesis to deliver real-time insights. Cake brings together all your existing bank accounts and transactions. The app analyses your financial data and habits, to make your life better. Cake makes your bank accounts pay off again, by sharing its profits with you. It’s the app that rewrites the rules. To make sure […]
JWTs (JSON Web Tokens) provide an easy and scalable way to perform user access control. JWTs are often used in microservices. As shown in the diagram, JWTs are signed by an authentication server, stored by the user, and can be validated by one or more application servers when a user makes an API call. The […]
Data partitioning helps to speed up your Amazon Athena queries, and also reduces your cost, as you need to query less data. Partitioning data means that we split the data up into related groups of data. Possible partitions could be date (time-based), zipcode, different types (contexts), etc. When querying the data, the query is constrained […]
IN4IT offers 24/7 support contracts to its customers. It’s very important for us that our customers can easily and reliably reach IN4IT when they need assistance. Instead of capturing the calls to a support engineer, we want our customers to be able to reach the correct engineer directly. We are not a telecommunications company, so […]
Cake brings together all your existing bank accounts and transactions. It analyses your financial data and habits, to make your life better. Cake makes your bank accounts pay off again, by sharing its profits with you. It’s the app that rewrites the rules. To make sure you will always get your piece. Intro IN4IT has […]
Even 5-10 year old java applications can be containerized and migrated to the cloud Fargate can run Application Servers, like JBoss (now Wildfly) You can run Java Apps on those application servers When migrating, the .war files often need changes / library updates, but that shouldn’t stop you from migrating the app If you don’t […]
1. Develop Cloud Native Applications The prerequisite of being able to deploy through a fully automated pipeline is to have cloud native applications. Those applications are stateless: they don’t keep state within the application, but use services to keep state (Cache, RDBMS, NoSQL). Stateless apps can easily be switched out during a deployment. You can […]