Daniel Upshaw

Results 17 comments of Daniel Upshaw

I'm also not familiar with this process and would like to install it. New to this distro/desktop

Thanks for the update! I just want to get it like other alt-tabs that list all the windows/icons, etc at once, and cycles that way. Really hard to use it...

It seems that some streaming servers use this library... Crossfade would be a really nice feature, indeed... Personally it's always been towards the top requirements for an audio player

> I already do that, but it's a hack without parsing the actual log file. You need to anchor the paths to the request field to be somewhat more precise,...

What is a YO HTTP method? Edit: I see what you're saying about that now, like if someone has a malformed UA.. still easy to remedy if we really need...

I can't really see the mouse cursor at all on Windows 10 fullscreen, when in the menus... I think it may be hidden.. I can only navigate by guessing and...

@drkhunter One solution is on this line: https://github.com/TheFox/smtpd/blob/master/src/Client.php#L473 Replace: `$zmail = Message::fromString($this->mail);` With: `$zmail = \Zend\Mime\Message::createFromMessage($this->mail)` Also need to change the method signature here (and in your implementation): https://github.com/TheFox/smtpd/blob/master/src/Server.php#L344 Then...

I gave this a try and it works -- also decodes base64-encoded message parts :)

I ran into the same issue and can confirm that https://github.com/TheFox/network/pull/1 from @aaronschmied fixes it

Just to add some information, I tested including `use TableFinderTrait;` in `MigrationDiffTask.php` If I add a few testing lines to the `templateData()` similar to what's in `MigrationSnapshot.php`: https://github.com/cakephp/migrations/blob/e5a92d961acb3371f6b7649cf9017647d2cb6d9a/src/Shell/Task/MigrationDiffTask.php#L171 ```php /**...