-
Building Software: From Scratch or Bootstrap? Making the Right Choice for Your Project
Introduction When embarking on a new software development project, a crucial decision lies at the very foundation of your endeavor: Should you start building from scratch, crafting every line of code to fit your unique vision, or leverage a bootstrap app that provides a head start with essential functionalities like user/roles/permission management and a solid…
-
Key Considerations for Solution Architects in Launching a New Software Application
As a Solution Architect, starting a new software application involves a comprehensive approach to ensure the success of the project. Here are key focuses: Remember, effective communication with stakeholders and the development team is crucial at every step. Regularly revisit and refine the architecture as the project progresses and requirements evolve.
-
How to work with symbolic links inside docker container?
lets suppose we have a host directory /Users/{username}/app having symlink /Users/{username}/app/lib pointing to original/source directory /Users/{username}/lib /Users/{username}/app is mounted insider docker as /var/www, so there is symlink /var/www/lib inside docker container pointing to /Users/{username}/lib, as path /Users/{username}/lib don’t exists in docker container symlink will not work insider docker container. In order to work symbolic links…
-
AWS Guide :: Part 1 :: IAM Users/Groups/Permissions
IAM: Users & Groups IAM: Permissions IAM Policies Structure In the provided example, the policy allows the GetObject and PutObject actions for objects in an S3 bucket named “example-bucket” (arn:aws:s3:::example-bucket/*). However, it denies all S3 actions (s3:*) for a specific file named “sensitive-file.txt” (arn:aws:s3:::example-bucket/sensitive-file.txt). IAM Policies inheritance In IAM (Identity and Access Management) in AWS,…