Markus Malkusch
Markus Malkusch
I'm not sure if this is really necessary in vanilla PHP, at least it won't hurt. HHVM uses a JIT and would benefit from a warm up phase.
Please tag a version so that we could reference this library.
How about migrating to a [GitHub Organization](https://github.com/organizations/new) (e.g. `notejam`)? Each implementation would have an own repository. There could still be a master project e.g. `notejam/notejam` which aggregates all implementations by...
Currently users can view, edit and delete entities of other users: 1. Login as User-1 2. Create pad and remember id of that pad from URI. 3. Login as User-2...
I implemented a `BlockingQueueMailStore` for supporting testing of asynchronous mail transfer. Just now while submitting the PR I discovered your `SmtpServer.anticipateMessageCountFor()` which is pretty much for the identical use case....
I couldn't find anything documenting if this API is thread-safe. Is it? It would be helpful to have that somewhere documented.
I would love to be able to set the connect and read timeouts. If this is already possible could you please point me to that place?
`PCF8574::digitalWrite()` returns void, but it could actually return an error code from [`Wire::endTransmission()`](https://github.com/arduino/Arduino/blob/1.8.3/hardware/arduino/avr/libraries/Wire/src/utility/twi.c#L220-L224). With that error code I could try to recover from that error by e.g. retrying. Without I'm...