Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| namespace io.cloudevents; | |
| // Key-value pair for extension attributes | |
| table ExtensionAttributes { | |
| key: string (required); | |
| value: string (required); | |
| } | |
| // Main CloudEvent record | |
| table CloudEvent { | |
| // REQUIRED attributes | |
| id: string (required); |
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
| #!/bin/bash | |
| # Enhanced Fail2Ban Installation Script (Idempotent) | |
| # Save this as install_fail2ban.sh and run with: bash install_fail2ban.sh | |
| set -e # Exit on any error | |
| echo "Starting Fail2Ban installation and configuration..." | |
| # Install fail2ban if not already installed | |
| if ! command -v fail2ban-client &> /dev/null; then |
Reference: https://arxiv.org/abs/2401.05856
The Seven Failure Points from "Seven Failure Points When Engineering a Retrieval Augmented Generation System"
The seven critical failure points identified by Barnett et al. in their paper are:
1. Missing Content - The foundation of any RAG system is its knowledge base. An incorrect or incomplete knowledge base can lead to erroneous or insufficient information retrieval, ultimately affecting the quality of generated outputs.
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
| //@version=6 | |
| indicator(title="All-in-One MA Ribbon + Volume Profile", shorttitle="AIO-MAR-VP", overlay=true, max_boxes_count=500, max_bars_back=1000) | |
| //============================================================================= | |
| // Input Parameters | |
| //============================================================================= | |
| tab_selection = input.string("MA Ribbon", "Settings", options=["MA Ribbon", "Volume Profile", "Visual Settings"]) | |
| //----------------------------------------------------------------------------- | |
| // MA Ribbon Settings |
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
| #!/usr/bin/env bash | |
| # | |
| # BashBox - Git-based File Synchronization Tool | |
| # A lightweight solution for bi-directional file synchronization using Git | |
| # | |
| # Author: James Munsch <[email protected]> | |
| # License: MIT | |
| set -euo pipefail # Strict mode: exit on error, unbound variable, and piping failures |
- Verbalize your thought process: "I'm thinking we should check for edge cases here..."
- Explain trade-offs: "We could use a hash map for O(1) lookup, but it would cost O(n) space..."
- Articulate assumptions: "I'm assuming the input array is not sorted..."
- Narrate your debugging process: "Let's trace through with this example input..."
This guide aims to be a high level panoply of methodologies, methods, practices related to CSS.
Feel free to make a comment if you find anything you'd really like added to it.
NewerOlder