supriyo-biswas
supriyo-biswas
@Sparticuz you can test WebGL by using one of the demos, such as https://webglsamples.org/aquarium/aquarium.html. Of course only @alixaxel can tell us if he has a private testsuite to check for...
@alixaxel, you've mentioned that: > I've already managed to make some interesting findings, but the approach is still not very elegant (and increases the package size considerably). Could you elaborate...
Support for `os.mkdir()` would also be nice.
https://github.com/honeytrap/honeytrap/blob/master/services/adb.go is also another implementation that can be looked at.
Would contributing a better shell parser help with the issue?
A little while ago I wrote this Cloudformation template to make use of fck-nat in a VPC. Maybe it can be included? https://gist.github.com/supriyo-biswas/33043bea2237f9579b1e81f712cf25f6
There are other commands for which I’d like to have the ability to get their raw outputs. If I understand correctly, the current proposal is a all-or-nothing deal?
In my opinion the JSON method is still repetitive boilerplate, my aim for this feature being something that feels natural, as if the externally called command were a part of...
Well, I have a lot to learn about the PsySH codebase before I can usefully contribute. 😉 In particular, I'm not sure how the forking loop is implemented, does it...
Soundex also has other bugs: ``` >>> import fuzzy >>> soundex = fuzzy.Soundex(4) >>> soundex('hello') 'H4' >>> soundex('hi') "Houndex('hi')\n" ``` This is on Python 3.7.0 (macOS 10.14) with Fuzzy 1.2.2