Skip to main content
15
results
Andrew Fletcher
Like many devs at the moment, looking for log4j2 on your server... how to do? First I used the command find / -name log4j2.xml -type fWhich in turn produced the following results /opt/solr-8.5.2/server/resources/log4j2.xml /var/solr/log4j2.xml  Version Ok, so log4j2 exists on the server the client is using... in Solr.  How about determining the version number? The version here matters as 2.15.0 is good to go.  To find the version use sudo find / -name 'log4j*' The output of...
Andrew Fletcher
Wanting to create a new repository on GitHub, add in a few of the available...
Andrew Fletcher
The purple warning notification of annoyance recently came my way!  I...
Andrew Fletcher
I'm currently working on a project that requires login, register, forget...
Andrew Fletcher
iOS localization on the fly If you have added languages to your app......
Andrew Fletcher
Updating Realm and RealmSwift from 5.5.x to 10.0.0 brought in the following error  RealmSwift 10.1: framework not found realm-syncThe greatest clue I came across to solving this issue was on the Realm GitHub issues page for realm-sync error.  However, updating Cocopods wasn't the only step required to correct this issue.  The steps I took were: Update Cocopods to v1.10.0 using sudo gem install cocoapods Deintegrate all of your pods pod deintegrate Install the pods from the...
Andrew Fletcher
After creating a new view with a @Binding string as follows struct EditRival:...
Andrew Fletcher
What to do when you want to filter a Realm object, using NSPredicate in...
Andrew Fletcher
Today while in Terminal, I ran a regular script pod update.  However, this...
Andrew Fletcher
I'm going to take you on a journey about adding a gradient tint to a...
Andrew Fletcher
Creating a new SwiftUI project is a quick process.  There are already thousands of sites outlining how to do these steps.  Rather than repeat this steps at the top of each article, we will refer to this article to get you across the line if you don't know or need a refresher. Step 1 Open Xcode and either click Create a new Xcode project in Xcode’s startup window, or choose File > New > Project. Step 2 In the template selector, select iOS as the platform,...
Andrew Fletcher
How to apply a gradient tint over a background image? Set the background...
Andrew Fletcher
For detailed notes regarding how to add custom fonts to your iOS app see...
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....