Holy crap, I never knew about this before, but this is awesome.
The command is drush uli
It's got options,
name
for the usernameuri
to specify the url of the site (our weird setup requires us to specify the url of our site)
// File js/mymodule--feature.js | |
(function ($) { | |
Drupal.behaviors.mymodule__feature = { | |
attach: function (context, drupalSettings) { | |
// Use once to avoid tu call multiple times a js. | |
$(document).once('feature').on('click', '.button--feature', (function (event) { | |
event.preventDefault(); | |
if (typeof drupalSettings.mymodule.feature.id != 'undefined') { | |
console.log('Your great logic goes here and will NOT be called multiple times'); | |
} |
--- a/filefield_paths.module 2022-08-08 16:04:37.000000000 -0400 | |
+++ b/filefield_paths.module 2022-08-08 19:23:33.000000000 -0400 | |
@@ -212,11 +212,13 @@ | |
// Force all File (Field) Paths uploads to go to the temporary file system | |
// prior to being processed. | |
if (isset($element['#type']) && $element['#type'] == 'managed_file') { | |
- $settings = $context['items']->getFieldDefinition() | |
- ->getThirdPartySettings('filefield_paths'); | |
- if (isset($settings['enabled']) && $settings['enabled']) { | |
- $element['#upload_location'] = \Drupal::config('filefield_paths.settings') |
Places a UniqueField constraint on the bibcite_doi field
Needs the Bibliography & Citation module to work
aws logs start-query \ | |
--profile clientProfile \ | |
--log-group-name MY-LOG_GROUP \ | |
--start-time `date -v-30M "+%s"` \ | |
--end-time `date "+%s"` \ | |
--query-string 'fields @message | filter @message like /my query/' |
<html> | |
<table> | |
<tbody> | |
<tr> | |
<td><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAA1JREFUGFdjuHDx2X8ACIMDh8l8Vc8AAAAASUVORK5CYII=" width="33" height="33"></td> | |
<td>6</td><td>#d0d1e6</td></tr> | |
<tr> | |
<td> | |
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAA1JREFUGFdjWLb39n8AB4kDPi2Q/CYAAAAASUVORK5CYII=" width="33" height="33"></td> | |
<td>5</td><td>#a6bddb</td></tr> |
Bash script to generate world map svgs, with a given grouping highlighted by color. Since this is for groupings and not detail, the script removes Antarctica, subs in French Guiana as a unit removed from France, and uses the map-units version of France.
We loop over uniques for properties: CONTINENT SUBREGION REGION_WB REGION_UN
GeoJSON sources via: natural-earth-vector
Clues and Facilities: Mike Bostock's command line cartography series. You'll need to install the nodejs packages including:
npm install -g d3-geo-projection
Source: https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_50m_admin_0_countries.geojson
Clues: https://medium.com/@mbostock/command-line-cartography-part-2-c3a82c5c0f3
Example:
ndjson-split 'd.features' \
< ne_50m_admin_0_countries.geojson \
| ndjson-filter 'd.properties.SUBREGION == "South-Eastern Asia" || d.properties.SUBREGION == "Southern Asia"' \
Source: https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_50m_admin_0_countries.geojson Clues: https://medium.com/@mbostock/command-line-cartography-part-2-c3a82c5c0f3 Example:
ndjson-split 'd.features' < ne_50m_admin_0_countries.geojson \
| ndjson-filter 'd.properties.SUBREGION == "South-Eastern Asia" || d.properties.SUBREGION == "Southern Asia" || d.properties.SUBREGION == "Northern Africa" || d.properties.REGION_WB == "Sub-Saharan Africa" || d.properties.REGION_WB == "Oceania" || d.properties.REGION_WB == "Latin America & Caribbean"' \
| ndjson-filter 'd.properties = {ISO_A3: d.properties.ISO_A3, ISO_N3: d.properties.ISO_N3, REGION_UN: d.properties.REGION_UN, SUBREGION: d.properties.SUBREGION, NAME: d.properties.GEOUNIT, REGION_WB: d.properties.REGION_WB, CONTINENT: d.properties.CONTINENT }' \
> ne50_studyarea.ndjson