Adrian Sampson

Results 1057 comments of Adrian Sampson

Heck yes! This would be super cool. I suppose v1.0 of this could produce a CSV file that looks roughly like: ```csv component,count main,1 std_mul,5 std_add,22 my_great_subcomponent,3 ``` In other...

Seems pretty cool indeed! There are a few scattered YAML-specific notions around in the code, such as the `dump` method, so perhaps a good first step here would just be...

I'm seeing the same thing, right down to the mysterious `attempted methods [none]`. Any chance you found a solution, @IanBarnesZa?

Sounds very reasonable! Any chance you could try putting together a PR to show how this would work?

Hi! Those are console color control sequences. They're supposed to be automatically adapted into control commands for the Windows console. Can you try running this command to check which platform...

Sorry; I'm very far from being an expert in Windows command syntax. We just need a way to escape the spaces in that argument—maybe try double quotes instead of single...

That's strange. All this indicates that everything should be working. Here's the relevant bit of the code: https://github.com/beetbox/beets/blob/7e8056b0e8652a6235d8e2e054c0c41eae71bff0/beets/ui/__init__.py#L47-L54 If you're interested in doing some more hardcore digging, the next step...

Extremely mysterious! I took a look at the issues for Colorama and it sounds like there may be a problem with Colorama on Python 3 and writing raw bytes (which...

Wow; that's pretty weird. It seems like single quotes should work as you'd expect… https://msdn.microsoft.com/en-us/powershell/reference/5.1/microsoft.powershell.core/about/about_quoting_rules

Good find, @jackwilsdon! Yes, it does look like we either need to wait for that to get fixed, or we need to find a way to manually send bytes through...