How To Publish Your Website on Github

This post is specific to publishing your static or dynamic JavaScript-based website using GitHub deployment tools. As a fresher, when you write code in HTML and want to deploy and publish it for free, it can make your programming journey... Read more

Amazon Web Services (AWS)

AWS (Amazon Web Services) is a comprehensive, evolving cloud computing platform provided by Amazon. It includes a mixture of infrastructure-as-a-service (IaaS), platform-as-a-service (PaaS) and packaged software-as-a-service (SaaS) offerings. AWS offers tools such as compute power, database storage and content delivery... Read more

Puppeteer Zombie Process Solution

Mainly, I observed that the child process is not being killed or terminated by the parent process in the operating system, causing it to become a zombie process. So, obviously, the issue could be related to either the Puppeteer library... Read more

ImagePullBackOff in K8

The “ImagePullBackOff” status is an error condition that can occur in Kubernetes when a container runtime (such as Docker) is unable to pull the specified image for a Kubernetes pod. This status is typically seen in the output of the... Read more

SpaceX’s Starlink Satellites

Starlink is a satellite web heavenly body worked by SpaceX, giving satellite Web access inclusion to 40 nations. It likewise holds back nothing telephone administration after 2023. SpaceX began sending off Starlink satellites in 2019. Seeing a line dance of... Read more

Angular Framework

Angular is a framework for building client applications in html css and javascript or a language like ts that compile to js, ts is more common in angular community because angular itself work on ts if you have never been... Read more

Typescript

TypeScript is a free open source programming language developed and maintained by Microsoft, It is a strict syntactical superset of Javascript and it adds optional static type to the language. It is designed for the development of large applications and transpile to JavaScript. As it is... Read more

Jest Unit Test Framework

Configuration Jest is pre-configured with Nx workspace. Packages that are related with jest are: ●jest (^25.1.0) ●ts-jest (^25.0.0) ●jest-preset-angular (^8.1.3) ●@nrwl/jest (^9.2.0) ●@types/jest (24.0.9) In angular.json every application and library that is generated by Nx, has its architect section. Under... Read more

SpringBoot Introduction

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot... Read more

Firebase Hosting for Your Angular Application

Please refer to below steps to host your application: Modification in angular.json file: locate to your app and add (baseHref & deployUrl) parameters under your app-config: ({your_appname} > architect > build > options) E.g: myapp > architect > build >... Read more

Data Sharing in Angular Components

Parent to Child data sharing using input decorator Child to Parent data sharing via ViewChild Child to Parent Sharing Data via Output() and EventEmitter Unrelated Components Sharing Data with a ServiceWhen passing data between components that lack a direct connection,... Read more

Bubble Sort Algorithm Using JavaScript

Bubble Sort is the simple sorting algorithm for array that works by repeatedly swapping the adjacent elements if they are in the wrong order i.e Low to High. This algorithm is not preferable for large data sets as its worst-case time... Read more

Memory related issue while run ng serve

“FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed — process out of memoryThis error occurs when the memory allocated for the execution application is less than the required memory when run application.“ Memory issue can be avoid “512 mb By default the memory... Read more

Angular CLI Commands

For Creating angular application via CLI => ng new myApp Generate flat component with module and spec, ts, scss and html => ng g c home Generate module with routing file inside folder => ng g m home –routing Generate... Read more

Git Commands and Shortcuts

GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. This commands teaches you GitHub essentials commands for repositories, branches, commits, and pull requests. 1. git init For re-initialise... Read more