Back
25 June

AWS Lambda

What is AWS Lambda?​ AWS Lambda is a serverless compute service that lets you run code without provisioning or managing servers. You just upload your code, and Lambda handles the rest—scaling, patching, high availability, etc. Key Concepts Event-driven: Lambda runs your code in response to …

26 September

Azure: Storage Services

Azure Storage Services Common benefits: Security: Encryption at-rest and in-transit, managed identities and access control. Scalability: Auto-scaling to manage high volume of data and requests. Durability: Data is redundantly stored to ensure durability and resilience. Azure Blob Storage (CONTAINERS) Ideal for Large Unstructured Data  Use Cases: …

23 December

Angular Styles – Tips and Tricks

Angular way of binding object array in a Html Select / Combo box. <h1>Object Binding with Select / Combobox</h1>Select value :<select (change)=”handleChange($event.target.selectedIndex)”  name=”cmbTipoTexto” class=”form-control form-control-sm col-sm-7″ id=”cmbTipoTexto” >  <option *ngFor=”let item of textTypes” [value]=”item.id”>    {{ item.displayValue }}  </option></select><br /><br /><br /><b>Selected Object:</b><br />{{ selectedObject | json }}

23 December

Typescript – Tips and Tricks

Enums to Object Array   enum Colors { White, Black, Red, Blue, Green } ————————————————————————————————-     ColorsList: any[];   ngAfterViewInit() {     this.enumsToObjectList();   }     enumsToObjectList() {     let keys = Object.keys(Colors);  // extract enum key & values     let filteredKeys = keys.filter(k => !isNaN(+k));  // filter only non numeric values  // compose or transform object array     this.ColorsList = filteredKeys.map((k) => { return { key: k, value: Colors[+k] } });   }

18 June

Introduction to ArchiMate Modeling Language

ArchiMate is a popular modeling language specifically designed for enterprise architecture. It provides a comprehensive framework for describing, analyzing, and visualizing different aspects of an organization’s structure, processes, systems, and strategies. The primary goal of ArchiMate is to enable clear communication and understanding of complex …