Skip to content

Instantly share code, notes, and snippets.

View truroshan's full-sized avatar

Roshan Rajak l byteio.ɪn truroshan

View GitHub Profile
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
processors:
batch:
@truroshan
truroshan / development.yaml
Created June 29, 2024 10:48
temporal-service
global:
membership:
broadcastAddress: '127.0.0.1'
persistence:
defaultStore: default
visibilityStore: visibility
numHistoryShards: 4
pprof:
port: 7936
@truroshan
truroshan / all-service.sh
Last active June 29, 2024 10:51
temporal-server start
➜ 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
@truroshan
truroshan / qtile_master.nix
Created August 26, 2022 06:52 — forked from arjan-s/overlay_qtile_master.nix
qtile master with qtile-extras on NixOS
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";
@truroshan
truroshan / xvfb_screen_recording.py
Created October 31, 2021 05:32 — forked from t-io/xvfb_screen_recording.py
ScreenRecording xvfb
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()