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.
| /* Decrease the tabs bar height in gnome-terminal | |
| * Add: ~/.config/gtk-3.0/gtk.css | |
| * See: https://stackoverflow.com/questions/36869701/decrease-the-tabs-bar-height-in-gnome-terminal | |
| */ | |
| terminal-window notebook > header.top button { | |
| padding: 0 0 0 0; | |
| background-image: none; | |
| border: 0; | |
| margin-right: 10px; |
| #!/bin/bash | |
| set -eux | |
| # Thanks to: https://github.com/paulczar/gcp-cleaner/blob/master/delete-all.sh | |
| export __region=$1 | |
| FAIL=0 | |
| waitfor() { |
| import importlib.metadata | |
| def list_installed_packages(): | |
| distributions = importlib.metadata.distributions() | |
| installed_packages = [] | |
| for dist in distributions: | |
| args = (dist.metadata['Name'], dist.version) | |
| installed_packages.append(args) | |
| installed_packages.sort() # Sort the packages by name | |
| for package_name, version in installed_packages: |
| // Import Three.js | |
| import * as THREE from "three"; | |
| import { OrbitControls } from "three/addons/controls/OrbitControls"; | |
| var scene = new THREE.Scene(); | |
| var camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); | |
| var renderer = new THREE.WebGLRenderer(); | |
| renderer.setSize(window.innerWidth, window.innerHeight); | |
| document.body.appendChild(renderer.domElement); |
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.
| #!/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 |
| //@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 |
Reference: https://arxiv.org/abs/2401.05856
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.