Architecting a feature does not come easy. Unless you are working on a project by yourself you will need to organize your communication well to have all parts of the organization work together to achieve your goal. To be honest with you, I'm not that great at communication. I had to learn and overcome some … Continue reading What I have learnt from architecting a feature – Communication
Category: Uncategorized
What I have learnt from architecting a feature – Scoping and Planning
Sometime between February and May of 2022, I got to participate in a feature architecture and development. This was the first time when I got to propose a structure and a solution for a given problem domain that involved integration with the legacy system as well as with Salesforce. That was a stressful but important … Continue reading What I have learnt from architecting a feature – Scoping and Planning
OOP in JavaScript
In JavaScript, objects, it their simplest form represent collections of keys paired with values. JS also offers a lot of OOP features that we can use to structure and hone our code even more. Here is a little example to being with: var computer = { name: "Intel", cpuCores: 4, webCam: true }; There are … Continue reading OOP in JavaScript
HTML Elements
HTML is a language which structures the layout of the page. This layout is made up from different elements. If you are a little familiar with HTML, elements like p, body, img, table, and many others are very recognizable. In HTML there are two types of elements: replaced and nonreplaced. Replaced elements are the ones … Continue reading HTML Elements
