Skip to main content
159
results
Andrew Fletcher
For detailed notes regarding how to add custom fonts to your iOS app see Apple's custom font notes. When using the font programmatically, remember that the font file name most of the time will not be the font name.  For example, I wanted to use SF-Pro-Text-Bold and its font name is SFProText-Bold.  If you want to check the font name, add the following script for family in UIFont.familyNames.sorted() { let names = UIFont.fontNames(forFamilyName: family) print("Family:...
Andrew Fletcher
While the Drupal site has a great outline of the steps to follow, I found we...
Andrew Fletcher
First transfer the drupal-8.8.x.tar.gz file to your directory Via your ssh...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve....
Andrew Fletcher
While I have posted an article about how to POST an image using REST in Drupal 8... the journey there can be slow.  Crawling through the errors to eventually spot the missing link.  For me the how to is as important as the solution. On the journey I did receive the following 404 Not Found error: GuzzleHttp\Exception\ClientException: Client error: `GET https://yourdomain.com/sites/default/files/pictures/imagename01.jpg` resulted in a `404 Not Found` response: <!DOCTYPE...
Andrew Fletcher
In Drupal 8.x hiding the subject line is a quick task. In the admin area of your...
Andrew Fletcher
You have been working hard on getting comments being added (POST) through REST...
Andrew Fletcher
For others that have spent countless hours getting this to work and are...