This plan transforms the biometrics system from basic vital sign monitoring to a clinically-relevant, research-backed sleep analysis platform. Key innovations: (1) Hybrid posture-adaptive cardiac detection using wavelets and template matching, (2) Clinical actigraphy-based movement taxonomy, (3) Multi-signal apnea/hypopnea screening, (4) Gradient Boosting sleep stage classifier with multi-scale features, (5) Rigorous validation against PSG gold standard using Cohen's Kappa and Bland-Altman analysis.
The Dotabod integration causes cyclical FPS drops in Dota 2 due to the GSI configuration. Multiple streamers (ODPixel, Gorgc, and potentially Arteezy) have experienced this issue where FPS drops significantly every few seconds in a regular pattern.
- The issue is caused by the GSI configuration file that Dotabod uses to get game data
- Removing the GSI folder completely fixes the FPS drops but breaks Dotabod functionality
- Modifying the buffer and throttle values in the GSI config can reduce the severity of FPS drops
- ODPixel found that setting
buffer: 0.0andthrottle: 5.0helped minimize the issue
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
| services: | |
| n8n: | |
| image: 'docker.n8n.io/n8nio/n8n:next' | |
| environment: | |
| - SERVICE_FQDN_N8N_5678 | |
| - 'N8N_EDITOR_BASE_URL=${SERVICE_FQDN_N8N}' | |
| - 'WEBHOOK_URL=${SERVICE_FQDN_N8N}' | |
| - 'N8N_HOST=${SERVICE_URL_N8N}' | |
| - GENERIC_TIMEZONE=Europe/Berlin | |
| - TZ=Europe/Berlin |
Here’s a fancier and user-friendly version of the batch script with clear customer-facing language, debug info for reporting, and improved symbols for feedback. It will make the experience more polished and easier to understand for the customer.
Save as run_debug_with_bun.bat
@echo off REM ========================== REM Fancy Debug Automation Script REM ==========================
REM Set constants
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 | |
| # This just provides you with a new docker-compose.yaml file. | |
| # 1. You then have to edit your Supabase stack's docker compose and paste it in | |
| # 2. Then you have to re-deploy to get the new versions installed | |
| # TODO: Be able to run this script on your VPS and have it auto-update your compose yaml | |
| # Local Docker Compose file | |
| LOCAL_FILE="docker-compose.yaml" |
Moved to a repo at https://github.com/Geczy/coolify-migration
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
| ## .\debug.ps1 -Token c123123123123123 -Online $true -Name poecco -Steam32Id 33365540 | |
| ## powershell -c "irm bun.sh/debug.ps1 | iex -Args 'param1Value', 'param2Value'" | |
| param ( | |
| [parameter(mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Token, | |
| [bool]$Online = $false, | |
| [string]$Name, | |
| [int]$Steam32Id | |
| ) |
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 | |
| # If not running via sudo, exit | |
| if [ "$EUID" -ne 0 ]; then | |
| echo "Please run as root" | |
| exit | |
| fi | |
| # quit if jq is not installed | |
| if ! command -v jq &>/dev/null; then |
NewerOlder
