Skip to content

Instantly share code, notes, and snippets.

@Sleavely
Sleavely / lodash-get.js
Created October 7, 2019 13:33
lodash.get alternative that covers _most_ cases.
// Graciously stolen from lodash's stringToPath
const charCodeOfDot = '.'.charCodeAt(0)
const reEscapeChar = /\\(\\)?/g
const rePropName = RegExp(
// Match anything that isn't a dot or bracket.
'[^.[\\]]+' + '|' +
// Or match property names within brackets.
'\\[(?:' +
// Match a non-string expression.
'([^"\'][^[]*)' + '|' +
import React, { useEffect, useState } from 'react'
import { CartProvider } from "use-cart"
import { LoadCart, SaveCart } from "./cartStorage"
function App() {
return (
<CartProvider initialCart={LoadCart()}>
<SaveCart />
<RestOfApp> ... </RestOfApp>
@Sleavely
Sleavely / download-file.js
Last active August 31, 2022 16:45 — forked from javilobo8/download-file.js
Download files from Lambda with AWS Amplify
await API.get('myCloudApi', '/items', {
responseType: 'blob',
response: true
})
.then((response) => {
const blob = new Blob([response.data], { type: 'application/octet-stream' })
const filename = response.headers['content-disposition'].split('"')[1]
if (typeof window.navigator.msSaveBlob !== 'undefined') {
@Sleavely
Sleavely / jira.sh
Created March 26, 2019 14:42
A bash function for quickly opening tickets in Jira
# put this in your ~/.profile or equivalent
JIRA_HOST="foobar.atlassian.net"
function jira {
# Uppercase the argument
TARGET_TICKET=${TARGET_TICKET^^}
# Inject dash if its not there
TARGET_TICKET=$(echo ${1} | sed -E --expression='s/([A-Z]+)([0-9]+)/\1-\2/g')
@Sleavely
Sleavely / api.js
Last active June 1, 2024 18:33
A helper for running a local webserver against lambda-api
// Require the framework and instantiate it
const api = require('lambda-api')()
// Define a route
api.get('/status', async (req, res) => {
return { status: 'ok' }
})
api.get('/README.md', async (req, res) => {
res.sendFile('./README.md')
@Sleavely
Sleavely / move-tab-new-window.js
Created August 31, 2018 21:09
An IIFE that moves your Chrome tab to a new window. Must be run from an extension with appropriate permissions.
(() => {
const _currentTab = new Promise((resolve) => {
chrome.tabs.query({active: true, currentWindow: true}, (tabs) => {
resolve(tabs[0])
})
});
const _currentWindow = new Promise((resolve) => {
chrome.windows.getCurrent((win) => resolve(win))
});
@Sleavely
Sleavely / JsonpDetector.js
Last active April 4, 2018 11:43
A middleware for automatically converting AdonisJS responses to JSONP
'use strict'
const Config = use('Config')
/**
* JSON-P middleware for AdonisJS 4.1
* https://gist.github.com/Sleavely/da1ac50e1ea614b4171beae7868ec3ed
*/
class JsonpDetector {
async handle ({ request, response }, next) {
@Sleavely
Sleavely / promise-catch-skip.js
Created October 19, 2017 11:41
Simple showcase of how faulty catch() might behave different than you expect.
Promise.resolve(true)
.then(() => {
console.log('First then() was called!');
throw new Error('error!!!');
return true;
})
.catch((err) => {
console.log('First catch() was called');
console.log('Error: ', err);
@Sleavely
Sleavely / dataLayer-observer.js
Created August 15, 2017 11:26
A nifty lil' snippet to wrap around .push() to observe what's being added to dataLayer.
console.log('dataLayer before injection', window.dataLayer);
(function(){
// Safeguard for sites that don't implement dataLayer or that haven't initialized it yet.
window.dataLayer = window.dataLayer || [];
// Keep a reference to the method we're overwriting
var existing_func = window.dataLayer.push;
window.dataLayer.push = function(){
var args = arguments;
Object.keys(args).forEach(function(key){
@Sleavely
Sleavely / 1-callback-hell.js
Last active August 11, 2017 12:14
Callback hell be gone!
// An example in classic callback hell.
// In this example, talkToAPI uses a callback like we're used to
talkToAPI('login', function(err, res){
doStuff(res);
talkToAPI('getUser', function(err, res){
doStuff(res);
talkToAPI('extraData', function(err, res){