Skip to content

Instantly share code, notes, and snippets.

View yorkshire-pudding's full-sized avatar

Martin Price yorkshire-pudding

View GitHub Profile
@yorkshire-pudding
yorkshire-pudding / add-query-params-to-url.js
Created February 18, 2025 09:23 — forked from john-doherty/add-query-params-to-url.js
Add query string parameters to a URL in JavaScript (works with browser/node, merges duplicates and works with absolute and relative URLs)
/**
* Adds query params to existing URLs (inc merging duplicates)
* @param {string} url - src URL to modify
* @param {object} params - key/value object of params to add
* @example
* // returns /guides?tag=api
* addQueryParamsToUrl('/guides?tag=hardware', { tag:'api' })
* @example
* // returns https://orcascan.com/guides?tag=api
* addQueryParamsToUrl('https://orcascan.com/guides?tag=hardware', { tag: 'api' })
@yorkshire-pudding
yorkshire-pudding / audio-book-reader.md
Created February 14, 2024 16:07 — forked from wkjagt/audio-book-reader.md
How I built an audio book reader for my nearly blind grandfather

#How I built an audio book reader for my nearly blind grandfather

Tweet this - Follow me

Last year, when visiting my family back home in Holland, I also stopped by my grand-parents. My grand-father, now 93 years old, had always been a very active man. However, during the presceding couple of months, he'd gone almost completely blind and now spent his days sitting in a chair. Trying to think of something for him to do, I suggested he try out audio books. After finally convincing him -- he said audio books were for sad old people -- that listening to a well performed recording is actually a wonderful experience, I realized the problem of this idea.

####The problem with audio devices and the newly blind. After my first impulse to jump up and go buy him an

@yorkshire-pudding
yorkshire-pudding / php_file.php
Last active July 4, 2023 15:30 — forked from theunraveler/php_file.php
DO NOT DELETE: Testing for Gist Filter Backdrop CMS module.
<?php
echo 'Hello!';
?>
@yorkshire-pudding
yorkshire-pudding / startdrop.sh
Created November 24, 2021 15:59 — forked from klonos/startdrop.sh
Create a Backdrop instance using Lando.
ISSUE=$1
PR=$2
PHP=$3
INSTALL=$4
if [[ $(basename $PWD) = "docroot" ]]; then
echo "You are already in a docroot!!! Moving up one level..."
cd ..
fi