GoE is a decentralized Git protocol built on Ethereum and EthStorage, providing a new standard for trustworthy, on-chain code hosting.
Husky hook to add task id to every commit within Go-e Labs front end team
Common linting rules for all go-e Labs front-end projects
Common Prettier rules for all go-e Labs front-end projects
[](https://github.com/RichardLitt/standard-readme) [](https:
Pretty unicode tables for the command line. Based on the original cli-table.
Get stdout window width, with two fallbacks, tty and then a default.
Codex CLI is a coding agent from OpenAI that runs locally on your computer.
No description provided.
Spinners for use in the terminal
Toggle the CLI cursor
The linux x64 distribution of the Sentry CLI binary.
A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/
Syntax highlighting in your terminal
Vite as Node.js runtime
CLI tool for Angular
Validate a webpack configuration.
CLI for webpack & friends
Run commands concurrently
easy to use progress-bar for command-line/terminal applications
CLI for the swc project
base library for oclif CLIs
Babel command line.
Outputs info about system and webpack config
There is a lot that goes into making a successful mobile app. This cli tool will help you research possible app ideas and then scaffold a starting point for a RubyMotion app.
A CLI gem that goes out to grab today's deals from the steam homepage and allows the user to easily look through the details of each deal
== ABOUT A simple program and library to conjugate french verbs. Parses responses to requests to an online reference site. === Executable ConjugateFR comes with the executable binary +conjugatefr+. To view information about it's supported arguments, run conjugatefr --help === Custom Renderers To make a custom renderer, just type require conjugatefr/renderer and then make a class that extends +Renderer+. An example is as follows: require 'conjugatefr/renderer' class ExampleRenderer < Renderer def pre puts "This goes before the words." end def word (name, words) print "#{name}:" words.each do |word| print " #{word}" end end def post puts "This goes after the words." end def description; "Renders an example format."; end end # Add to the Renderers list (For CLI and other programs that use it.) $renderers["Example"] = ExampleRenderer.new To try this out, save it as +erend.rb+ and then run: conjugatefr -R ./erend.rb -r Example It will produce the output: This goes before the words. someword: someconjugation etc etc ... (more words will be here) This goes after the words. === The Library The library can be included with +require conjugatefr+. It includes the +ConjugateFR+ class.