Skip to content

Instantly share code, notes, and snippets.

View cecilkootz's full-sized avatar

Matt cecilkootz

  • FL
View GitHub Profile
@aashari
aashari / 00 - Cursor AI Prompting Rules.md
Last active March 15, 2026 23:03
Cursor AI Prompting Rules - This gist provides structured prompting rules for optimizing Cursor AI interactions. It includes three key files to streamline AI behavior for different tasks.

The Autonomous Agent Prompting Framework

This repository contains a disciplined, evidence-first prompting framework designed to elevate an Agentic AI from a simple command executor to an Autonomous Principal Engineer.

The philosophy is simple: Autonomy through discipline. Trust through verification.

This framework is not just a collection of prompts; it is a complete operational system for managing AI agents. It enforces a rigorous workflow of reconnaissance, planning, safe execution, and self-improvement, ensuring every action the agent takes is deliberate, verifiable, and aligned with senior engineering best practices.

I also have Claude Code prompting for your reference: https://gist.github.com/aashari/1c38e8c7766b5ba81c3a0d4d124a2f58

@andreas-it-dev
andreas-it-dev / NavBar.vue
Last active October 26, 2020 21:21
Nav bar for vuetify with theme switch
<template>
<v-app-bar app color="primary" dense :dark="isDark">
<v-app-bar-nav-icon></v-app-bar-nav-icon>
<div class="d-flex align-center">
<v-toolbar-title>Alpha IT</v-toolbar-title>
</div>
<v-spacer></v-spacer>
<v-menu>
@brammitch
brammitch / arch_install.sh
Last active April 3, 2024 16:30
Install Arch Linux on Dell XPS 13 (9360) / Dual Boot with Windows 10
# Resources
https://wiki.archlinux.org/index.php/installation_guide
http://www.bhartiya.io/always-updated-arch-linux-tutorial/30411
https://wiki.archlinux.org/index.php/Dell_XPS_13_(9360)
http://www.rodsbooks.com/gdisk/cgdisk-walkthrough.html
# TO-DO
# Set up periodic TRIM for SSD
# 1 Pre-installation
@kylemanna
kylemanna / arch-linux-install.md
Last active February 19, 2026 17:23 — forked from binaerbaum/arch-linux-install
Minimal instructions for installing arch linux on an UEFI NVMe system with full system encryption using dm-crypt and luks
@chrisbodhi
chrisbodhi / deep_work.md
Last active June 8, 2024 11:52
A summary of the tips & tricks in Cal Newport's "Deep Work"

Deep Work

Rules for Focused Success in a Distracted World

Cal Newport, 2016 [purchase it at half-price books]

Part I: The Idea

  • Deep Work is valuable
  • Deep Work is rare
  • Deep Work is meaningful
@alirobe
alirobe / reclaimWindows10.ps1
Last active March 14, 2026 17:05
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
###
###
### UPDATE: For Win 11, I recommend using this tool in place of this script:
### https://christitus.com/windows-tool/
### https://github.com/ChrisTitusTech/winutil
### https://www.youtube.com/watch?v=6UQZ5oQg8XA
### iwr -useb https://christitus.com/win | iex
###
### OR take a look at
### https://github.com/HotCakeX/Harden-Windows-Security
@snobear
snobear / clone.py
Last active October 17, 2023 06:39
Clone VM from template with pyVmomi
#!/usr/bin/env python
"""
NOTE:
This gist has been moved to EZmomi:
https://github.com/snobear/ezmomi
Give it a star or fork. Contributions are more than welcome. I'm hoping it will become an easy cli tool for
common VMware tasks.
from time import time
import math
class AccrualFailureDetector(object):
""" Python implementation of 'The Phi Accrual Failure Detector'
by Hayashibara et al """
max_sample_size = 1000
threshold = 3 # 1 = 10% error rate, 2 = 1%, 3 = 0.1%, etc