Nasdaq Metrio is a sustainability reporting platform tailored for businesses at various stages of their ESG journey. It merges meticulous data collection, tracking, and management with emissions calculations and assurance. Additionally, it provides a comprehensive library of metrics from various rater and ranker frameworks as well as regulatory bodies, all cross-referenced, de-duplicated, and clarified, complete with guidance notes.
Learn more

Compliance work eats engineering time. Hyperproof exists to give that time back by automating the parts of GRC that don't need a human: pulling evidence out of GitHub, Jira, ServiceNow, Snyk, and cloud storage on a schedule, running recurring tests against high-frequency controls, and kicking off a task automatically the moment something fails instead of waiting for the next audit cycle to find out.
Under the hood, Hyperproof maps one control to 160+ frameworks (SOC 2, ISO 27001, HIPAA, NIST, and others), so a control tested once can satisfy several standards instead of forcing teams to rebuild the same work per framework. AI agents handle the first pass on evidence review and gap-flagging, leaving humans to make the actual judgment calls rather than hunting down documentation.
Teams using it report cutting audit prep by roughly 350 hours a year, a 66% drop in duplicate controls, and about $150K saved annually on control orchestration. It also scales to messier org charts, with the ability to scope controls by business unit or entity instead of flattening everything into one program.
Built in 2018 out of the Seattle area, Hyperproof is used by engineering and security-heavy orgs like Reddit, Fortinet, Appian, and Outreach that are tired of treating compliance as a manual, spreadsheet and email process and want it to run more like the rest of their infrastructure: automated, monitored, and auditable.
Learn more
Sinatra
Sinatra comes equipped with various default settings that dictate the activation of specific features. These settings act as application-level variables, which can be altered through methods such as set, enable, or disable, and they are accessible within the request context through the settings object. Developers are encouraged to define both their custom settings and utilize the default settings that the framework offers. The set method, in its most basic usage, requires just a setting name and its corresponding value, effectively creating an attribute for the application. Additionally, extensions serve as supplementary tools that offer helper or class methods tailored for Sinatra applications, and these are typically detailed on the extension's home pages. Incorporating an extension is often straightforward, requiring only the installation of a gem or library followed by a simple file requirement. Overall, this flexibility empowers developers to tailor their Sinatra applications to meet specific needs or preferences.
Learn more
restify
Restify is a Node.js web service framework designed specifically for the development of semantically accurate RESTful web services that can handle production demands at a large scale. This framework emphasizes both introspection and performance, making it a favored choice for some of the most extensive Node.js applications globally. Operating at scale necessitates the ability to trace issues back to their source, which involves distinguishing the relevant information from the irrelevant. With a strong focus on post-mortem debugging, restify is constructed with this capability in mind. Adhering closely to the specifications is a primary objective of the project, and you will frequently encounter references to RFCs throughout the GitHub issues and within the code itself. Numerous well-regarded companies in the industry utilize restify to support significant Node.js deployments, highlighting its importance in the future landscape of Node.js REST development. Setting up a server with restify is straightforward and efficient, and similar to many other REST frameworks based on Node.js, it employs a Sinatra-style syntax for defining routes and the corresponding function handlers. This simplicity in setup allows developers to quickly get their services up and running.
Learn more