Chris Baptiste's Blog


A Venture Into Software Development

Angular: Directives, Expressions, and Controllers

What is a Directive?


Angular Modules

What is a module?


PHP ( Hypertext Preprocessor) and SSI ( Server Side Includes)

Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclusively for theweb.


Introduction To Angular

Let’s talk about Angular.

For some inspiration, what are some examples of websites and applications built with Angular?


React Hooks

Prior to React 16.8, the only way for components to have and use state was to make them class components. However, this is currently no longer the case thanks to the addition of Hooks to React. The greatest thing about the addition of React Hooks is the fact that they are completely opt in, 100% backwards compatible, and available immediately. This means that they can be implemented into any React code without breaking changes. Furthermore, Hooks provide a more direct API to concepts most React developers already know (props, state, context, and lifecycle) rather than replace their existing knowledge. Let’s take a look at an example of React Hooks in action.