Skip to content
  • AI
  • Github

Scratch that

Bite sized bits

  • AI
  • Github
  • ⤫

Posts Published by admindeep

Quick sort – JavaScript

Quick sort is a popular sorting algorithm that has an average case time complexity of O(n log n) and is often used as a faster alternative to other sorting algorithms such as bubble sort or insertion sort. It works by selecting a pivot element from the array and partitioning the other elements into two sub-arrays,

Posted by Posted on
0

Understanding JavaScript Generator Methods: A Comprehensive Guide with Examples

JavaScript generators are functions that can be paused and resumed multiple times, allowing you to execute code asynchronously and control the flow of execution. In addition to the yield keyword, generators also have access to several methods that allow you to control their execution and communication with the calling code. In this article, we’ll take

Posted by Posted on
0

Understanding JavaScript Generators: A Comprehensive Guide with Examples

JavaScript generators are functions that can be paused and resumed multiple times, allowing you to execute code asynchronously and control the flow of execution. In this article, we’ll take a closer look at generators and how they work, and we’ll provide some examples to demonstrate their usage. What are JavaScript Generators? JavaScript generators are functions

Posted by Posted on
0

Stakeholder Engagement – Project Management

An Overview of the Stakeholder Engagement Matrix Model In project management, stakeholder engagement is the process of actively involving stakeholders in the planning, execution, and evaluation of a project. Stakeholders are individuals or groups who have a vested interest in the project, and engaging with them is important for the success of the project. In

Posted by Posted on
0

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

Clean Architecture: A Craftsman’s Guide to Software Structure and Design

“Clean Architecture: A Craftsman’s Guide to Software Structure and Design” is a book written by Robert C. Martin, also known as “Uncle Bob,” that provides a guide to designing software systems in a way that is maintainable, flexible, and scalable. The book introduces the concept of “clean architecture,” which is a design philosophy that separates

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

Posts pagination

Page 1 … Page 3 Page 4 Page 5 … Page 8
  • Algorithms
  • Front-end
  • Javascript
  • Philosophy
  • Project Management
  • Psychology
  • Science
  • Technology
  • Uncategorized
Copyright © 2025 - Scratch that // By - Deepak Anandrao