Skip to content

Instantly share code, notes, and snippets.

View arkisoul's full-sized avatar
🌏
Digital Nomad

Arpit Jain arkisoul

🌏
Digital Nomad
  • Freelancer
  • Digital Nomad
View GitHub Profile
@arkisoul
arkisoul / WhatsAppGroupContactExport.js
Created May 18, 2024 17:59 — forked from mzahidriaz/WhatsAppGroupContactExport.js
WhatsApp Group Contacts Export: This will download the members of group with their phone number, whatsapp name and if contact is stored on phone
class ContactFinder {
#db;
#chatToFind;
#dbName = "model-storage";
#chatsCol = "chat";
#contactCol = "contact";
#groupCol = "participant";
constructor(chatGroupName) {
this.#chatToFind = chatGroupName;
@arkisoul
arkisoul / Communication Patterns in Angular.md
Created January 15, 2022 15:23 — forked from ReeMii/Communication Patterns in Angular.md
communications patterns in angular #angular

Angular follows a two-way data flow pattern, meaning you can send data up and down the component tree.

Everything in the Angular is a component.

Component basics

Interpolation

Interpolation is the way to inject some value into HTML. We are injecting title from the component class to the HTML.

Using Git to Manage a Live Web Site

Overview

As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.

Contents

.fullSundae{
height:500px;
position:static;
}
.fullSundae > .iceCreamScoop{
height:100px;
}
.glass{