developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
89
results
Andrew Fletcher
•
If you edit a Drupal contrib module, the next time the module is updated those edits will be wiped. So they are not lost there are a couple of options for you to consider:
Are the edits worth the contributing to the community? Yes, you can fork the repo and add the changes for the developer(s) to review; or
Create a patch file
Creating a patch file
The process:
Add the files you want to see in the diff. Remembering to only add untracked files.
git stash && git...
Andrew Fletcher
•
Changing git push from passphrase? There are several ways to tackle this...
Andrew Fletcher
•
Working in Drupal 9.x, I was loading images via the Media module. Below 1...
Andrew Fletcher
•
Since upgrading to Drupal 9.3.0 have you come across this error?
Edit...
Andrew Fletcher
•
It is really simple to switch users in Ubuntu or any other Linux distribution...
Andrew Fletcher
•
Whilst working through an edit person view in a SwiftUI project, I experienced the following two errors:
Return from initializer without initializing all stored properties
Cannot convert value of type 'String' to expected argument type 'Binding<String?>'
Many of the examples I was finding through Google were about showing one variable solutions. However, if you are like me - my situation didn't fall in to this category. As I have indicated, the view I was working on was a...
Andrew Fletcher
•
When managing a navigation title in Swift, you will have trodden down the path....
Andrew Fletcher
•
Struggling to hide the SwiftUI separators in a List or Form?
The...
Andrew Fletcher
•
Core Data - customising our data model
When you are using Core Data, and let's...
Andrew Fletcher
•
In SwiftUI, has made creating a list of item very easy. If...
Andrew Fletcher
•
I attempted the run command and the response I had was succeeded, but then nothing else happened!
I usually have this problem when a dependency is not updated.
The following steps usually works for me... note in bold are the Terminal commands such as (rm -rf Podfile.lock):
Delete your Podfile.lock - using Terminal use the command rm -rf Podfile.lock
Delete your Pods folder - rm -rf Pods
Delete your .xcworkspace - rm -f .xcworkspace
Pod install
Clear your project - shift + command + k...
Andrew Fletcher
•
Working with buttons
To begin, what is a button in SwiftUI?
struct MainView:...
Andrew Fletcher
•
When those simple annoyances are too frustrating! Yes we have all been...
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...