Skip to content

Instantly share code, notes, and snippets.

View christopherokonkwo's full-sized avatar
💭
Life is most beautiful when you're working in your passion

Christopher C. Okonkwo christopherokonkwo

💭
Life is most beautiful when you're working in your passion
View GitHub Profile
@glaucia86
glaucia86 / 04-release-readiness-pass.md
Created March 18, 2026 18:32
04-release-readiness-pass/SKILL.md

name: release-readiness-pass description: Perform a final release-readiness review to determine whether the project is ready for merge, handoff, staging, or production, then generate RELEASE_READINESS.md. version: 1.0.0 phase: release-readiness requires:

  • QUESTIONS.md
  • IMPLEMENTATION_NOTES.md
  • VERIFICATION.md produces: RELEASE_READINESS.md
@glaucia86
glaucia86 / 03-implementation-verification-pass.md
Created March 18, 2026 18:32
03-implementation-verification-pass/SKILL.md

name: implementation-verification-pass description: Perform a post-implementation verification pass to validate that approved changes were implemented correctly, consistently, and safely, then generate VERIFICATION.md. version: 1.0.0 phase: verification requires:

  • QUESTIONS.md
  • IMPLEMENTATION_NOTES.md produces: VERIFICATION.md next: release-readiness-pass
@glaucia86
glaucia86 / 02-questions-md-resolution-implementation.md
Last active March 20, 2026 17:35
02-questions-md-resolution-implementation
name questions-md-resolution-implementation
description Read an answered QUESTIONS.md file, convert clarified decisions into a scoped implementation plan, apply approved changes safely, and generate IMPLEMENTATION_NOTES.md.
version 1.0.0
phase implementation
requires QUESTIONS.md
produces IMPLEMENTATION_NOTES.md
next implementation-verification-pass
@glaucia86
glaucia86 / codebase-review-question-audit
Last active March 21, 2026 18:33
01-codebase-review-question-audit/SKILL.md
---
name: codebase-review-question-audit
description: Perform a deep structured review of the codebase, identify ambiguities, risks, and missing decisions, and generate a QUESTIONS.md file to clarify architecture, behavior, security, performance, and refactoring concerns before implementation.
version: 1.0.0
phase: discovery
produces: QUESTIONS.md
next: questions-md-resolution-implementation
---
# Codebase Review Question Audit
@ahmeti
ahmeti / command.sh
Created February 25, 2023 02:05
Install Nginx Latest Stable 1.22 Version on Ubuntu 22.04
sudo apt install curl gnupg2 ca-certificates lsb-release ubuntu-keyring
curl https://nginx.org/keys/nginx_signing.key | gpg --dearmor \
| sudo tee /usr/share/keyrings/nginx-archive-keyring.gpg >/dev/null
gpg --dry-run --quiet --no-keyring --import --import-options import-show /usr/share/keyrings/nginx-archive-keyring.gpg
fingerprint: "573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62" If the fingerprint is different, remove the file.
echo "deb [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg] \
@archan937
archan937 / setup-dnsmasq.sh
Last active January 21, 2025 16:03
Point *.test to 127.0.0.1 using DNSMasq and NetworkManager on Ubuntu
#!/bin/bash
# Usage:
#
# curl -sL https://gist.githubusercontent.com/archan937/d35deef3b1f2b5522dd4b8f397038d27/raw/setup-dnsmasq.sh | sudo bash
#
DOMAIN=".test"
ensure_ping() {
@CodebyOmar
CodebyOmar / icon-with-badge-tailwind.html
Last active July 10, 2023 06:53
Place a badge that show notification numbers or number of items in a cart at top right of an icon with tailwindcss
<button class="py-4 px-1 relative border-2 border-transparent text-gray-800 rounded-full hover:text-gray-400 focus:outline-none focus:text-gray-500 transition duration-150 ease-in-out" aria-label="Cart">
<svg class="h-6 w-6" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"></path>
</svg>
<span class="absolute inset-0 object-right-top -mr-6">
<div class="inline-flex items-center px-1.5 py-0.5 border-2 border-white rounded-full text-xs font-semibold leading-4 bg-red-500 text-white">
6
</div>
</span>
</button>