--- version: 1.0.0 codeOwners: - '0xc415f452Af5bA0E3f9E11a2178f13d18D69Adf1C' - '0x4eA3Aff7E496Ee078C5F7A17A2A284075db0D67B' quorum: 1
Compile class public and private fields, private methods and decorators to ES6
Compile ESNext Regular Expressions to ES5
RFC9562 UUIDs
Create a new Jest project
Polyfill for Node.js module.createRequire (<= v12.2.0)
Create and parse Content-Disposition header
Babel preset used by Create React App
ESLint configuration used by Create React App
webpack utilities used by Create React App
Configuration and scripts for Create React App.
Core functions & classes shared by multiple AWS SDK clients.
Angular Schematics - Library
Official React bindings for Redux
Persistent ordered mapping from strings
Add components to your apps.
Streaming API client for Foursquare
Predictable state container for JavaScript apps
The official, opinionated, batteries-included toolset for efficient Redux development
Create Next.js-powered React apps with one command
Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.
TypeScript client library for the Mistral AI API
No description provided.
Wrapper around Apple's simctl binary
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6.
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application, creates a secret code of four numbers between 1 and 6.
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6.
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6.
Accessing your ImageVenue account via a Ruby-Library. With support for listing, creating, deleting directories and listing, uploading and deleting files. Generates BB-Code or HTML-Code four you, too.
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The code-maker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6.
The connect_four.rb file contains classes for an object-oriented connect four game, designed to be played between two human players on the command line. Colored player symbols courtesy of the colorize gem. Play by creating an instance of Game and calling the play method on it.
PheldItunesReporter provides a library and corresponding executable script that calculate and report statistics for a given iTunes library file. When executed, the script prints a text summary of all of the statistics it is capable of generating. It also creates four .PNG image files with graphs of key statistics.
A very simple XML builder class. + I wanted something really simple that I could easily extend myself later on if I needed to. + Ironically, in four years since I created and used TinyXml, I never needed to extend it :-) I figured, it may as well work for others in that case, so here it is.
Codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The codemaker, which will be played by the application we're going to write, creates a secret code of four numbers between 1 and 6. The codebreaker gets some number of chances to break the code (depends on chosen difficulty). In each turn, the codebreaker makes a guess of 4 numbers.
Rewritten is a lookup-based rewriting engine that rewrites requested URLs on the fly. The URL manipulations depend on translations found in a redis database. If a matching translation is found, the result of a request is either a redirection or a modification of path and request parameters. For URLs without translation entries the request is left unmodified. Rewritten takes larges parts from the Resque codebase (which rocks). The gem is compromised of four parts: 1. A Ruby library for creating, modifying and querying translations 2. A Sinatra app for displaying and managing translations 3. A Rack app for rewriting and redirecting request (Rack::Rewritten::Url) 4. A Rack app for substituting URLs in HTML pages with their current translation (Rack::Rewritten::Html) 5. A Rack app for recording successful request (Rack::Rewritten::Record)
== DESCRIPTION: This is a ruby wrapper around Plotr with a similar API to Gruff. You can create graphs with a similar interface to Gruff, but offload the rendering to the browser! == FEATURES/PROBLEMS: * Needs more tests! == SYNOPSIS: An example in rails. Your controller: class GraphController < ApplicationController def index @drawr = Drawr::Pie.new @drawr.title = "Twan" @drawr.data("One", [1]) @drawr.data('Two', [2]) @drawr.data('Three', [2]) @drawr.data('Four', [10]) @drawr.data('Five', [6]) end end Your view: <html> <head> <%= javascript_include_tag 'prototype' %> <%= javascript_include_tag 'excanvas' %> <%= javascript_include_tag 'Plotr' %> </head> <body> <%= @drawr %> </body> </html>