Dionysius
Dionysius
```golang import "encoding/json" func TestJsonRawMessage(t *testing.T) { type T json.RawMessage a := T(`{"foo":1,"bar":2}`) b := T(`{"bar":2,"foo":1}`) // just informative begin aI := map[string]interface{}{} bI := map[string]interface{}{} _ = json.Unmarshal(a, &aI)...
Debian squeeze-lts here. I'd like to stick to the repository packages when they've patched the vulnerabilities. How can I revert the changes made by shellshocker fix script?
I have issues with a specific library sync since 9.0.5. The library is set to sync with `C:\Users\Dionysius\Documents`. **I have no issues with 9.0.4**. Upgrading back to 9.0.5 and the...
 
The explorer extension DLLs seem to not be signed, would be nice for the official builds to have that. Can be viewed with [Sysinternals Autoruns](https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns)  The autostart entries seem...
It **is** able to download existing data in that library to the external drive though. Seafile only reports the "pause"-symbol with empty output on mouse hover.  In the seafile...
Testcase: ```go package main import ( "testing" "github.com/sters/yaml-diff/yamldiff" ) var yaml1 = ` value: |- foo bar baz special multiline ` var yaml2 = ` value: "foo\nbar\nbaz\n\ special\n\ \ multiline"...
I understand that it doesn't make sense to go in and try to support all possible core-ish types. E.g. like `json.RawMessage` as in #62. Requesting an `Equal` method for the...
https://github.com/containernetworking/cni/blob/d5c71ad528129e306538f7ba5b796337c1898d81/pkg/invoke/args.go#L57 While debugging an issue I had with our custom CNI plugin I just found out that libcni forwards **every** env variable of the program calling CNI. While I could...
## Describe the Bug Same as #2430 but for unit tests. Accidentally loaded an inventory yaml file without a `groups` key: ```yaml - name: somegroup targets: - alias: somealias name:...