Web components for showing natural hazard observations
Web components for showing natural hazard observations
Native Access to MacOS FSEvents
Core observable indicators
The `@spectrum-web-components/shared` package provides essential base classes, mixins, and utilities that support developing Spectrum Web Components. This package contains foundational tools for focus management, slot observation, accessibility enhancemen
Records observations between two points in time
Core domain model and orchestration for Kindling - local memory engine for AI-assisted development
Node-RED node for time-series forecasting and anomaly detection using Exponential Smoothing
These components are designed for viewing data in Mapeo. They share a common interface:
Build and check RDF cubes in Linked Data pipelines
`@bananapus/univ4-router-v6` provides the Uniswap V4 hook and oracle surface used to compare market execution with Juicebox-native execution. It is a routing primitive for projects that want protocol-aware swaps instead of blind pool usage.
Event observation data extractor for Bitcoin chain
Event observation data extractor for Bitcoin Runes chain
Fast, expressive styling for React.
live data access object
Event observation data extractor for Ergo chain
Event observation data extractor for different chains
FHIR resource definitions + API methods + utils
Event observation data extractor for EVM-compatible chains
Event observation data extractor for Cardano chain
GitHub Actions lexicon for chant — declarative IaC in TypeScript
Improve the debugging experience and add server-side rendering support to styled-components
Bundle for astronomical calculations such as position of moon, sun and planets, sunrise, sunset or solar eclipses. Most of the calculations are based on Jean Meeus 'Astronomical Algorithms' book and the VSOP87 theory.
React component to render markdown
Build reactive web applications with observable data structures and components
event_dispatcher gem provides a simple observer implementation, allowing you to subscribe and listen for events in your application in a simple and effective way. It is very strongly inspired by the Symfony EventDispatcher component
Observatory is a simple gem to facilitate loosely-coupled communication between Ruby objects. It implements the observer design pattern so that your objects can publish events that other objects can subscribe to. Observatory provides some syntactic sugar and methods to notify events, filter values and allow observing objects to stop the filter chain. Observatory is inspired by the Event Dispatcher Symfony component.
<p>Sass or the much better approach of scss is really helpful and a big silver bullet for my css structuring in ruby projects.</p> \ <p>Standard sass command works for whole directories or single files only. In general it gets the jobs we want done, but in practical usage i think the sass command tool is a little bit unconvinient. A common scenario for me is, \ that you have whole bunch of sass files, which you want to compile to a single compressed output file. But if you have splitted your sass files in component based modules and you want to watch the complete folder you have to care for dependency handling in each file, because each file will be compiled for its own.</p> \ <pre># compiling a complete folder with scss ~ $ sass css/scss:css/compiled</pre> \ <p>So converting the whole folder is not what i want, because i don\'t want to import for example my color.sass config file in each module again. Compiling a single file seems to be the better solution, and it works in general, as expected, but the devil is in the detail. </p> <pre># compiling a single file where the other files are imported. ~ $ sass css/scss/main.scss:css/compiled/main.css</pre> \ <p>If we change a file with impact to our main.sass file, the --watch handle will not get it, because it observes only the timestamp of the given main.sass.</p> <p>Here is it, where mindful_sass tries to help out. You use it according to the single file variant of sass, but it tries to observe the whole folder the given sass file is placed. If a timestamp of file in the sass folder or its children changes it will compile the specified main.sass again.</p> \ <p>This gem is not aimed to replace anything in the sass universe. It is only a wrapper to avoid the described unconvinience, and i hope that it gets useless as fast as possible, because the sass development gets this feature done for themselves.</p> \ <p>Thanks anyway to the sass developer team.</p>