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
| https://dlm2.download.intuit.com/akdlm/SBD/QuickBooks/2024/Latest/QuickBooksEnterprise24Trial.exe |
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 | |
| PORT=12201 | |
| INTF=eth0 # change if your external interface is different | |
| SOURCE_CIDR="0.0.0.0/0" # no restriction — allows any source (for testing) | |
| echo "1) Verify Graylog is listening on port $PORT:" | |
| ss -tulpen | grep ":$PORT" | |
| echo | |
| echo "2) Check current iptables INPUT rules for port $PORT:" |
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
Show hidden characters
| { | |
| "tasks": { | |
| "dev": "deno run -A --watch=server.ts,static/,games/ server.ts", | |
| "start": "deno run -A server.ts", | |
| "copy:assets:windows": "powershell -NoProfile -Command \"New-Item -ItemType Directory -Force build/windows | Out-Null; Copy-Item -Recurse -Force static build/windows/static; if (Test-Path games) { Copy-Item -Recurse -Force games build/windows/games }\"", | |
| "build:windows": "deno compile --allow-all --target x86_64-pc-windows-msvc --output build/windows/codemonkey-games-launcher.exe server.ts && deno task copy:assets:windows", | |
| "run:windows": "build/windows/codemonkey-games-launcher.exe", | |
| "build-run:windows": "deno task build:windows && deno task run:windows", | |
| "fmt": "deno fmt", | |
| "lint": "deno lint", |
NewerOlder