Bea Steers
Bea Steers
I just came across this package and it seems like an awesome tool! A super useful feature would be a single command that sits atop the other addons and runs...
For `iwlist`, both of these numbers are present ``` Cell 02 - Address: 66:33:4B:E0:35:DB Quality=27/70 Signal level=-83 dBm ``` https://github.com/kootenpv/access_points/blob/7ca2aaed39b966249a30580fd8b6f13612b4ac04/access_points/__init__.py#L222 ```python # change quality = int(line.split("=")[1].split("/")[0]) # to quality, strength...
# The Problem When a parameter contains new lines between the first line and the rest, those new lines are collapsed into a single new line. ```python def asdf(): '''asdf...
tl;dr: change [here](https://github.com/agentejo/cockpit/blob/568b0124352f6d27df359e8c19a70d2dd1961e87/modules/Collections/bootstrap.php#L634): ```php if (is_numeric($maxlevel) && $maxlevel > -1 && $level > ($maxlevel+1)) { // to if (is_numeric($maxlevel) && ($maxlevel == 0 || $maxlevel > -1 && $level >...
Fixes: #1450 ### What is this about? When using `?populate=1`, `?populate=2`, etc. when querying a collection with collectionlink fields, the populate query value also doubles as a max depth parameter....
#### Reference Issue Addresses #1139 #### What does this implement/fix? Explain your changes. I figured it would be worth taking a second to sketch out a possible solution. What this...
**Is your feature request related to a problem? Please describe.** I'm looking into librosa cache for the first time and it looks really helpful, but I'm worried about there being...
I'm not sure how difficult it would be to provide Librosa via VST plugins so that things like PCEN would be accessible through Audition/Audacity/Sonic Visualizer/etc. @bmcfee said it has been...
Here is a summary of the defaults that I added: ``` # Background: label: ('choose', []) source_file: ('choose', []) source_time: ('uniform', 0, source_duration - duration) snr: ('const', 0) # Foreground...
We should add any scaper parameters to the constructor. It would be a non-breaking change because you can still set the attributes manually. It's not a huge issue, it's just...