Skip to main content
110
results
Andrew Fletcher
This short guide explains to you how to extract/unzip .zip archive files to a specific or different directory in Linux.   Install zip sudo apt-get install zip   Zip a directory Zip your folder: zip -r {filename.zip} {directory}   Unzip  unzip {filename.zip}   Extract zip file to a different directory mkdir -p /tmp/unziped $ unzip {filename.zip} -d...
Andrew Fletcher
I prefer htop over top on my Linux server.  Running a Solr index got...
Andrew Fletcher
The generally accepted answer to a mysqldump is: mysqldump -h [host] -u...
Andrew Fletcher
Wanting to create a new repository on GitHub, add in a few of the available...
Andrew Fletcher
On a git pull from remote dev environment to a staging environment running off...
Andrew Fletcher
I needed the check if a file existed in a directory as the migrate script wasn't recognising the file.  To check if a file exists: FILE={your-directory-path} if test -f "$FILE"; then echo "$FILE exists." fi  If your directory path is /Users/{your name}/Sites/migrate/local_dest_dir/fish/../media/apple-store.png FILE=/Users/{your name}/Sites/migrate/local_dest_dir/fish/../media/apple-store.png if test -f "$FILE"; then echo "$FILE...
Andrew Fletcher
Joining a new company / team there is always a lot of new items to...
Andrew Fletcher
Updating Drupal from 8.7.10 to 8.8.x or 8.9.x has seen a significant change...
Andrew Fletcher
As outlined in an earlier article composer php version, when installing the...
Andrew Fletcher
Whilst working through an edit person view in a SwiftUI project, I experienced...
Andrew Fletcher
When managing a navigation title in Swift, you will have trodden down the path.  Previously you have entered something like .navigationTitle("Title")If you wanted to alter the font used for the navigation area, alter the init() in the view: struct YourView: View { // ... code ... // init() { // Use this if NavigationBarTitle is with large font UINavigationBar.appearance().largeTitleTextAttributes = [.font : UIFont(name: "Georgia-Bold", size: 20)!] } ...
Andrew Fletcher
I had been running a few Centos 6 servers just past their EOL (30th November...
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
Regular expressions (regex) are extremely useful in extracting information from...