Pinnednatasha selvidge·Jan 20, 2021MVCModel–View–Controller (MVC) is a software pattern for implementing user interfaces. It divides a given software application into three…
Pinnednatasha selvidge·Mar 23, 2021How to Fetch an APIIn this post, I will teach you how to render a list of items from an API endpoint. We will go over how to make an HTTP request using Fetch…
Pinnednatasha selvidge·Dec 6, 2020Application Programming InterfaceSo what is API? No, it’s not your favorite beverage at your local bar. API stands for Application Programming Interface. API’s essentially…
natasha selvidge·Feb 6, 2023Understanding Craft CMS: The Future of Website DevelopmentCraft CMS is a content management system that has been gaining popularity in recent years due to its ease of use, flexibility, and…
natasha selvidge·Sep 10, 2021The Difference Between Library and FrameworkLet’s start with the biggest similarity between these two concepts. Both frameworks and libraries are reusable codes written by one or more…
natasha selvidge·Sep 3, 2021Version Control with GitBefore talking about Git, let’s define what is version control. It is a system that records changes to a file or set of files over time so…
natasha selvidge·Aug 30, 2021ORMORM stands for Object-Relational Mapping and it is a programming technique that abstracts your code from the database behind it. When we…
natasha selvidge·Aug 23, 2021JavaScript Console MethodsThe Console object provides access to the browser’s debugging console. While working with JavaScript, all of us have used the console.log()…
natasha selvidge·Aug 11, 2021Principles of OOPObject-oriented programming is one of the most common ways of writing code and, one of the best-known paradigms out there. The moment you…
natasha selvidge·Aug 8, 2021Introduction to ReactReact is an open-source, frontend Javascript library for building user Interfaces or UI components. It is maintained by Facebook. React can…