Here is a truth table that gives definitions of each of the 6 possible 2-input logic gate functions of two Boolean variables
|
|
|
|
|
|
|
||
|---|---|---|---|---|---|---|---|
Here is a truth table that gives definitions of each of the 6 possible 2-input logic gate functions of two Boolean variables
|
|
|
|
|
|
|
||
|---|---|---|---|---|---|---|---|
| # shellcheck disable=SC2148 | |
| # Universal Service Status Function for Unix Systems | |
| # Works on: FreeBSD/TrueNAS, Debian/Ubuntu, RHEL/Fedora/CentOS, macOS, OpenBSD, NetBSD | |
| servstat() { | |
| local filter="" | |
| local show_disabled=false | |
| local show_details=false | |
| local sort_output=false | |
| local output_format="table" |
| #!/usr/bin/env bash | |
| # | |
| # !!!!!!!!!!!!!! | |
| # SCRIPT IS BROKEN FOR NOW, NOT GOT NO TIME TO CHANGE, SORRY | |
| # MIGHT GET UPDATED IN A MONTH OR SO... :( | |
| # !!!!!!!!!!!!!! | |
| # | |
| # gemwrap: run gemini, mirror its output, and log token stats + git root. | |
| # Can also parse existing gemini output from stdin when used with --parse-only | |
| # |
Official MCP documentation: docs.anthropic.com/en/docs/claude-code/mcp
This guide provides comprehensive installation instructions for MCP (Model Context Protocol) servers, enabling Claude Code to interact with external tools and services.
A comprehensive guide for developers new to JavaScript and its ecosystem - Updated for 2025
| #!/usr/bin/env bash | |
| # | |
| # brightness.sh - DDC/CI Monitor Brightness Control Utility | |
| # | |
| # Intelligent monitor brightness control with sophisticated caching system. | |
| # Supports multiple monitors, relative adjustments, and atomic cache operations. | |
| # | |
| # Installation: | |
| # curl -o ~/.local/bin/brightness https://gist.github.com/kjanat/0efbcfef3026498bb9f21cd1518dd001/raw/brightness.sh |
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "ArgoCD Application", | |
| "description": "Schema for ArgoCD Application Custom Resource Definition", | |
| "type": "object", | |
| "required": ["apiVersion", "kind", "metadata", "spec"], | |
| "properties": { | |
| "apiVersion": { | |
| "type": "string", | |
| "const": "argoproj.io/v1alpha1", |
| <# | |
| .SYNOPSIS | |
| PowerShell argument completer for the Bun command-line interface. | |
| .DESCRIPTION | |
| This script provides tab completion for Bun commands in PowerShell. | |
| - Completes top-level commands (e.g., 'bun add', 'bun run'). | |
| - Completes script names from 'package.json' when using 'bun run'. | |
| .NOTES | |
| Author: Kaj Kowalski | |
| Version: 1.0 |