Skip to content

Instantly share code, notes, and snippets.

View saravanapriyanm's full-sized avatar
🐞
Bugs... Bugs everywhere.

Saravanapriyan saravanapriyanm

🐞
Bugs... Bugs everywhere.
View GitHub Profile
const breadcrumbs = [{
filterKey: 'Base',
filterValue: 'Base',
nextKey: 'Region'
}];
function addLevel({ nextKey, filterKey, filterValue }) {
const existing = breadcrumbs.find((breadcrumb) => breadcrumb.filterKey === filterKey);
if (existing) {
existing.filterValue = filterValue;
@saravanapriyanm
saravanapriyanm / git-workflow.md
Created November 24, 2022 05:41
GIT Workflow

Git Workflow

Commit Title Prefixes ➕

For bug fixes

fix: <bug fix description>

For new features

$match: { $expr: {$eq: [{$week: "$Document.data.DATE"}, 27]} }

@saravanapriyanm
saravanapriyanm / embedded-file-viewer.md
Created February 20, 2024 16:15 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@saravanapriyanm
saravanapriyanm / PhotoOrganizer.ps1
Last active January 19, 2025 07:50 — forked from jongio/PhotoOrganizer.ps1
A PowerShell script to organize photos by date taken
Param(
[string]$source,
[string]$dest,
[string]$format = "yyyy\/MM-MMM"
)
$shell = New-Object -ComObject Shell.Application
function Get-File-Date {
[CmdletBinding()]