VirtualTam's bookmarks
64 bookmarks found
-
Zoekt - Fast trigram based code search
2025-02-19 - FAQ
- Zoekt Query Language Guide
- isker/neogrok - A frontend for Zoekt
- Query Language Guide by Neogrok
-
- Packer - QEMU Integration
- SSH password needs to be generated dynamically during auto-install
- kubernetes-sigs/image-builder - Tools for building Kubernetes disk images
-
Split tmux.conf into multiple files?
2025-01-17 source-file [-Fnqv] [-t target-pane] path ... (alias: source) Execute commands from one or more files specified by path (which may be glob(7) patterns). If -F is present, then path is expanded as a format. If -q is given, no error will be returned if path does not exist. With -n, the file is parsed but no commands are executed. -v shows the parsed commands and line numbers if possible.
-
- How To Customize the PostgreSQL Prompt with psqlrc on Ubuntu 14.04
- datachomp//dotfiles - psqlrc
- okbob/pspg - Pager specialized for tabular data
-
HAProxy Data Plane API
2021-11-01 - https://www.haproxy.com/blog/new-haproxy-data-plane-api/
- https://www.haproxy.com/blog/announcing-haproxy-data-plane-api-2-4/
- https://www.haproxy.com/blog/consul-service-discovery-for-haproxy/
- https://github.com/haproxytech/dataplaneapi/blob/master/discovery/README.md
- https://github.com/haproxytech/dataplaneapi/blob/master/discovery/AWS.md
- https://github.com/haproxytech/dataplaneapi/blob/master/discovery/CONSUL.md
-
389ds in containers
2021-01-20 - https://fy.blackhats.net.au/blog/html/pages/ldap_guide_part_1_foundations.html
- https://fy.blackhats.net.au/blog/html/pages/ldap_guide_part_2_searching.html
- https://fy.blackhats.net.au/blog/html/pages/ldap_guide_part_3_filters.html
- https://fy.blackhats.net.au/blog/html/pages/ldap_guide_part_4_schema_and_objects.html
- https://github.com/389ds/389-ds-base/blob/master/docker/389-ds-fedora/Dockerfile
-
- https://facebook.github.io/watchman/
- https://github.com/cstrahan/go-watchman
- https://news.ycombinator.com/item?id=23480198
- https://git-scm.com/docs/git-config#Documentation/git-config.txt-featuremanyFiles
- https://github.com/jgavris/rs-git-fsmonitor
- https://github.com/git/git/blob/master/templates/hooks--fsmonitor-watchman.sample
-
- https://stackoverflow.com/questions/10622179/how-to-find-identify-large-commits-in-git-history
- https://stackoverflow.com/questions/223678/which-commit-has-this-blob
1git rev-list --objects --all \ 2| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \ 3| sed -n 's/^blob //p' \ 4| sort --numeric-sort --key=2 --reverse \ 5| head -n 150 \ 6| cut -c 1-12,41- \ 7| $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest