Make presentable errors
Make presentable errors
No description provided.
An example for how to set up a ProseMirror editor
A simple to use library to present modals on top of the app using Root Siblings.
freelog presentable policy language
> compiler to compile the presentable policy of freelog
This is a library to create slideshows using react
``` interface Presentable { description?: string, formattedName?: string, order?: number, }
Deck formatting and validation helpers for townsquare
Slick and perfomant vue 3 color picker component whose goal is to replace <input type=color>
Deck formatting and validation helpers for throneteki
Easily create formatted code snippets for presentations
A higher-quality, configurable alternative to Playwright's built-in recordVideo. Fixed two-pass pipeline (fast realtime capture + configurable transcode) with pause/resume, crop, multi-page contexts, and inline audio scheduling.
A set of web components to create HTML presentations
Create an error from multiple errors
Error comparison and information related utility for node and the browser
Easy error subclassing and stack customization
Extract meaning from JS Errors
Wrap zod validation errors in user-friendly readable messages
Serialize/deserialize an error into a plain object
Cross-browser Error parser
Deck formatting and validation helpers for cronus
A library for incremental games based on break_eternity.js
extends errors class with :objects method
API consumable error messages with ActiveModel::Errors drop-in compatibility.
API consumable error messages with ActiveModel::Errors drop-in compatibility.
Useful when a presenter deals with multiple objects that may enter into error states, and the errors need to be collected at a single point.
When this library is required, it replaces the default Ruby exception-raising behavior. When an error is raised, the developer is presented with a menu enabling them to ignore the error, view a stack trace, debug the error using IRB or ruby-debug, and more.
When this library is required, it replaces the default Ruby exception-raising behavior. When an error is raised, the developer is presented with a menu enabling them to ignore the error, view a stack trace, debug the error using IRB or ruby-debug, and more.
Rails engine that checks for pending migrations and presents an error screen that allows you to manage your migrations.
Geoelevation.rb allows you to retrieve elevation for any point in Earth (if present in the SRTM dataset) and the undulation error (the difference between the WGS84 ellipsoid and the actual Earth size).
This gem connects stack trace on rails error page to rubymine (when you click on stack trace line in browser, RubyMine will open appropriate file on the line which caused the error. In similar manner it connects links from footnotes (if present) to RubyMine (https://github.com/josevalim/rails-footnotes). You need some manual work to set handler for browser links (see README).'
Creates an Xcode project from a pebble project that contains the needed search paths, resources and .c files to start right away. Each time you build your watch app from the IDE, all warnings and errors of the underlying ´pebble build` command will be presented right in the editor. With AppCode you can even build, install the .pbw to your watch, and look at the live logs as a one-step action directly from your IDE!
The dep_walker is small utility gem that checks dependencies for native extensions used by installed gems on Windows. If you are {RubyInstaller}[http://www.rubyinstaller.org] user and have seen message box: <em>"This application has failed to start because <name_of_dll>.dll was not found. Re-installing the application may fix this problem"</em> when you tried to use gem that has pre-built binariy extension, you've faced common problem on Windows systems - missing dependency dll. Same error might occur even if extension library was built during gem installation if all header files and libraries are available to the build tools, but runtime dependencies are not present. With dep_walker you can simply check all installed gems. Even more, if log is turned on, gem will print out information where dependency is found on the system, so you can check whether Ruby extension really uses correct version of required dll.
# Netchk Simple tool to troubleshoot internet connectivity issues. This tool verifies: - your computer has at least one IP address - you have at least one DNS configured - you can reach the configured nameservers - the nameservers can resolve hosts Finally, some ICMP ping statistics are presented with average durations and error rates. ## Installation ```sh gem install netchk ``` ## Usage Just run `netchk` from your terminal and basic diagnosis will start showing you progress and any error if present. Note: On Linux system, this gem requires `sudo` to perform the ICMP ping operations. On macOS, this is not needed. You also can configure how netchk verifies your connections by configuring a `~/.netchk.yaml` or `~/.netchk.yml` file like below. ```yaml # Settings to test DNS server connectivity. dns: # Path to resolv.conf file to check presence and connectivity of DNS. # Path should be absolute to avoid issues when running netchk # from different directories. resolv.conf: /etc/resolv.conf # Settings to test DNS resolution. resolv: # Path to resolv.conf file to use for testing DNS resolution. # Path should be absolute to avoid issues when running netchk # from different directories. It is advised to be the same # as dns.resolv.conf. resolv.conf: /etc/resolv.conf # The list of domains to test for DNS resolution. domains: - google.com - youtube.com - facebook.com # Settings to test icmp ping. icmp: # A list of hosts to ping with ICMP. It is advised to use # IP addresses instead of domains to rule out any issues with # DNS resolution, which is tested separately. hosts: - 1.1.1.1 - 8.8.8.8 # The number of ping to issue each host. count: 20 # The duration in seconds to wait between each ping. # Setting this value too low might cause timeouts. interval: 0.2 ``` Each value is optional. If one is missing the default value will be used. The file above shows the default values. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/moray95/netchk.