- Volume of data
- Scaling
- Structure strictness (data schemas)
- Query complexity
- Type of data
- Depth levels of data
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
| const sumArrayValues = (values) => { | |
| return values.reduce((p, c) => p + c, 0) | |
| } | |
| const weightedMean = (factorsArray, weightsArray) => { | |
| return sumArrayValues(factorsArray.map((factor, index) => factor * weightsArray[index])) / sumArrayValues(weightsArray) | |
| } | |
| weightedMean([251, 360, 210], [0.1, 0.5, 0.7]); | |
| // => 270.8461538461539 |
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 | |
| # file: ttfb.sh | |
| # curl command to check the time to first byte | |
| # ** usage ** | |
| # 1. ./ttfb.sh "https://google.com" | |
| # 2. seq 10 | xargs -Iz ./ttfb.sh "https://google.com" | |
| curl -o /dev/null \ | |
| -H 'Cache-Control: no-cache' \ | |
| -s \ |
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
| const map = f => step => (a, c) => step(a, f(c)); | |
| const filter = predicate => step => (a, c) => predicate(c) ? step(a, c) : a; | |
| const compose = (...fns) => x => fns.reduceRight((y, f) => f(y), x); | |
| const curry = (f, arr = []) => (...args) => ( | |
| a => a.length === f.length ? f(...a) : curry(f, a) | |
| )([...arr, ...args]); |
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 | |
| # openclaw-security-check.sh - Verify server security configuration | |
| # Run this periodically to check security status | |
| # Usage: ./openclaw-security-check.sh | |
| echo "==========================================" | |
| echo "OpenClaw Security Status Check" | |
| echo "$(date)" | |
| echo "==========================================" | |
| echo "" |
Date: 2026-02-09 18:09 UTC
Scanner: Bounty Hunt CLI v4.0 (Phase 4)
Target: https://arielfuggini.com
Date: 2026-02-09 18:15 UTC
Scanner: Bounty Hunt CLI v4.0 (Phase 4)
Target: https://www.clarin.com