Fix startTime for webpack watcher
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls
Sequentially divides a period of time into multiple segments of specified duration, the last segment may be of less than the specified duration. Time periods do not contain end times, [startTime, endTime)
Convert the result of `process.hrtime.bigint()` to seconds, milliseconds, nanoseconds
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls
Get running processes
``` ts-node main.ts \ --account SBondMDrcV3K4kxZR1HNVT7osZxAHVHgYXL5Ze1oMUv \ --startTime $START_UNIX_TIME_IN_SECONDS \ --endTime $END_UNIX_TIME_IN_SECONDS \ --filter "ABC" \ --url "https://mainnet.helius-rpc.com/?api-key=XXX" ```
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls
A parser to extract provider, video id, starttime and others from YouTube, Vimeo, Coursera ... urls
[](https://coveralls.io/github/makinoy/libs-dogstatsd)
Stitches video clips on top of another clip using ffmpeg
NodeJS Parser for SubRip subtitles
Recalculating the StartTime of list itens
Exposes node v8 garbage collection stats
Several helper functions when working with native promises
navigator.mediaDevices.getUserMedia + MediaRecorder create WEBM files without duration metadata. This library appends missing metadata section right to the file blob.
Node-Red plugin for rewinding and replaying recorded messages Simple daily log is recorded and either entire log can be replayed, or specific intervals. When the node isn't playing back, it is recording ## Start Message Both/Either `startTime` and `stopTi
No description provided.
Extracts video id, starttime and others from a YouTube url. Fork of Julian Hangstörfer's js-video-url-parser.
`timers/promises` for client and server.
Enables Lambdas to return responses with Server-Timing Header allowing to to pass request-specific timings from the backend to the browser.
Recalculating the StartTime of list itens
European Data Format (EDF/EDF+) utilities to read and write EDF files, EDF+ files, XML files, JSON files.
一个歌词解析/生成模块,着重于歌词内容解析,支持多种格式
Matrix Differential Equation Solver using GPUs, CPUs, and FPGAs via CUDA, OpenCL, and oneAPI
Generic HTTP API log collector: polls APIs and emits NDJSON to stdout
Work with native sol types while ensuring they are being deserialised into or serialised from non-hex types.
High-performance WASM renderer for graphical subtitles (PGS and VobSub)
A rust sdk for interacting with the aori api.
Set of I/O-free coroutines to manage timers
Tool for measuring performance of binaries
Terminal UI for monitoring AI coding agents (Claude Code, Codex, Aider, Cursor, Gemini, Goose, ...) — like top, but for agents.
CLI tool to provide access to Amber Energy's customer REST API
modern and simple, yet efficient backup solution
Instrument startup time of Ruby applications
Lazy pp json responses. ### JSON#pretty_generate ```ruby example_json = "[[0,1395671860.99505,2.50339508056641e-05],{"alloc_count":136,"starttime":1395671856,"uptime":4,"version":"4.0.0","n_queries":0,"cache_hit_rate":0.0,"command_version":1,"default_command_version":1,"max_command_version":2}]" puts JSON.pretty_generate(JSON.parse(example_json)) #=> # [ # [ # 0, # 1395671860.99505, # 2.50339508056641e-05 # ], # { # "alloc_count": 136, # "starttime": 1395671856, # "uptime": 4, # "version": "4.0.0", # "n_queries": 0, # "cache_hit_rate": 0.0, # "command_version": 1, # "default_command_version": 1, # "max_command_version": 2 # } # ] ``` ### lazy-pp-json ```ruby example_json = "[[0,1395671860.99505,2.50339508056641e-05],{"alloc_count":136,"starttime":1395671856,"uptime":4,"version":"4.0.0","n_queries":0,"cache_hit_rate":0.0,"command_version":1,"default_command_version":1,"max_command_version":2}]" pp Lazy::PP::JSON.new(example_json) #=> [ [0, 1395671860.99505, 2.50339508056641e-05], { "alloc_count" :136, "starttime" :1395671856, "uptime" :4, "version" :"4.0.0", "n_queries" :0, "cache_hit_rate" :0.0, "command_version" :1, "default_command_version":1, "max_command_version" :2 } ] ```