Skip to content

Instantly share code, notes, and snippets.

View dipanjanpanja6's full-sized avatar
๐ŸŒŽ
Working from anywhere

Dipanjan Panja dipanjanpanja6

๐ŸŒŽ
Working from anywhere
View GitHub Profile
@origin1tech
origin1tech / uid.ts
Last active January 28, 2023 13:13
JavaScript Firebase UID Generation
export interface IUID {
generate(): string;
timestamp(uid: string, asDate?: boolean): number | Date;
}
/**
* SEE --> https://gist.github.com/mikelehen/3596a30bd69384624c11
*
@umanghome
umanghome / publish.yml
Last active June 20, 2025 13:27
GitHub Action: Generate a build and push to another branch
# .github/workflows/publish.yml
name: Generate a build and push to another branch
on:
push:
branches:
- master # Remove this line if your primary branch is "main"
- main # Remove this line if your primary branch is "master"
jobs: