# submit the parameterized batch job to cluster:
nomad job run ./cadence-setup-schema.nomad
# run this job (but without any param):
nomad job dispatch cadence-setup-schema
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 | |
############################################################################### | |
# build-trixie.sh – create an installimage-ready Debian 13 tarball | |
############################################################################### | |
# Strict and predictable shell behavior | |
set -euo pipefail | |
# Found AUTOSETUP file '/autosetup' | |
# Running unattended installimage installation ... |
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 | |
# Docker in LXC Capabilities Check | |
# Run this inside an LXC container to verify Docker configuration compatibility | |
echo "=== DOCKER IN LXC CAPABILITIES REPORT ===" | |
echo "Container: $(hostname)" | |
echo "Date: $(date)" | |
echo "Kernel: $(uname -r)" | |
echo |
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
package {{ .PackageName }} | |
type future_{{ .StructName }}_{{ .MethodName }} struct { | |
task func() ({{ .ReturnTypes | csvTypes }}) | |
} | |
func (f future_{{ .StructName }}_{{ .MethodName }}) Await() ({{ .ReturnTypes | csvTypes }}) { | |
return f.task() | |
} |
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
package body_bytes | |
import ( | |
"fmt" | |
"io" | |
"io/ioutil" | |
"reflect" | |
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime" | |
) |
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
tell application "System Preferences" | |
quit | |
delay 0.3 | |
launch | |
activate | |
reveal pane id "com.apple.preference.displays" | |
tell application "System Events" | |
tell process "System Preferences" | |
delay 0.3 | |
tell window "LG Ultrafine" |
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
version: '3' | |
services: | |
elassandra: | |
image: docker.io/strapdata/elassandra:6.8.4.4 | |
environment: | |
- "JVM_OPTS=-Dcassandra.custom_query_handler_class=org.elassandra.index.ElasticQueryHandler" | |
- "MAX_HEAP_SIZE=1200m" | |
- "HEAP_NEWSIZE=300m" | |
- "CASSANDRA_CGROUP_MEMORY_LIMIT=true" | |
- "DEBUG=true" |
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
job "csi-linode-controllers" { | |
datacenters = ["dc1"] | |
type = "service" | |
group "controllers" { | |
count = 1 | |
# disable deployments | |
update { | |
max_parallel = 0 |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
NewerOlder