Skip to content

Instantly share code, notes, and snippets.

View rlnorthcutt's full-sized avatar
🇺🇦

Ron Northcutt rlnorthcutt

🇺🇦
  • Appsmith
  • Austin, TX
View GitHub Profile
@rlnorthcutt
rlnorthcutt / test.js
Last active November 2, 2023 01:36
Test file for JSDocLite
/**
* Sample JS Library for testing JSDoc parsing.
* @module SampleJSLibrary
*/
/**
* A constant value representing the library version.
* @const {string} VERSION
* @desc The version of the library.
*/
@rlnorthcutt
rlnorthcutt / utility.js
Created September 14, 2023 14:17
Test of utility library without export
/**
* Get unique values from an array of objects based on a specified field.
*
* @param {Array} data - The array of objects to extract unique values from.
* @param {string} field - The field in each object to extract unique values from.
* @returns {Array} An array containing unique values from the specified field.
*/
function getUniqueValues(data, field) {
// Check if 'data' is an array and 'field' is a string
if (!Array.isArray(data) || typeof field !== 'string') {
<?php
use Drupal\Component\Utility\NestedArray;
if (empty($extra[0])) {
throw new \Exception("Please supply the id of the node you want to export to CDF.");
}
$node = \Drupal::entityTypeManager()->getStorage('node')->load($extra[0]);
$wrapper = new \Drupal\depcalc\DependentEntityWrapper($node);
Easily create a modal link in Drupal
p><a class="use-ajax" data-dialog-options="{&quot;width&quot;:800}" data-dialog-type="modal" href="/node/2">See node 2</a></p>
source: https://befused.com/drupal/modal
@rlnorthcutt
rlnorthcutt / gist:dff8e7df2d6336089cd2234b0109e1a5
Created July 9, 2018 17:08
Drupal 8 Media Revision Page - Config
uuid: f9c22d2e-c285-4fb9-b5a0-5dc0e492248e
langcode: en
status: true
dependencies:
module:
- media
- user
id: media_revisions
label: 'Media revisions'
module: views
Verifying my Blockstack ID is secured with the address 12B9JABVzJob3JLcgAkp1KaEpJzqrjdLiE https://explorer.blockstack.org/address/12B9JABVzJob3JLcgAkp1KaEpJzqrjdLiE
#!/bin/bash
skipped=()
# Ask user which file to use for aliases, or if to run it straight
echo "Which file contains the list of the sites that you want URLs for?"
read alias_command
if test -f $alias_command; then
oldIFS="$IFS"
@rlnorthcutt
rlnorthcutt / restws_check.sh
Created July 14, 2016 13:32
These two shell scripts work to update your sites that are running an insecure version of RestWS. It should work for any Drush enabled system, but is created for the Acquia Cloud.
#!/bin/bash
# Setup array variables
d8_sites=()
d7_sites=()
d7_restws=()
error_sites=()
# Ask user which file to use for aliases, or if to run it straight
echo "Which file contains the list of aliases to check?"
<!-- No PHP in the template, even though it has the PHP extension on the file. -->
<div class={{ classes }} pod">
<div class="pod--inner">
<h3>{{ title }}</h3>
{{ image }}
<p>{{ promo }}</p>
{{ link }}
<p><small>{{ terms }}</small></p>
</div>
</div>
api = 2
core = 7.x
projects[] = "drupal"
projects[sprout][type] = profile
projects[sprout][download][type] = "git"
projects[sprout][download][url] = "http://git.drupal.org/project/sprout.git"