Skip to content

Instantly share code, notes, and snippets.

View drwpow's full-sized avatar
🤘

Drew Powers drwpow

🤘
View GitHub Profile
@drwpow
drwpow / history-of-components.md
Last active March 27, 2019 05:29
A timeline of component design thinking, from CSS to web components

It should be noted that each creator was not the sole contributor. But either presented the idea, or became the outspoken advocate for it.

Name Creator(s) Year Notes
BEM Yandex 2006–2010 According to [the site][bem], they claim to have used it internally since 2006. But the public release was in 2010.
OOCSS Nicole Sullivan 2008 ️According to [Nicole Sullivan][nc], code started in 2004 but first talk was in 2008
Sketch 2010 Version 3, introducing Symbols and many other hallmark features, released 2014
SMACSS Jonathan Snook 2011
@drwpow
drwpow / README.md
Last active January 16, 2019 01:14
React fetching data from REST endpoint with 16.7 React hooks

Simple, native React solution for fetching & caching data using hooks. Based on react-hooks-example.

Features

  • < 1KB (not including axios, but that can be easily swapped with fetch or any promise library)
  • Caches requests: will only re-fire if a request parameter has changed
  • Component can be re-rendered; request won’t fire unless necessary

Setup

@drwpow
drwpow / conferences.md
Last active March 10, 2019 04:07
Conferences
@drwpow
drwpow / smooth-scrolling.js
Last active November 2, 2024 03:53
Performant, 60FPS smooth scrolling in Vanilla JavaScript using requestAnimationFrame
/**
* @param {number} yPos Pixels from the top of the screen to scroll to
* @param {number} duration Time of animation in milliseconds
*/
const scrollTo = (yPos, duration = 600) => {
const startY = window.scrollY;
const difference = yPos - startY;
const startTime = performance.now();
const step = () => {
@drwpow
drwpow / babel-types.md
Last active October 28, 2018 19:48
Babel Node Types

Babel Node Types

In learning Babel, I found the learning curve pretty difficult. I made this document to better understand the node types I’d be working with. These are my notes I’ve collected.

Table of Contents

  1. Global
  2. Children
@drwpow
drwpow / laws.md
Last active July 3, 2024 14:57
Laws

A

Acton’s Dictum

“Power tends to corrupt, and absolute power corrupts absolutely. Great men are almost always bad men [...]”

Amara’s Law

“We tend to overestimate the effect of a technology in the short run and underestimate the effect in the long run.”

Amdahl’s Law

The theoretical speedup is limited to at most 20 times the single thread performance (i.e., parallelization has diminishing returns).

const Koa = require('koa');
const serve = require('koa-static');
const { get } = require('koa-route');
const app = new Koa();
app.use(
get('/api/v1/peaks', ctx => {
const data = require('./data/summits.json');
ctx.body = data;
const IronWorker = require('iron_worker');
const worker = new IronWorker.Client({
token: process.env.IRON_TOKEN,
project_id: process.env.IRON_PROJECT_ID,
});
const payload = { first: 'Hello', second: 'World' };
const options = { priority: 1 };
{
"scripts": {
"deploy": "docker build -t $TAG . && docker push $TAG && manifold run -- iron register -e \"MANIFOLD_API_TOKEN=$MANIFOLD_TOKEN\" $TAG"
}
}
const IronWorker = require('iron_worker');
const Logger = require('logdna');
const logger = Logger.setupDefaultLogger(process.env.KEY, {});
// Task
logger.log('Starting job…');
logger.log(`--BEGIN IRONWORKER PAYLOAD--`);
logger.log(IronWorker.params());
logger.log(`--END IRONWORKER PAYLOAD--`);