This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html lang="en"><head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Vector Studio - SVG Editor & Tracer</title> | |
| <!-- Tailwind CSS --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <!-- Alpine.js --> | |
| <script defer="" src="https://cdn.jsdelivr.net/npm/alpinejs@3.14.1/dist/cdn.min.js"></script> | |
| <!-- Google Fonts & Icons --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PBIX Converter Utility | |
| # Converts PBIX files by modifying visual types and removing SecurityBindings | |
| param( | |
| [Parameter(Mandatory=$true, Position=0)] | |
| [string]$InputFile, | |
| [Parameter(Mandatory=$false, Position=1)] | |
| [string]$OutputFile | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { topNPareto, topNPercentile } from './statsUtil.js'; | |
| const salesData = [ | |
| { product: 'A', revenue: 100 }, | |
| { product: 'B', revenue: 50 }, | |
| { product: 'C', revenue: 30 }, | |
| { product: 'D', revenue: 20 } | |
| ]; | |
| // Top 80% Pareto (A + B = 150/200 = 75%, but we include until >=80%; here A+B=75%, so add C for 90%) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while read -r url; do open "$url"; done < /tmp/urls.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useRef, useEffect, useState } from 'react'; | |
| import * as faceapi from '@vladmandic/face-api'; | |
| function App() { | |
| const videoRef = useRef(null); | |
| const canvasRef = useRef(null); | |
| const [photo, setPhoto] = useState(null); | |
| const [validation, setValidation] = useState({}); | |
| const [modelsLoaded, setModelsLoaded] = useState(false); | |
| const [modelsLoading, setModelsLoading] = useState(true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // background.js (robust counting + diagnostics) | |
| chrome.action.onClicked.addListener(async () => { | |
| console.log("Extension clicked β starting PR count..."); | |
| const tabs = await chrome.tabs.query({ url: "https://github.com/*" }); | |
| if (!tabs.length) { | |
| console.warn("No matching GitHub tabs open."); | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ββββββββββββββββββββββββββββββββββββββ | |
| β Teams Email Bridge [?] [Settings]β | |
| βββββββββββββββββββββββββββββββββββββββ€ | |
| β π§ Quick Compose β | |
| β π Templates β | |
| β π₯ Recent Contacts β | |
| β π Sent History β | |
| βββββββββββββββββββββββββββββββββββββββ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir -p chapter1/1.{1,2,3,4,5,6} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "module", | |
| "dependencies": { | |
| "@coinpaprika/api-nodejs-client": "^2.0.0", | |
| "@modelcontextprotocol/sdk": "^1.7.0", | |
| "ws": "^8.18.1", | |
| "zod": "^3.24.2" | |
| } | |
| } |
NewerOlder