This file contains 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
receivers: | |
otlp: | |
protocols: | |
grpc: | |
endpoint: 0.0.0.0:4317 | |
http: | |
endpoint: 0.0.0.0:4318 | |
processors: | |
batch: |
This file contains 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
global: | |
membership: | |
broadcastAddress: '127.0.0.1' | |
persistence: | |
defaultStore: default | |
visibilityStore: visibility | |
numHistoryShards: 4 | |
pprof: | |
port: 7936 |
This file contains 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
➜ temporal-server start | |
2024/06/29 16:11:54 Loading config; env=development,zone=,configDir=config | |
2024/06/29 16:11:54 Loading config files=[config/development.yaml] | |
{"level":"info","ts":"2024-06-29T16:11:54.958+0530","msg":"Build info.","git-time":"0001-01-01T00:00:00.000Z","git-revision":"","git-modified":false,"go-arch":"amd64","go-os":"linux","go-version":"go1.22.4","cgo | |
-enabled":false,"server-version":"1.23.1","debug-mode":false,"logging-call-at":"main.go:148"} | |
{"level":"info","ts":"2024-06-29T16:11:54.958+0530","msg":"dynamic config changed for the key: history.replicationenableupdatewithnewtaskmerge oldValue: nil newValue: { constraints: {} value: true }","logging-ca | |
ll-at":"file_based_client.go:275"} | |
{"level":"info","ts":"2024-06-29T16:11:54.958+0530","msg":"dynamic config changed for the key: system.enableeagerworkflowstart oldValue: nil newValue: { constraints: {} value: true }","logging-call-at":"file_bas | |
ed_client.go:275"} | |
{"level":"info","ts":"2024-06-29T16:11:54.958+0530","msg":"dynamic config |
This file contains 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
nixpkgs.overlays = [ (self: super: { | |
qtile = super.qtile.unwrapped.override (old: rec { | |
src = super.fetchFromGitHub { | |
owner = "qtile"; | |
repo = "qtile"; | |
rev = ''6620786f801f56fc61716514139044108eaef743''; # qtile | |
sha256 = ''1x33c9fcg4iz8857zah19b9gsazjxm5qldgwv2qswryfqxibjqyh''; # qtile | |
}; | |
qtile-extras = pkgs.python3Packages.buildPythonPackage { | |
pname = "qtile-extras"; |
This file contains 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
from selenium import webdriver | |
import sys, getopt, time, subprocess, shlex | |
from xvfbwrapper import Xvfb | |
def run(): | |
print('Sreencast website animation') | |
xvfb = Xvfb(width=1280, height=720, colordepth=24) | |
xvfb.start() |