Daniel Upshaw
Daniel Upshaw
Fixes this issue: 
This is related: https://github.com/editorconfig/editorconfig/issues/275 But I'd like to know if after some time, the answer seems invalid. Since the OP was asked in 2016, I would certainly imagine that there...
https://github.com/jchook/mime-php So potentially here: https://github.com/TheFox/smtpd/blob/master/src/Client.php#L473 Instead of `$mail = \Zend\Mail\Message::fromString($this->mail);` or `$mail = \Zend\Mime\Message::createFromMessage($this->mail);`, it could be: `$mail = (new \Virtu\Mime\Textual\Parser)->parseMessageString($this->mail);` This would then expose each message part after parsing
This could save around 20% of bandwidth for sending the bundled files: https://madskristensen.net/blog/performance-of-tabs-vs-spaces-in-html-files/ Doesn't enforce a tab width Won't break any deployments
This idea comes from having using Gboard a lot, and THANK YOU for providing critically important competition. Context: You have FlorisBoard configured to delete the whole previous word after a...
This was causing a crash in project details https://git.mittelab.org/g5pw/kanboard-theme/commit/ea823cf0bfe7aa2968bf759834ea0ce6e9f02456?view=inline Since this applies to a later/current version of a dependency, how best to handle this? Cater to new users, so that...
I run into syntax parsing issues occasionally, even when the syntax should be valid bash. For example, a bash array with newlines: ```bash ARRAY=( 'item1' #'commented item' 'item3' 'item4' )...