Delay a continuable.
Cache a continuable
Delay a promise a specified amount of time
An efficient queue capable of managing thousands of concurrent animations.
HTTP server mocking and expectations library for Node.js
Create a deferred promise
A utility that allows retrying a function with an exponential delay between attempts.
A Tailwind CSS plugin for creating beautiful animations.
Idea for callbacks as values
Some useful utilities I often need
Timers extensions
turn array of continuable into continuable that invokes them in series
WebDriver Proxy for testing rich clients. It block certain calls until Angular is done updating the page under test.
Smart spinner helper for React, to manage the duration of loading states.
timers module for browserify
Exit your process, gracefully (if possible)
pull-streams and continuables make friends!
Tailwind CSS plugin, add animation-delay CSS property.
Turn an array of continuables into a continuable containing an array
Delay function calls until a set time elapses after the last invocation
continuables in a handy-dandy grab bag, ready to go in case of an emergency.
a simple debounce with no dependencies or crazy defaults
Polyfill for perf_hooks.monitorEventLoopDelay(...)
Turn a hash of continuables into a continuable containing a hash of values
Delayed is a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process millions of background jobs per day. It supports postgres, mysql, and sqlite, and is designed to be Reliable (with co-transactional job enqueues and guaranteed, at-least-once execution), Scalable (with an optimized pickup query and concurrent job execution), Resilient (with built-in retry mechanisms, exponential backoff, and failed job preservation), and Maintainable (with robust instrumentation, continuous monitoring, and priority-based alerting).
abstract_feature_branch is a Ruby gem that provides a unique variation on the Branch by Abstraction Pattern by Paul Hammant and the Feature Toggles Pattern by Martin Fowler to enhance team productivity and improve software fault tolerance. It provides the ability to wrap blocks of code with an abstract feature branch name, and then specify in a configuration file which features to be switched on or off. The goal is to build out upcoming features in the same source code repository branch (i.e. Continuous Integration and Trunk-Based Development), regardless of whether all are completed by the next release date or not, thus increasing team productivity by preventing integration delays. Developers then disable in-progress features until they are ready to be switched on in production, yet enable them locally and in staging environments for in-progress testing. This gives developers the added benefit of being able to switch a feature off after release should big problems arise for a high risk feature. abstract_feature_branch additionally supports Domain Driven Design's pattern of Bounded Contexts by allowing developers to configure context-specific feature files if needed. abstract_feature_branch is one of the simplest and most minimalistic "Feature Flags" Ruby gems out there as it enables you to get started very quickly by simply leveraging YAML files without having to set up a data store if you do not need it (albeit, you also have the option to use Redis as a very fast in-memory data store).