Skip to content
  • AI
  • Github

Scratch that

Bite sized bits

  • AI
  • Github
  • ⤫

Browsing Category Uncategorized

Communication Model – Project Management

Effective Communication in Project Management: An Overview of the PMI’s Communication Model Effective communication is essential for the success of any project, and the Project Management Institute’s (PMI) communication model is a framework that helps project managers understand and facilitate this process. In this article, we’ll take a closer look at the PMI’s communication model

Posted by Posted on
0

JavaScript immutability

In JavaScript, immutability refers to the idea that once an object or value is created, it cannot be changed. This can be a useful concept in a number of different contexts, as it allows you to create values that are predictable and easy to understand. There are a few different ways to achieve immutability in

Posted by Posted on
0

Object oriented programming – Inheritance vs. Composition

In object-oriented programming, inheritance and composition are two different approaches to reusing code and creating relationships between objects. Inheritance is a mechanism that allows one object to inherit the properties and behavior of another object.In JavaScript, this is achieved using the extends keyword. For example: In this example, the Dog class extends the Animal class

Posted by Posted on
0

Javascript Pure Functions

In JavaScript, a pure function is a function that has the following characteristics: It always returns the same result for a given set of inputs. It does not have any side effects, meaning it does not modify any external state or variables. It does not depend on any external state or variables. Pure functions are

Posted by Posted on
0

Primer CSS

GitHub’s Primer CSS is a popular open-source CSS library that was developed by the team at GitHub. It is designed to provide a set of consistent styles that can be used across a wide range of projects, making it easier for developers to create consistent, visually appealing designs. One of the key features of Primer

Posted by Posted on
0

Rxjs Basics

RxJS is a popular library for reactive programming in JavaScript. It provides a wide range of operators and utilities for working with streams of data, allowing developers to easily manipulate and transform data in real time. Here are some basic examples of how to use RxJS to create and manipulate streams of data: Creating observables

Posted by Posted on
0

React Render Prop

In React, a render prop is a function prop that a component uses to know what to render. It allows a component to share its internal state with a child component, without exposing its implementation details. Here is an example of a component using a render prop: Copy code import * as React from “react”;

Posted by Posted on
0

TypeScript is 4.9.0 What’s new?

Introduction TypeScript is a popular programming language that is a superset of JavaScript. It adds optional static typing and other features to JavaScript, allowing developers to write type-safe code and catch errors at compile time. The latest version of TypeScript is 4.9.0, which includes several new features and improvements. New Features One of the major

Posted by Posted on
0
  • Algorithms
  • Front-end
  • Javascript
  • Philosophy
  • Project Management
  • Psychology
  • Science
  • Technology
  • Uncategorized
Copyright © 2025 - Scratch that // By - Deepak Anandrao