developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
492
results
Andrew Fletcher
•
An approach to generating a backup server is using a shell script. A script can define directories to backup, and pass those directories as arguments to the tar utility, which creates an archive file. The archive file can then be moved or copied to another location.
Example Shell Script
#!/bin/bash
#
# Backup script
#
# NAME: daily-backup.sh
# PATH: /mnt/e/bin
# DESC: Backup scripts, documents and configuration files to .tar
#
# What to backup
# backup_files="/home...
Andrew Fletcher
•
This article works through the steps to update dependencies in package.json...
Andrew Fletcher
•
Finding the issue with a server 500 error
The Nginx error logs are showing too...
Andrew Fletcher
•
Focusing on the ckan.ini file (/etc/ckan/default/ckan.ini). When I run the...
Andrew Fletcher
•
Following the instructions on CKAN DataStore with a little...
Andrew Fletcher
•
Supervisor running as root error when running the command
sudo service supervisor statusResponse error
604 CRIT Server 'unix_http_server' running without any HTTP authentication checkingCheck the supervisord.conf file in the directory
cd /etc/supervisor/The file content was
; supervisor config file
[unix_http_server]
file=/var/run/supervisor.sock ; (the path to the socket file)
chmod=0700 ; sockef file mode (default...
Andrew Fletcher
•
Supervisor running as root error when running the command
sudo service...
Andrew Fletcher
•
Listen in on the ports being used on your server. To do so, run the...
Andrew Fletcher
•
Error with Nginx
When running an Nginx test, the following response was being...
Andrew Fletcher
•
The following the CKAN source install docs from start to finish including solr....
Andrew Fletcher
•
What I'm seeing in Android Studio when attempting to run the emulator?
Launching 'app' on Pixel 5 API 33.
Install successfully finished in 153 ms.
$ adb shell am start -n "{project}.app.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Timed out waiting for process (com.{project}.app) to appear on Pixel_5_API_33 [emulator-5554].As an error, this gives no intel. So go to logcat tab and change the 3rd dropdown to error what do you see?
For me, I get...
Andrew Fletcher
•
Explain public, private, protected functions and variables inside a class in...
Andrew Fletcher
•
Assuming there is a new field requiring a change on a content type. How do you...
Andrew Fletcher
•
Replicate
Replicate the bug in your local environment.
Check
Check - do you have...
Andrew Fletcher
•
2 or 3 approaches to build a homepage or landing page through Drupal
Please...