View field_group-8.x-1.x-2787179-26.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/field_group.libraries.yml b/field_group.libraries.yml | |
index e09631b..2b9a811 100644 | |
--- a/field_group.libraries.yml | |
+++ b/field_group.libraries.yml | |
@@ -11,6 +11,30 @@ field_ui: | |
- core/drupal | |
- core/drupalSettings | |
+details_validation: | |
+ header: false |
View set-up-letsencrypt-acquia-stage.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Script semi-automating the process of adding LetsEncrypt certificates to | |
# serve Acquia staging sites in HTTPS. | |
# See http://blog.dcycle.com/blog/2018-10-05/https-acquia-stage/ | |
# | |
set -e | |
BASE="$PWD" |
View gist:e90e8a30dc73c4df8395
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" -ne "3" ] | |
then | |
echo "Please supply exactly three arguments:" | |
echo "" | |
echo " (1) the database username" | |
echo " (2) the database password, or NOPWD if none" | |
echo " (3) the database name" | |
else | |
if [ "$2" == "NOPWD" ]; then |
View gist:530d846ce9deb97c5af8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<canvas id="myCanvas" width="400" height="400" style="border:1px solid #d3d3d3;"></canvas> | |
<script> | |
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); |
View script.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" -eq "0" ] | |
then | |
echo "Fetches a branch for a given repo, and then adds a link to it on the index" | |
echo "of the given repo." | |
echo "" | |
echo "Usage:" | |
echo "" | |
echo "./fetch-branch.sh -d=/path/to/repo --r=ssh://me@git.example.com/project --b=master" | |
else |