Skip to content

Instantly share code, notes, and snippets.

View rlnorthcutt's full-sized avatar
🇺🇦

Ron Northcutt rlnorthcutt

🇺🇦
  • Appsmith
  • Austin, TX
View GitHub Profile
<!-- 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>
@rlnorthcutt
rlnorthcutt / gist:1e3a2fb5a5770ec338fb
Created November 14, 2014 18:46
onename verification
Verifying that +rlnorthcutt is my openname (Bitcoin username). https://onename.io/rlnorthcutt

Keybase proof

I hereby claim:

  • I am rlnorthcutt on github.
  • I am rlnorthcutt (https://keybase.io/rlnorthcutt) on keybase.
  • I have a public key whose fingerprint is EC19 9FA3 4BB6 741D EE96 8EC5 1BFE 51B3 A214 5B36

To claim this, I am signing this object:

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"
/**
* Implements hook_form_alter().
*/
function MYMODULE_form_alter(&$form, &$form_state, $form_id) {
// If you have the Devel module turned on, use this to inspect the form array
// You can also use the form id to select a specific node type (like "article_node_form")
// dpm($form);
// dpm($form_id);
// The isset() here is just to prevent PHP notices for forms where its not present
#!/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"
Verifying my Blockstack ID is secured with the address 12B9JABVzJob3JLcgAkp1KaEpJzqrjdLiE https://explorer.blockstack.org/address/12B9JABVzJob3JLcgAkp1KaEpJzqrjdLiE
@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
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
<?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);