Mark Stralka
Mark Stralka
In a MySQL database, the `id` field type in the `achievement_details` table is `UNSIGNED BIG INT` because the `$table->id();` command generates an unsigned big int field. ~~~php // This generates...
I created a simple proof-of-concept app (Swift 4.1 and p2_OAuth2 version 4.0.1 using a Google OAuth client. When I tap the Login button, it opens Safari and takes me to...
In the sample code, `entrust_root_certification_authority.pem` is used as the Root Certificate Authority file. Is this file readily available somewhere, or do I have to create it from Entrust's certificates? In...
If you click the (i) button on a file, it shows a thumbnail and some information about the file. At the bottom of the view is the Delete/Trashcan button ```swift...
My swift 3.0 app uses [PSPDFKit](https://pspdfkit.com) to render PDF files, so I want to implement a subclass of `PDFSpecificationProvider` that will do this: ```swift class MLPDFSpecificationProvider: PDFSpecificationProvider { public class...
**Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** In PowerPoint, you can create an [Action Button](https://support.microsoft.com/en-us/office/add-commands-to-your-presentation-with-action-buttons-7db2c0f8-5424-4780-93cb-8ac2b6b5f6ce) that will use the "Last...
Sorry for the reformatting this was really only a few changes to fix #159 by changing several instances of: ~~~php if ($this->tenantTokens[$tenantKey] == null) { ~~~ to ~~~php if (!isset($this->tenantTokens[$tenantKey])...
There was a space in the filename before `.cache`, so the image was never being found.
I need to unzip files that are regular gzip files - not tar.gz or tgz. Can gzip and gunzip work with this library or do I need to create an...