Skip to content

Instantly share code, notes, and snippets.

@a-laughlin
a-laughlin / .gitignore
Last active December 14, 2023 08:19
Leaf Query Factories, Examples, and Usage
node_modules
package-lock.json
@a-laughlin
a-laughlin / workday_automation.js
Last active November 2, 2023 17:46
Automating Workday Resume Data Entry
javascript:(async ()=>{
const positions = [
{
company:'Slalom Build (Consulting)',
title:'Lead/Principal Engineer',
fromDate:'01/2023',
toDate:new Date().toLocaleDateString('en-US', { month: '2-digit', year: 'numeric' }),
description:
`- Architecting and building greenfield SaaS app infrastructure and initial features for diverse clients and tech stacks
- Leading a team of 5 engineers
@a-laughlin
a-laughlin / architecture_graph_evaluation.js
Last active December 31, 2022 20:50
Architecture Graph Tree Evaluation
/**
@name constructTree
@description Creates vertex and in-edge hashmaps given a topology
@example
assert.deepStrictEqual(
constructTree([ { breadth: 2 }, { breadth: 1 } ]),
{
vertices: {
'0': { id: '0', depth: 1 }, 
@a-laughlin
a-laughlin / markdown-details-collapsible.md
Last active May 8, 2021 22:21 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

A collapsible section containing markdown

Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets
// purpose: tools to make replacements from deeply nested objects to imports for large codebase migrations
// usage:
// https://astexplorer.net/#/gist/b8ff1963328449b8063253147c04a462/111b0113648c8f800e8fac56d54e49006c3c2c2b
const isObjectPath = p =>
p.type === 'MemberExpression' ||
p.parentPath.type === 'MemberExpression' ||
(p.parentPath.type === 'CallExpression' && p.parentPath.parentPath.type === 'MemberExpression');
// loops over a path, starting at base object, up to the first function call
const eachPath = fn => p => {
@a-laughlin
a-laughlin / component-driven-design-notes.txt
Created January 21, 2021 01:20
Component Driven Design Notes
Component Driven Design Notes
Basic concepts?
Bottom up from small components
Benefits?
Efficiency (Faster development)
Testability (More)
Enables component library/explorers
One separation of concerns (Separation of concerns)
Different Separations of Concerns?
. Page-Based (Before MVC)
@a-laughlin
a-laughlin / machine.js
Last active January 13, 2021 19:21
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@a-laughlin
a-laughlin / testing_notes.txt
Last active October 9, 2023 20:05
Testing Notes
Testing Notes
Tradeoffs (high-level):
ref? https://kentcdodds.com/blog/unit-vs-integration-vs-e2e-tests#cost-%EF%BF%A0-heap--
. Cost: Time to write/maintain/fix/run tests in Dev/Dev
. Feedback Speed: Longer time to get feedback.
. Confidence: How confident do we feel that passing tests mean users will actually experience the same behavior in production.
. Confidence vs Cost/Feedback Speed
Accessibility concerns to test?
. Flows, like multiple keyboard navigation steps
. Screen reader testing
sender chooses whether to communicate
(noise|barriers)
sender chooses intended receivers (experience graph for each)
(noise|barriers) barrier: architecture prevents
for each intended receiver:
sender chooses concepts to communicate (noise|barriers) (experience graph for each)
sender maps own concepts to receiver concepts (noise|barriers)
sender encodes receiver concepts to language
syntax: (noise|barriers)
semantics: (noise|barriers)
@a-laughlin
a-laughlin / js_module_notes.txt
Last active September 24, 2020 01:34
js module notes for team dojo
different kinds of modules through JS history
name year sync async encapsulatable immutable dependency defs dep resolution code example
-------
namespaces 2000: yes no no no none manual var App = {};
revealing module 2005: yes no yes no global variables manual var myModule = (function($){return {fetch:$.get}})(jQuery)
CommonJS 2009: yes no yes yes file names graph module.exports={foo:'bar'} const foo = require('foo').foo
AMD 2009: no yes yes no file names graph define(['jQuery','Application'],($,App)=>{}), require('foo',(foo)=>{...use foo...})
ES modules 2016: yes yes yes yes sub-file parts graph import {foo} from 'foo', export const foo='bar'; import('foo').then((module)=>module.foo)