Skip to content

Instantly share code, notes, and snippets.

[2026.01.19-18.10.13:683][ 11]UShooterEngine::LoadGameMods Loading Mod ShooterGame/Mods/83374/953154_6571081/AutoEngrams/Content/PrimalGameData_BP_AutoEngrams.uasset : 953154
[WARNING] Server process not found. Waiting to confirm if this is a restart...
🕐 Setting up container timezone...
🕐 Configuring timezone: Europe/Paris
✅ Container timezone: Mon Jan 19 19:12:12 CET 2026
ℹ️ ARK server logs show UTC time, but update windows use local time (CET)
🧹 Cleaning up legacy locks and dirty flags...
[INFO] Cleaning up legacy and stale locks (context: startup)...
[INFO] Cleaning up dirty flags older than 6 hours (preserves fresh flags) from: /home/pok/arkserver/instance_flags
[INFO] No dirty flags found to clean up
---------------------------------------------
📋 CONTINUING LIVE LOGS:
---------------------------------------------
[2026.01.19-18.10.13:625][ 10]LogCFCore: No need to update existing mod: Pelayori's Cryo Storage (Crossplay!) (928793)
[2026.01.19-18.10.13:625][ 10]LogCFCore: No need to update existing mod: ASA-Bot Companion (936882)
[2026.01.19-18.10.13:625][ 10]LogCFCore: No need to update existing mod: Runic Wyverns (974884)
[2026.01.19-18.10.13:625][ 10]LogCFCore: Mod valid: Auto Engrams! (953154)
[2026.01.19-18.10.13:625][ 10]LogCFCore: Mod valid: Awesome Spyglass! (947033)
[2026.01.19-18.10.13:625][ 10]LogCFCore: Mod valid: Pelayori's Cryo Storage (Crossplay!) (928793)
[2026.01.19-18.10.13:625][ 10]LogCFCore: Mod valid: ASA-Bot Companion (936882)
services:
db:
image: postgres:17
container_name: Documenso-DB
hostname: documenso-db
security_opt:
- no-new-privileges:true
healthcheck:
test: ["CMD", "pg_isready", "-q", "-d", "${DB_POSTGRES_DB}", "-U", "${DB_POSTGRES_USER}"]
timeout: 45s
@gamersalpha
gamersalpha / gist:c27ebe41154aee175afb170179982fcb
Created January 15, 2025 19:05
Ollama - SWAG Nginx proxy config
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name ollama.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
@gamersalpha
gamersalpha / gist:f43bd02eaa0a9502a2f32f6588bd2094
Created November 20, 2024 07:47
Docker compose - Searx for ollama search
services:
swag:
image: searxng/searxng
container_name: searxng
environment:
- PUID=1000
- PGID=1000
- BASE_URL=https://searx.domanie.fr
- INSTANCE_NAME=DomaineSearch
- TZ=Europe/Paris
[i] No changes detected
node:internal/fs/utils:356
throw err;
^
Error: EISDIR: illegal operation on a directory, read
at Object.readSync (node:fs:744:3)
at tryReadSync (node:fs:444:20)
at Object.readFileSync (node:fs:490:19)
at loadConfig (/home/perplexica/dist/config.js:11:60)
at getPort (/home/perplexica/dist/config.js:12:23)
@gamersalpha
gamersalpha / gist:65f4b0d116c9fb58a2b822c836abb154
Created November 2, 2024 10:30
Docker local AI - OLLAMA - WEBOPENAI - and many stuff
volumes:
n8n_storage:
postgres_storage:
ollama_storage:
qdrant_storage:
open-webui:
networks:
net_ai:
@gamersalpha
gamersalpha / gist:786c408ab86cf4b0887be16f462d7f43
Created October 21, 2024 07:30
Information recall WIndows
# Obtenir la version de Windows
$windowsVersion = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId
$windowsBuild = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentBuild
# Afficher la version et le build
Write-Host "Version de Windows : $windowsVersion"
Write-Host "Build de Windows : $windowsBuild"
# Vérifier si la fonctionnalité "Recall" est activée
$RecallEnabled = Dism /online /Get-FeatureInfo /FeatureName:Recall | findstr /B /C:"State"
@gamersalpha
gamersalpha / gist:a7c7a5ac1857e13c7fde4928aab616d2
Created October 13, 2024 18:06
Résumé Information matériel en PowerShell
# Informations sur le CPU
$cpuInfo = Get-WmiObject -Class Win32_Processor | Select-Object Name
# Informations sur le GPU
$gpuInfo = Get-WmiObject -Class Win32_VideoController | Select-Object Name
# Informations sur la RAM et sa vitesse
$ramInfo = Get-WmiObject -Class Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum | Select-Object @{Name="Total RAM (Go)";Expression={$_.Sum / 1GB}},@{Name="Vitesse RAM (MHz)";Expression={(Get-WmiObject -Class Win32_PhysicalMemory | Select-Object -First 1).Speed}}
# Informations sur la carte mère et le BIOS
@gamersalpha
gamersalpha / gist:fb1a884814abed3be191646fdea3539a
Created October 9, 2024 17:21
Swag - Nginx config for searx
## Version 2024/10/09
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name searx.*;
include /config/nginx/ssl.conf;