Skip to content

Instantly share code, notes, and snippets.

View jacobdjwilson's full-sized avatar

Jacob Wilson jacobdjwilson

View GitHub Profile
Objective: Create a comprehensive AI Usage Policy that is tailored to my organization's specific context, leveraging the latest governance frameworks, threat intelligence, and regulatory guidance. The policy should be a living document that moves beyond general principles to define a proactive, threat-informed, and auditable governance strategy.
Input Requirements:
Organization Profile: Briefly describe your organization, including your industry (e.g., Healthcare, Finance, Technology), primary business functions, and geographic locations where you operate.
AI Use Cases: Detail the main ways your organization uses or plans to use AI, including any specific tools or models (e.g., commercial LLMs, internal coding agents, customer-facing chatbots, RAG-based systems).
Regulatory & Compliance Landscape: List any specific regulations or standards your organization must comply with (e.g., GDPR, HIPAA, EU AI Act, CCPA, ISO 27001).
Policy Focus: Specify the areas you want to emphasize (e.g., Third-Party Risk Managemen
@jacobdjwilson
jacobdjwilson / disable_quickbooks_desktop_popups.vbs
Created March 18, 2025 19:20
This VBScript automatically detects your installed version of QuickBooks Desktop, locates the QBW.INI file, and modifies it to disable annoying popups (upgrade prompts, marketing messages, upsell notifications, and more).
Set objShell = CreateObject("WScript.Shell")
qbVersions = Array("2024", "2023", "2022", "2021", "2020")
iniPath = ""
' Loop through possible QuickBooks versions
For Each version In qbVersions
path = "C:\ProgramData\Intuit\QuickBooks " & version & "\QBW.INI"
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(path) Then
iniPath = path
@jacobdjwilson
jacobdjwilson / AI Usage Policy Framework
Created August 31, 2024 17:35
This prompt guides the creation of a thorough AI Usage Policy tailored to an organization's specific industry, business objectives, and operational context.
Objective: Create a detailed AI Usage Policy for an organization that includes General AI Principles, Approval Considerations, and standards for tooling or product. The policy should be tailored to the specific industry, line of business, and operational context of the organization, ensuring it is applicable across various sectors and locations. The policy should also integrate considerations for data governance, security, and ethical AI usage.
Input Requirements:
Organization Details: Industry/Sector (e.g., Healthcare, Finance, Technology, Education); Regulations/Standards (e.g., GDPR, HIPAA, PCI, CCPA; Yes/No); Business Objectives: Main Objectives (e.g., Risk Management, Ethical AI Use, Compliance, Efficiency); Challenges/Concerns (e.g., Data Privacy, Bias, Security Risks; Yes/No); Policy Scope: Primary Users/Stakeholders (e.g., IT Department, Data Scientists, General Employees); AI Tools/Models (e.g., ChatGPT, GPT-4, Custom LLMs; Yes/No); Approval and Governance: Existing Processes (e.g., Formal Approval P
@jacobdjwilson
jacobdjwilson / pkg_check.php
Created March 25, 2022 16:29 — forked from luckman212/pkg_check.php
pfSense auto-update check
<?php
require_once("pkg-utils.inc");
require_once("notices.inc");
require_once("util.inc");
$msg = null;
$pmsg = null;
$p = 0;
@jacobdjwilson
jacobdjwilson / pkg_check.php
Created March 25, 2022 16:26
pfSense auto-update check (pushover version)
<?php
require_once("pkg-utils.inc");
require_once("notices.inc");
require_once("util.inc");
$msg = null;
$pmsg = null;
$p = 0;