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
$ ./gh-review-stats pr-history -o openshift -r enhancements 996 1040 1041 | |
Using config file: /Users/dhellmann/.gh-review-stats.yml | |
Wed Jan 5: #996 updated by Omer Tuchfeld | |
Wed Jan 5: #996 opened by omertuc "Enhancement for enabling single-node-openshift with workers" (https://github.com/openshift/enhancements/pull/996) | |
Thu Jan 6: #996 comment by eranco74 | |
Thu Jan 6: #996 comment by eranco74 | |
Thu Jan 6: #996 review by eranco74 | |
Thu Jan 6: #996 comment by omertuc | |
Thu Jan 6: #996 review by omertuc | |
Thu Jan 6: #996 review by omertuc |
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
(use-package robot-mode | |
:ensure t | |
:init | |
) | |
;; ensure that *.resource files are treated as robot framework files | |
(setq auto-mode-alist | |
(cons '("\\.resource$" . robot-mode) auto-mode-alist)) | |
;; based on https://www.masteringemacs.org/article/executing-shell-commands-emacs |
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
#!/usr/bin/env python3 | |
import collections | |
import fileinput | |
import operator | |
import sys | |
sources = collections.defaultdict(int) | |
for line in fileinput.input(sys.argv[1:]): |
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
$ tox -e linter | |
linter: commands[0]> python3 ./test/ci_job_linter.py | |
reading requirements file collections/accelerated/cuda-ubi9/requirements.txt | |
triton | |
torch | |
torchaudio | |
torchvision | |
deepspeed | |
flash-attn | |
ninja |
OlderNewer