Steven Van Ingelgem

Results 91 comments of Steven Van Ingelgem

Hello @gamegrd, I took your code and improved it a bit: https://github.com/svaningelgem/scrcpy/tree/feature/interactions_via_code The way I improved on it: - you can click - you can type - you can take...

Thanks for the lengthy explanation @brunoais ! I'm wondering if I would be allowed to introduce new dependencies? I quickly glanced and there is Boost.Interprocess, and there are protobuffers that...

``` "struct This test would fail because the backquotes are not removed. I solved this one as: ``` 'QuotedIdentifierAlternativeContext': partial(unwrap, has_quotes=True), [...] def unwrap(*children, has_quotes=False): check_children(1, children) tmp = convert_tree(children[0])...

``` """ struct< struct:struct, MAP:Map, arrAy:Array, anotherArray:Array > """: StructType([ StructField("struct", StructType([ StructField("deciMal", DecimalType()), StructField("anotherDecimal", DecimalType(5, 2)) ])), # StructField("MAP", MapType(TimestampType(), VarcharType(10))), StructField("MAP", MapType(TimestampType(), StringType())), StructField("arrAy", ArrayType(DoubleType())), # StructField("anotherArray", ArrayType(CharType(9)))])...

And the following 2 do not fail correctly when they should: `struct`). `struct` fails with a TypeError where it should fail with SqlParserError (because of the unquoted identifier `1+1` which...

Ok, I'll pick that up once the PRs are through :-) (stabler code base)

I had exactly the same issue and found a solution for it. (watch out! i'm a beginner at this) Maybe it's easy to integrate into this library as the method...

With an absolute path to the cfg it works fine: ``` (base) PS E:\brunette> brunette --config E:\brunette\setup.cfg . Using configuration from E:\brunette\setup.cfg. .git ignored: matches the --exclude regular expression E:\brunette\brunette\__init__.py...

I moved to axblack which fits everything I wanted to do. I'll have a look into this though.

Reproduced again with conda & a freshly clone of brunette: ``` conda create python=3.6 -n brunette conda activate brunette brunette . brunette --config setup.cfg . ```