Skip to content

Instantly share code, notes, and snippets.

View john-doherty's full-sized avatar
🎯
Focusing

John Doherty john-doherty

🎯
Focusing
View GitHub Profile
@john-doherty
john-doherty / add-query-params-to-url.js
Last active January 18, 2022 23:25
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' })
# Disable DPMS.
xset s off # don't activate screensaver
xset -dpms # disable DPMS (Energy Star) features.
xset s noblank # don't blank the video device
# Create a RAM disk to use as a FIFO for streaming.
if [ ! -d /iwk ]; then
mkdir /tmp/rdisk
fi
mount -t tmpfs -o size=25M tmsfs /tmp/rdisk
@john-doherty
john-doherty / url-to-filename.js
Last active February 26, 2023 10:31
Convert a URL into a readable filename safe string
/**
* Convert a URL into a readable filename safe string
* - sort query params
* - remove protocol
* - replace / with !
* - replace ? with !!
* - replace remaining illegal characters with -
* @example
* INPUT: convertUrlToReadableFilename('https://orcascan.com/guides/how-to-scan-barcodes-into-microsoft-excel-59fd67f9');
@john-doherty
john-doherty / javascript-promises-in-sequence.js
Last active March 11, 2023 19:20
Similar to Promise.all but executes promises in sequence
/**
* Executes an array of functions that return a promise in sequence
* @example
* promisesInSequence([
* function() { return Promise.resolve(1); }
* function() { return Promise.resolve(2); },
* function() { return Promise.resolve(3); }
* ])
* .then(function(result) {
* console.log(result.join(',')); // output = 1,2,3
@john-doherty
john-doherty / puppeteer-waitforevent.js
Last active March 28, 2023 07:09
puppeteer wait for an event to fire
/**
* Wait for the browser to fire an event (including custom events)
* @param {string} eventName - Event name
* @param {integer} seconds - number of seconds to wait.
* @returns {Promise} resolves when event fires or timeout is reached
*/
async function waitForEvent(eventName, seconds) {
seconds = seconds || 30;
@john-doherty
john-doherty / javascript-wait-for-events.js
Last active May 31, 2023 11:19
Wait for multiple JavaScript events to fire
/**
* Waits for multiple DOM events to fire
* @example
* waitForEvents(window, [
* 'DOMContentLoaded',
* 'online'
* ])
* .then(function(result) {
* // do stuff
@john-doherty
john-doherty / cordova-file-storage.js
Last active August 2, 2023 10:32
An easy way to read/write files in Cordova
var fileStorage = {
/**
* Saves a file on the device
* @param {string} name - filename (can include sub folders)
* @param {string} data - file contents
* @param {boolean} useSandbox - uses protected sandbox if true, otherwise external (default false)
* @returns {Promise} executes .then with saved file path as first param
*/
write: function (name, data, useSandbox) {
@john-doherty
john-doherty / local-storage-helper.js
Last active March 10, 2024 19:41
localStorage helper (takes care of casting types)
/**
* local storage helper (takes care of casting types)
*/
var localStorageHelper = {
/**
* Check if item exists in local storage.
* @param {string} key - variable name
* @return {boolean} true if key exists, otherwise false
*/
@john-doherty
john-doherty / javascript-trim-svg-whitespace.js
Created October 21, 2016 13:39
Trim whitespace from SVG elements
function trimSvgWhitespace() {
// get all SVG objects in the DOM
var svgs = document.getElementsByTagName("svg");
// go through each one and add a viewbox that ensures all children are visible
for (var i=0, l=svgs.length; i<l; i++) {
var svg = svgs[i],
box = svg.getBBox(), // <- get the visual boundary required to view all children
@john-doherty
john-doherty / disable-mac-swipe-navigation.js
Created February 12, 2018 11:42
Disable Mac swipe navigation in pure JavaScript
(function (window) {
if ((/Macintosh/gi).test(navigator.userAgent) && (/Chrome|Safari|Firefox/gi).test(navigator.userAgent)) {
history.pushState(null, null, location.href);
window.onpopstate = function(event) {
history.go(1);
};
}