$argon2id$v=19$m=64,t=512,p=2$G/DQSn2+4afFDXZRdR3Vlw$DBvv46nt3EEkY5ehfDVfQQ
View main.go
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
package main | |
import ( | |
"testing" | |
) | |
func A() { | |
m := map[int][]string{} | |
for i, _ := range []int{1, 2, 3} { |
View main.go
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
package main | |
import ( | |
"crypto/dsa" | |
"crypto/ecdsa" | |
"crypto/rsa" | |
"crypto/tls" | |
"crypto/x509" | |
"encoding/pem" | |
"flag" |
View gist:2b6ec8ddc7d5f53ae096ebc5c8b990b6
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
with_entries(if .key == "Version" then . + {value: (.value | tonumber)} else . end) |
View keybase.md
Keybase proof
I hereby claim:
- I am kwilczynski on github.
- I am kwilczynski (https://keybase.io/kwilczynski) on keybase.
- I have a public key whose fingerprint is 12D2 7D5D 8C8E 9BF1 AABC 7C7C 7C64 768D 3DE3 34E7
To claim this, I am signing this object:
View auto-merge.yml
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
name: "Auto-merge Dependabot Pull Request for Dockerfile updates" | |
permissions: | |
pull-requests: write | |
contents: write | |
on: | |
pull_request_target: | |
branches: | |
- main |
View Dockerfile
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 registry.access.redhat.com/ubi8/python-39:latest AS builder | |
ARG psycopg2_version=2.9.5 | |
USER 0 | |
RUN set -eux && \ | |
mkdir -p /build && \ | |
chown 1001 /build |
View main.go
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
package main | |
import ( | |
"fmt" | |
"net/url" | |
"strings" | |
"unicode/utf8" | |
) | |
func normalizePassword(input string, escape bool) (output string) { |
View patch.diff
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
diff -uNr linux-stable/drivers/pci/quirks.c linux-xanmod/drivers/pci/quirks.c | |
--- linux-stable/drivers/pci/quirks.c 2022-09-09 08:28:12.533768183 +0900 | |
+++ linux-xanmod/drivers/pci/quirks.c 2022-09-09 07:19:42.327689416 +0900 | |
@@ -3601,6 +3601,106 @@ | |
dev->dev_flags |= PCI_DEV_FLAGS_NO_BUS_RESET; | |
} | |
+static bool acs_on_downstream; | |
+static bool acs_on_multifunction; | |
+ |
NewerOlder