All Articles
[FIXED]: Drupal 9.5 [warning] Attempting to re-run cron while it is already running.
I have seen this error, which has prevented cron runs for over a month.
You'd have to resolve the underlying error by running the cron from drush and fixing whatever problem it reports:
./vendor/bin/drush core:cronNote that not have the base_url set is NOT a problem, you don't need to set it in Drupal 8 9 or 10, and you can run it via drush like so:
On Iterative Sprint Cycles
First published on 2022-12-19
An update on recent GitHub security incident
Recently, github.com fell victim to a hacking attack. What started as an attack on coinbase, became an internet-wide attack that exposed sensitive data in some 23,000 repositories.
How to push to two github remotes at once
For the purposes of backup and resilience, it may be useful to maintain two identical git remotes for a repo. Maybe one is on github, and another one is on a machine on another cloud. Then, you may want to automate pushing every change to the two repos at once.
git remote set-url --push origin git@github.com:<username>/<reponame>.git
git remote set-url --add --push origin git@git:/home/git/repos/
git push origin
Push to multiple remotes. Add the hosted Git server as a remote:
How to remove all .DS_Store, ._* files in a folder
If you want to recursively delete all .DS_Store files in a subfolder, you can run the following commands. First, see what is being deleted:
find . -name '.DS_Store' -type f
Then, delete those files:
find . -name '.DS_Store' -type f -delete
And also:
find . -name "\._*" -exec rm {} \;
.^.
[FIXED]: Is the youtube playback speed control broken?
Hello everyone. I recently noticed that sometimes on youtube, I would be unable to change the playback speed from normal (x1) to anything else. It would just say "custom" or "normal", with no way of clicking out of normal, or adjusting it to e.g. 1.5 or 1.75 times the speed.
How to write a bug report
When writing a bug report, please include a brief, relevant title.