Matt Zagrabelny
Matt Zagrabelny
Domain names are case insensitive. Searches for a mixed case zone and a lowercase zone with the same symbols (letters) should return the same zone object. This point will be...
When a routine calls PhysAddr->validate to validate an L2 address the descriptive message is lost by just returning a boolean success or failure. Instead allow passing in a reference to...
### ISSUE TYPE * Feature Request ### GEEQIE VERSION ``` Geeqie 1.6 ``` ### SUMMARY Please add a configuration box to the General preferences for the slideshow delay step value....
### ISSUE TYPE * Feature Request ### GEEQIE VERSION ``` Geeqie 1.6 ``` ### SUMMARY Allow PgUp/PgDown to recurse into subfolders. ### STEPS TO REPRODUCE Hello geeqie developers, "Page Up"...
Hello, Thanks for configargparse! I have a use-case where I'd like to specify --config-file multiple times on the command line and have all the config files used. ./application --config-file scenario-A.yaml...
I create a PrettyTable as such: #!/usr/bin/python3 from prettytable import PrettyTable t = PrettyTable( header = False, border = False, padding_width = 0, ) t.add_row(['a', 'b', 'c', 'd',]) print(t) print(t.get_string(padding_width...
Greetings, I just upgraded to Graphene OS Android 14 and Androminion stopped working. "App not installed as app isn't compatible with your phone" Thanks, -m
Greetings, TPE2 is a tag for an accompanying band for a "main" artist. I feel like "album artist" is when there is a main artist and every once in a...
Greetings, I have YAML files such as: `foo-bar: baz` I'd like to use serde-yaml to parse into: ``` struct FooBar { foo_bar: String, } ``` Do you know if there...
Greetings, Thank you for yaml-rust! I see in the docs: `assert_eq!(doc["foo"][0].as_str().unwrap(), "list1");` I would like to do something like: ``` let key = "[foo][0]"; assert_eq!(doc.dynamic_lookup(key).unwrap(), "list1"); ``` Do you know...