February 2024

SharePoint Online – Pros and Cons of using Document ID

Document ID assigns every document in a site collection a permanent identifier and a stable redirect link that survives moves and renames — genuinely useful, but with one real limitation worth understanding before relying on it: that persistence only holds within a single site collection, not across them. This post covers how it actually works, […]

SharePoint Online – Pros and Cons of using Document ID Read More »

Exploring SharePoint REST API Endpoints

The SharePoint REST API is organized entirely around one root path — {site-url}/_api/ — with everything else (lists, files, users, search) hanging off web, site, or a dedicated service beneath it. Here’s a reference list of the endpoints you’ll actually reach for, plus a working example calling one from plain JavaScript. In this post: Site

Exploring SharePoint REST API Endpoints Read More »

Custom Tabs: Hillbilly Tabs in Modern SharePoint

Worth a direct correction before anything else: “Hillbilly Tabs” isn’t a generic jQuery/Script Editor technique — it’s the name of one specific, real, open-source SPFx web part built by Mark Rackley, and describing it as DOM manipulation via a Script Editor web part describes a different, unrelated (and now largely non-functional) approach entirely. This post

Custom Tabs: Hillbilly Tabs in Modern SharePoint Read More »

PowerShell: SharePoint Group Operations

SharePoint Online Management Shell has its own dedicated cmdlet family for site-collection-level group operations — distinct from the PnP PowerShell cmdlets covered elsewhere on this site for adding users to an existing group. This post covers the SPO Management Shell versions specifically: creating, modifying, and removing groups, plus a couple of real gotchas that don’t

PowerShell: SharePoint Group Operations Read More »

Extract SharePoint Permission with PowerShell

Worth a direct correction before anything else: a script that connects with Connect-SPOService and then reads $site.RootWeb and $web.RoleAssignments was never going to work, independent of the auth method — Connect-SPOService connects to the SharePoint Online Management Shell’s tenant-admin cmdlets, and Get-SPOSite returns a simple property object with no RootWeb on it, not a live

Extract SharePoint Permission with PowerShell Read More »

Options on Connecting SharePoint online modules in PowerShell

Worth a direct correction before anything else: username/password authentication to SharePoint Online — the pattern most older connection examples are built around — stopped working entirely as of May 1, 2026, when Microsoft fully retired legacy (IDCRL) authentication with no re-enable option. A second, separate method — app-only authentication via a client secret — also

Options on Connecting SharePoint online modules in PowerShell Read More »

Unveiling JavaScript: Exploring Multiple Options to Format Numbers as Currency

JavaScript has several built-in and third-party ways to format a number as currency. Here are the ones worth knowing, and when to reach for each. 1. toLocaleString: built into JavaScript, formats a number according to the given locale: 2. Intl.NumberFormat: part of the ECMAScript Internationalization API, gives more control than toLocaleString and is the modern

Unveiling JavaScript: Exploring Multiple Options to Format Numbers as Currency Read More »

CSS Demystified: A Quick Glance Cheat Sheet!

A working reference of the CSS properties and techniques that come up constantly when building responsive layouts — viewport setup, media queries, flexbox and grid, positioning, transforms, and the modern tools (clamp, custom properties, container queries) that are now widely supported enough to actually rely on rather than treat as bleeding-edge. In this post: Responsive

CSS Demystified: A Quick Glance Cheat Sheet! Read More »