I hereby claim:
- I am lowell80 on github.
- I am lowell87 (https://keybase.io/lowell87) on keybase.
- I have a public key ASBFkf6XfGJ2a3ZzJva85-aU9FTkZjkRHYXKSpgfeS0WYwo
To claim this, I am signing this object:
| # This script automatically handles Syncthing conflicts on text files by applying a | |
| # git three-way merge between the previously synced version and each divergent version. | |
| # It depends on the watchdog package and git. | |
| # For automatic dependency installation when running with ´uv run --script deconflicter.py´: | |
| # /// script | |
| # requires-python = ">=3.10" | |
| # dependencies = [ | |
| # "watchdog", |
I hereby claim:
To claim this, I am signing this object:
| """ | |
| Helps to recover corrupted .ckpt files created by Splunks 'splunksdc' module used by various TA's. | |
| (I think it ships with the TA add onbuilder, but not 100% sure of that.) | |
| Requires the 'umsgpack' 3rd party module | |
| Usage: | |
| python fix_checkpoint.py |
| #!/usr/bin/env python | |
| ''' Splunk deployment based on CIDR | |
| Splunk's deployment server does not support CIDR based matching out of the box, | |
| but they do support PCRE regex matching. I found this script online and | |
| modified it slightly to match Splunk's specific regex variation. (Basically, | |
| Splunk uses standards PCRE but replace the meaning of "." and "*" to act more | |
| like traditional glob strings.) The values returned by this script can be | |
| used in the serverclass.conf for either whitelist.<n> or blacklist.<n> values. | |
| See the Splunk docs for more details. |