Jukka Svahn

Results 27 comments of Jukka Svahn

While it would be nice if there was license file (well, there should be one), the built dist files do state that they are licensed under MIT: ```javascript /*! *...

`libs/Responder/responder.min.js` itself requires jQuery, in addition to your callback function. The dependencies you list are not loaded in order; it's asynchronous. As instructed in the readme, you will have to...

This PR fixes #287 [Code checks](https://app.codacy.com/manual/samthomas/magento-2-blog/pullRequest?prid=6394471) failing sucks when its not really the change's issue. It is implenting a mandatory interface and then using the proper public class constant from...

Danpu currently uses locking, that is mutually exclusive with transactions. It locks all tables before it starts taking a backup, which too leads to consistent state of data. Will see...

One (or only) reason I see that is directly caused by the importer, could be new lines. The importer doesn't implement SQL spec, but buffers lines until it runs into...

The clean up is called on shutdown process via destructor method. The only case when it won't be called should be when the process dies on a FATAL error (e.g....

Yeah, it would create slightly smaller files. Like zlib, its optional extension, just not as popular. If PHP just implemented its compressor extensions using interfaces. You could very easily use...

I've started writing compressor implementations that also covers regular plain text files. This then allows using the compressors for actual writing, replacing the two-step process.

Actually disabling foreign_key_checks is also what the C-based mysqldump script (the one that ships with MySQL) does too. Looking at its source, its not able to do anything else than...

@tristanvanbokkem Might not happen at all, actually. There is nothing wrong in how Danpu manages temporary files and does it well. This is mainly only about moving the functionality to...