Daniel Holth

Results 349 comments of Daniel Holth

I only tested it on OSX with a Yamaha DD-65 drum. I am using an FTDI231X-based (http://www.ftdichip.com/Products/ICs/FT231X.html) USB to serial adapter. The adapter has no problem with that baud rate...

It builds a target called `editable` https://github.com/dholth/enscons/blob/master/enscons/api.py#L48 defined at https://github.com/dholth/enscons/blob/master/enscons/__init__.py#L486 It should build those other things, but it's possible something was missed.

You might also want to double-check that it conforms to the current wheel specification.

That's right, the wheel library isn't really designed to be re-used for creation. Instead the format is designed to be simple enough that you have a fighting chance of re-implementing...

Remember how great Python's SimpleHTTPServer was? It shows up in non-Python tutorials sometimes just because people want a convenient web server. Unfortunately, it doesn't support http/2 and a lot of...

Good to know. Did you know cffi has a new non-trampoline version of callbacks? It works exactly like it would in C, where you have to pass C a void*...

I think I will try pulling the stdlib ssl module into a separate package. I've already tried two things. (Actually I also want to try repackaging the entire stdlib). I...

Recall txsni wraps sslcontext and possibly connection to compensate for the lacking getters, to be able to recreate a matching context with the client's requested server name certificate. For hypercorn...

Do you think some of the difficulty in porting to OpenSSL is due to hidden retries in the standard library `ssl`? Will that kind of thing get in the way...