Run cmd.exe with Admin permissions and enter commands for your system. Note: the keys is for Professional editions of Windows.
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms.digiboy.ir
slmgr /ato
name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| # Copyright: (c) 2020, Jordan Borean (@jborean93) <jborean93@gmail.com> | |
| # MIT License (see LICENSE or https://opensource.org/licenses/MIT) | |
| Function Invoke-WithImpersonation { | |
| <# | |
| .SYNOPSIS | |
| Invoke a scriptblock as another user. | |
| .DESCRIPTION | |
| Invoke a scriptblock and run it in the context of another user as supplied by -Credential. |
| // Stagehand + Browserbase: an AI agent that researches SEC filings on its own. | |
| // | |
| // We give Stagehand a plain-English task, point it at SEC EDGAR, and let its | |
| // `agent` autonomously navigate, read 10-Q filings, and build a comparison | |
| // table — no selectors, no scraping code, no per-site logic. | |
| import "dotenv/config"; | |
| import { exec } from "node:child_process"; | |
| import { Stagehand } from "@browserbasehq/stagehand"; |
| #!/bin/bash | |
| # Corsair Xeneon Edge Color Calibration Script | |
| # Based on Tweakers.net review findings: | |
| # https://tweakers.net/reviews/13662/corsair-xeneon-edge-tof-idee-maar-dramatisch-uitgevoerd.html | |
| # | |
| # The factory settings prioritize brightness (365 cd/m²) over color accuracy. | |
| # This script applies calibrated settings for better color reproduction (~255 cd/m²). | |
| set -e |