Simply swizzle your arguments
A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.
Zebra - Default template for Docma. https://github.com/onury/docma
A simple MD5 hash function for JavaScript supports UTF-8 encoding.
Statistical Library for JavaScript
JavaScript parser, mangler/compressor and beautifier toolkit
Minify font declarations with PostCSS
Shared TypeScript contracts for Activix activity records, run context, and client interfaces
A simple MD4 hash function for JavaScript supports UTF-8 encoding.
Helper to use emmet modules in Visual Studio Code
File edition helpers working on top of mem-fs
Curated list of Web platform features
Basic auth middleware for node and connect
Microsoft Application Insights Web Snippet
Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.
Easily read/write JSON files.
Fastest, most accurate & effecient user agent string parser, uses Browserscope's research for parsing
Send parameterized requests to GitHub's APIs with sensible defaults in browsers and Node
Simple monitor script for use during development of a Node.js app.
A port of jQuery.extend that actually works on node.js
Lightweight debugging utility for Node.js and the browser
Convert values with PostCSS (e.g. ms -> s)
http(s) proxy as connect middleware
Signs and prepares requests using AWS Signature Version 4
Allow any files to be stored and its access protected with `pass`
Interactors are a pattern for structuring your business logic into units. They have a flexible context that they pass between them, which makes them easy-to-write, but hard-to-understand after you've written them. Much of this confusion comes from not knowing what the interactor is supposed to take as input and what it's expected to produce. Enter contracts. Contracts allow you define, up front, a contract both for the input of an interactor, known as expectations, and the output of it, known as promises. Additionally, you can define a handler for what happens when an interactor violates its contracts, known as a breach. Declaring these contracts can help define your interface and make it easier to understand how to use an interactor. They form both documentation and validation for your business logic.
## Dinosaur Catalog It may not be immediately evident, but I am a huge fan of dinosaurs. They're huge and dangerous and have cool names like Giganotosaurus (not to be confused with Gigantosaurus). ... Anyway. I need to catalog some dinosaurs for my newest project, DinoDex. I've got a CSV file for the dinosaur facts, and I need the code to read all the dinosaur facts and do some basic manipulations with the data. ### Requirements Go check out the CSVs and come back. Done? Cool, I've just got a few features I need: 1. I loaded my favorite dinosaurs into a CSV file you'll need to parse. I don't know a lot about African Dinosaurs though, so I downloaded one from The Pirate Bay. It isn't formatted as well as mine, but please try to parse it anyway. 2. I have friends who ask me a lot of questions about dinosaurs (I'm kind of a big deal). Please make sure the dinodex is able to answer these things for me: * Grab all the dinosaurs that were bipeds. * Grab all the dinosaurs that were carnivores (fish and insects count). * Grab dinosaurs for specific periods (no need to differentiate between Early and Late Cretaceous, btw). * Grab only big (> 2 tons) or small dinosaurs. * Just to be sure, I'd love to be able to combine criteria at will, even better if I can chain filter calls together. 3. For a given dino, I'd like to be able to print all the known facts about that dinosaur. If there are facts missing, please don't print empty values, just skip that heading. Make sure to print Early / Late etc for the periods. 4. Also, I'll probably want to print all the dinosaurs in a given collection (after filtering, etc). #### Extra Credit 1. I would love to have a way to do (and chain) generic search by parameters. I can pass in a hash, and I'd like to get the proper list of dinos back out. 2. CSV isn't may favorite format in the world. Can you implement a JSON export feature? Happy Hunting. (Giganotosaurus was the largest hunting dinosaur, at 46 feet long and up to 8 tons! Suh-weet.)