Skip to content

Instantly share code, notes, and snippets.

View jrdtechnologies's full-sized avatar

Jason R. Doyle jrdtechnologies

View GitHub Profile
@jrdtechnologies
jrdtechnologies / DP-900.md
Created June 11, 2025 03:50 — forked from j-thepac/DP-900.md
Material for Dp-900 Exam

DP 900

Azure Data Fundamentals: Explore core data concepts

  • Type: structured, semi-structured, or unstructured.
  • Data stores : File stores ,Databases
  • file Formats :
    • Delimited text files
    • JavaScript Object Notation (JSON)
    • Extensible Markup Language (XML)
  • Optimized File Format
@jrdtechnologies
jrdtechnologies / background.js
Created February 9, 2023 08:05 — forked from danharper/background.js
Bare minimum Chrome extension to inject a JS file into the given page when you click on the browser action icon. The script then inserts a new div into the DOM.
// this is the background code...
// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
// for the current tab, inject the "inject.js" file & execute it
chrome.tabs.executeScript(tab.ib, {
file: 'inject.js'
});
});
param (
[string]$service = $(throw "-service is required.")
)
write-output 'AutoStopStartService()-> START, svc is $service'