command-t style approximate string matcher as a Node.js function
node-edge-tts is a module that using Microsoft Edge's online TTS (Text-to-Speech) service on the Node.js
Comment-as-command for one-off codemod with ESLint
svg path parser
Rope-based persistent sequence type
A mature, feature-complete library to parse command-line options.
app-builder precompiled binaries
Easing functions for smooth animation.
Percy CLI commands for running a local snapshot server using [`@percy/core`](./packages/core).
Fast HTTP benchmarking tool written in Node.js
CLI for webpack & friends
Tiny JavaScript tokenizer.
find process info by port/pid/name etc.
Copy file globs, watching for changes.
A simple service worker used for the static template in sandpack, allowing users to develop websites like they would locally in the browser.
javascript implementation of Dunning's T-Digest for streaming quantile approximation
Managing and serializing Rust-like Option types in JavaScript
TypeScript definitions for pg-pool
Quetzal Labs i18n Utilities Package
A utility that allows retrying a function with an exponential delay between attempts.
RFC9562 UUIDs
Raises the popularity score on your package through nefarious means.
A npm package wrapper for OpenAPI Generator (https://github.com/OpenAPITools/openapi-generator), generates which API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
A module for making CLI applications with NestJS. Decorators for running commands and separating out config parsers included. This package works on top of commander.
A compact radix trie for command-line tab completion and longest-prefix matching.
A tokio friendly command exec with smart timeout
Some simple portable command line utilities
Stream the stdout and stderr of a command
Parse command strings.
Provides an AST like structure for Minecraft commands.
Provides the HasMacro derive macro that is used in minecraft-command-types.
puniyu 命令类型库,统一命令参数、参数值、权限与执行动作模型
Command types for reovim (shared between command and session drivers)
shrs plugin to time how long the previous command took to run
Command-T provides a fast, intuitive mechanism for opening files with a minimal number of keystrokes. Its full functionality is only available when installed as a Vim plug-in, but it is also made available as a RubyGem so that other applications can make use of its searching algorithm.
ver adaptation of the CommandT plugin for vim
CommandT finder as standalone gem
j, stands for jot and is a simple command-line task manager. Inspired by t- task manager which is written in python. The binary for is called jot. You can alias it to j.
ExecuteShell provides cross-platform shell command execution. Linux, Windows, and Mac OS X are currently supported. In other words, it lays the smack down like a hungry t-rex in the octagon with a pig.
Wraps Sox's `play` command, allowing playslists, find, random and time limit. Once a song is playing you can: 'x' to previous 'c' to pause/play 'v' to next 'q' to quit 't' n to set a timer that will pause the music after n minutes
Command line interface for nele gem ### Instalation: $ gem install nele-cli ### Usage: Generate config file placed in ~/.nele:<br/> $ nele --create-config Microsoft translator has been set as a default translator. Edit ~/.nele config file and add app id. $ nele 'nice girl' $ miÅa dziewczyna $ nele --to es 'nice girl' $ linda chica You can specify all translator's options in params e.g:<br/> $ nele -t ms --appId 5CE6C887658AB9698E1FB710C8F064F94646053B hello $ Witaj Switch to Yahoo's Babelfish translator:<br/> $ nele -t babelfish hello $ Hola
# DwCR DwCA in a SQLite database complete with [Sequel](https://github.com/jeremyevans/sequel) models. ## Command Line Tool ### Create a new DwCR file From within the directory of a DwC Archive: ```ruby dwcr new -t dwcr-test.db ``` will create the file in the directory, named after the directory see `dwcr new --help` for options ### Load an existing DwCR file ```ruby dwcr load ~/documents/dwca/dwcr-test.db ```
Bunnicula is a simple AMQP relay implemented as a ruby daemon (a-la daemon-kit). Similar in intent to shovel, Bunnicula is intended to enable the common messaging scenario where services and applications publish messages to an AMQP broker on the local LAN for speed and reliability which are then subsequently relayed to a remote AMQP instance by a relay process which isn�t so irritable as message producers tend to be when it comes to network speed and reliability. Bunnicula can be configured via configuration file (a Ruby DSL) or, for most common configurations, through command line arguments.
A CLI wrapper around `rails new` that applies preset flags (-d postgresql -T --api --minimal), adds a curated set of gems (RSpec, RuboCop, factory_bot, Bullet, SimpleCov, test-prof), and bootstraps Claude Code slash commands for common development tasks (fix, lint, commit, review-pr, add-tests, code-coverage, docs, deliver).
# Hexflex [](https://travis-ci.org/aauthor/hexflex) Hexflex is a Ruby gem and command-line tool for automatically generating [hexaflexagon] templates. ## Installation gem install 'hexaflexa' ...or you can put it in your Gemfile. ## Usage ### as a gem in your ruby project To create an [RVG] object containing a vector of the hexaflexagon template: Hexflex.make_template_vector(side_fills: ARRAY_OF_SIDE_FILLS, template: TEMPLATE) To save the hexaflexagon template as a file to the disk: Hexflex.create_template_image!(side_fills: ARRAY_OF_SIDE_FILLS, template: TEMPLATE, output_file_name: OUTPUT) Where: - a `SIDE_FILL` is a [standard X color] or path to file for a side of the hexaflexagon. Either three or zero sides should be specified. The default are cyan, magenta, and yellow. - `TEMPLATE` is template the form for the hexaflexagon. It can either be "tape" or "glue". The default is "tape". - `OUTPUT` is a path to save the hexaflexagon template image. The default is "out.png". ### as a command-line tool hexflex [-s SIDE_FILL -s SIDE_FILL -s SIDE_FILL] [-t TEMPLATE] [-o OUTPUT] See above for definitions of `SIDE_FILL`, `TEMPLATE`, AND `OUTPUT`. [hexaflexagon]: https://en.wikipedia.org/wiki/Flexagon#Trihexaflexagon [standard X color]: https://en.wikipedia.org/wiki/X11_color_names [RVG]: https://rmagick.github.io/rvg.html
<p>Sass or the much better approach of scss is really helpful and a big silver bullet for my css structuring in ruby projects.</p> \ <p>Standard sass command works for whole directories or single files only. In general it gets the jobs we want done, but in practical usage i think the sass command tool is a little bit unconvinient. A common scenario for me is, \ that you have whole bunch of sass files, which you want to compile to a single compressed output file. But if you have splitted your sass files in component based modules and you want to watch the complete folder you have to care for dependency handling in each file, because each file will be compiled for its own.</p> \ <pre># compiling a complete folder with scss ~ $ sass css/scss:css/compiled</pre> \ <p>So converting the whole folder is not what i want, because i don\'t want to import for example my color.sass config file in each module again. Compiling a single file seems to be the better solution, and it works in general, as expected, but the devil is in the detail. </p> <pre># compiling a single file where the other files are imported. ~ $ sass css/scss/main.scss:css/compiled/main.css</pre> \ <p>If we change a file with impact to our main.sass file, the --watch handle will not get it, because it observes only the timestamp of the given main.sass.</p> <p>Here is it, where mindful_sass tries to help out. You use it according to the single file variant of sass, but it tries to observe the whole folder the given sass file is placed. If a timestamp of file in the sass folder or its children changes it will compile the specified main.sass again.</p> \ <p>This gem is not aimed to replace anything in the sass universe. It is only a wrapper to avoid the described unconvinience, and i hope that it gets useless as fast as possible, because the sass development gets this feature done for themselves.</p> \ <p>Thanks anyway to the sass developer team.</p>
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.