Library for sampling of random values from a discrete probability distribution, using the Walker-Vose alias method.
A Node.js module for efficient sampling from a discrete probability distribution using the alias method.
Library for sampling of random values from a discrete probability distribution, using the Walker-Vose alias method.
Composite samplers for OpenTelemetry tracing
Official Coralogix SDK for browsers
Jaeger binding for OpenTracing API for Node.js
Webpack provides a really detailed `webpack.debug.ProfilingPlugin`, but it only does CPU Profiling. There are more to performance tuning with Webpack than CPU profile. This plugin provides heap sample information to show where memory is allocated after a
Model Context Protocol implementation for TypeScript
Poisson disk sampling in arbitrary dimensions
TypeScript definitions for poisson-disk-sampling
Web benchmark runner
Webpack loader that resolves relative paths in url() statements based on the original source file
Reactive dataflow processing.
Define and resolve aliases for bundle dependencies
No description provided.
Heap dump, sample profiler and allocation timeline generator for Node.
Replace alias paths with relative paths after typescript compilation.
Fast HTTP benchmarking tool written in Node.js
Large collection of predicates.
A simple abort controller library
a simple Node behavior import resolution plugin for eslint-plugin-import, supporting module alias.
Create aliases of directories and register custom module paths
Core observability package for Mastra - includes tracing and scoring features
Write Once, Observe Anywhere
Ruby implementation of Walker's Alias Method for quickly sampling objects with a given probability distribution
Vose: Sample random values from a discrete probability distribution.
l is a frontend for ls and less, invoking either depending on if it is fed directories or files. This makes navigating a shell a bit smoother and easier, as it is common to switch between the two commands while poking around the file system (see Sample session). The program filters the switches for ls and less, keeping the most useful and common for each. Sample session: user@box:~ l Documents Music Projects user@box:~ l Documents/ Personal some_doc.pdf example.txt Work user@box:~ l Documents/example.txt This is just an example Documents/example.txt (END) user@box:~ l Documents/Work/ proposal.odt document.pdf user@box:~ l -l Documents/Work/ -rw-r--r-- 1 user user 32974 2006-03-31 12:29 proposal.odt -rw-r--r-- 1 user user 451726 2006-04-13 10:33 document.pdf Aliases: Most aliases for ls as used in .bashrc will work as usual if ls is replaced with l, but there's more: you can combine switches for both ls and less in your alias and l will filter out the inappropriate ones. The following will set ll to use long lists for directories and to ignore case for searches when displaying files: alias ll='l -I -l' Because ls and less can't safely share the same switches, there are a few cases where a workaround is needed: For ls: -i doesn't work, use --inode instead -I doesn't work, use --ignore=PATTERN For less: -r and -R doesn't work, use --raw-control-chars instead