Skip to main content
31
results
Andrew Fletcher
The error you're encountering indicates an issue with the ffi gem during the CocoaPods update. The error message suggests trying to run the gem pristine command to fix it. Using terminal - run the following command: gem pristine ffi --version 1.16.3This command will attempt to restore the ffi gem to its pristine state, resolving any issues with its extensions. After running this command, try running pod update again pod updateIf you encounter any permission issues, you might need to use...
Andrew Fletcher
Lando is a local development environment tool, and it might not directly support...
Andrew Fletcher
Lando is a development environment tool that makes it easier to set up and...
Andrew Fletcher
Create a Lando setup running Drupal 10. The command you provided appears to be a...
Andrew Fletcher
Creating a foreach loop such as  var maxDigits: Int = 5 private var...
Andrew Fletcher
This is a relatively quick process, beginning with dropping the database tables lando drush sql-drop -yImport a MySQL database lando db-import {filename} such as lando db-import riverdev.2022-10-03-1664769553.sql.gzRebuild cache lando drush crFinally, export your config lando drush cex  If you know your MySQL filename, you can always chain these commands: lando drush sql-drop -y && lando db-import riverdev.2022-10-03-1664769553.sql.gz && lando drush cr &&...
Andrew Fletcher
Import a database lando db-import doj.sqlEnter the MySQL database lando mysql...
Andrew Fletcher
The challenge I was facing, I had written a script to scan barcodes and use...
Andrew Fletcher
In Xcode and executing a run command, the response error was: { "name":...
Andrew Fletcher
Working hard developing your app and now it's time to let others begin testing...
Andrew Fletcher
 ERROR Error: Uncaught (in promise): TypeError: undefined is not an object (evaluating 'ce.imageURL')   Tools Platform / package Version Xcode 13.2.1 Typescript / Angular 6 Cordova   Capacitor     The code where the error was being generated if (!this.imageCollection) { return baseUrl + req; } let image = this.imageCollection.find(obj => obj.fishID === fishId); if (image.imageURL) { return image.imageURL; } else { return baseUrl +...
Andrew Fletcher
In Xcode attempting to build or run an app, I receiving a framework...
Andrew Fletcher
While loading an ionic project, in Xcode when performing a run routine I had the...
Andrew Fletcher
As a web developer, you will most likely need to run local copies of a bunch of...
Andrew Fletcher
On your local OSX environment using Terminal or iTerm you can create a MySQL...