Ilia Sidorenko
Ilia Sidorenko
``` > validator.validate("test@localhost") false ``` this is not okay.
@charlie-s I had a customer once complain that `[email protected]` (or something of that sort) wasn't getting accepted by the registration page. It's just better to conform to the spec all...
Fair enough for your constraints, totally an appropriate approach if you send emails asynchronously. In my case I err on the side of correctness over bandwidth. Also, I concede that...
Note: this happens only in Python 2, because in python 2 `bytes()` function is just an alias for `str` type cast. I suggest doing something like the following: ```python if...
I think this was because pm2 daemon was running from `root` user and not `ubuntu` user, therefore it couldn't access `ubuntu` ssh credentials to do git pull. Logging "Successfuly pulled...
Interested in this as well
@100best no. the format they are stored in can be libre, and that would be a good idea. something like FLAC would be nice, or anything with a decent bitrate...
Can it be argued that game design is different even though it uses on the same protocol? One simple change (addition/extension, for example an extra packet understood only by OS)...
Does the protocol have any Intellectual Property rights? I haven't heard of it being patented, so most likely besides that there are no possible way to impose IP on it....
This does look like an interesting approach, I gonna need to try it out. Atm we just have broken implementation in production and we remedy it by just trigerring stuff...