  
Reads / writes floats / doubles from / to buffers in both modern and ancient browsers.
Implements the WebIDL algorithms for converting to and from JavaScript values
Use flow-relative (inline-start and inline-end) values for float and clear
ngx-float-ui is an Angular wrapper for Floating UI
Platform float word order.
Binary Mac OS X Plist (property list) creator.
Floating tooltip component
Easily use Headless UI for React with Floating UI (Popper.js)
Easily use Headless UI for Vue 3 with Floating UI (Popper.js)
a glob matcher in javascript
WebGL performance monitor that showing percentage of GPU/CPU load
walk paths fast and efficiently
A shim for the setImmediate efficient script yielding API
An evented streaming XML parser in JavaScript
Light, fast, tree-based way to get cities by zipcode and location.
Convert a Node-API value to a single-precision floating-point number.
The NetBSD AMD64 binary for esbuild, a JavaScript bundler.
The ultimate javascript content-type utility.
Typings for the swc project.
when you want to fire an event no matter how a process exits.
EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.
High performance WAV file decoder and encoder
Check if an array can store floats
Converts ruby values from strings to fixnums, floats, times, true and false values if it can sanely do so.
Represents an amount of money in a particular currency. Backed by BigDecimal, so is safe from float rounding errors.
Provides helper methods so you can store dollar amounts in cents as integers (or floats if you need to store fractional pennies) but still do your operations in dollars
Smalltime is a Ruby duration library that focuses on providing a great experience when working with small durations like hours, minutes, seconds, milliseconds, nanoseconds, or smaller (down to yoctoseconds). Smalltime does not perform any floating point calculations, so there is no risk of floating point errors.
Override's some Ruby classes to add methods making for uniform calls. For example, :to_bool is common to Nil, nil, TrueClass, FalseClass, String, Float, Date, ActiveRecord::Associations::HasOneAssociation and ActiveRecord::Associations::HasManyAssociation. There are a few compatibility features bridging the gaps between ruby1.8 and ruby1.9 as well. With the modification of String to Enumerable in ruby1.9, methods have been added so that you can grep and itterate over each line, in all ruby versions. Code is self explanatory, for other aspects.
Floating theme picker for Tailwind-based Rails apps. Ships a Stimulus controller, Slim partial, helpers, and a themes stylesheet. Persists choice in two cookies (theme, mode) so the server can paint the right classes on <html> before any JS runs — no flash of unstyled content on returning visits.
C, then D, C++, C# -- now C^2, simple C templates using Ruby. Consider this to be a sort of carpenter's square. We call it C^2, or csquare. It's a simple tool for simple jobs. This gem was developed for use in NMatrix (part of the SciRuby Project). We wanted to be able to write a single function and have it be modified to produce C sources for each datatype (rational, complex, integer, float, Ruby object, etc). It also produces some rudimentary function pointer arrays if you so desire, so that these functions can be accessed using array notation. Experimental! Use at your own risk. Actually, don't use this at all! It's extremely buggy and probably won't be useful for your purposes. It's really custom-designed to handle a specific use case: NMatrix dtype templates.
Floating point ActiveRecord Models ordering for rich client apps heavily inspirated by Trello's ordering alorithm. ActiveRecordFlorder let client decide model's position in collection, normalize given value and resolve conflicts to keep your data clean. It's highly optimalized and generate as small SQL queries. The whole philosophy is to load and update as little records as possible so in 99% it runs just one SELECT and one UPDATE. In edge cases sanitization of all records happens and bring records back to the Garden of Eden state. It's implemented with both Rails and non-Rails apps in mind and highly configurable.
Fuji Admin is a drop-in theme for ActiveAdmin that upgrades every default surface — tables, forms, filters, panels, pagination, scopes, batch actions — into a cohesive, modern design system without requiring any changes to your app/admin files. Ships with a card-based responsive layout, slide-in filter drawer with active-filter chips, animated floating labels on text inputs and textareas, row-action dropdowns, and a runtime palette switcher with 30 built-in palettes (8 curated full themes) that repaint surfaces, text, borders, and primary accents live. Mobile posture is first-class: panels flatten into sections, index tables get compact padding with opt-in column wrapping, and wide tables scroll horizontally. Every design token (color, shadow, radius, space, font) is an overridable SCSS variable so brands can customize without forking.
# Excel to Code [](https://travis-ci.org/tamc/excel_to_code) excel_to_c - roughly translate some Excel files into C. excel_to_ruby - roughly translate some Excel files into Ruby. This allows spreadsheets to be: 1. Embedded in other programs, such as web servers, or optimisers 2. Without depending on any Microsoft code For example, running [these commands](examples/simple/compile.sh) turns [this spreadsheet](examples/simple/simple.xlsx) into [this Ruby code](examples/simple/ruby/simple.rb) or [this C code](examples/simple/c/simple.c). # Install Requires Ruby. Install by: gem install excel_to_code # Run To just have a go: excel_to_c <excel_file_name> This will produce a file called excelspreadsheet.c For a more complex spreadsheet: excel_to_c --compile --run-tests --settable <name of input worksheet> --prune-except <name of output worksheet> <excel file name> See the full list of options: excel_to_c --help # Gotchas, limitations and bugs 0. No custom functions, no macros for generating results 1. Results are cached. So you must call reset(), then set values, then read values. 2. It must be possible to replace INDIRECT and OFFSET formula with standard references at compile time (e.g., INDIRECT("A"&"1") is fine, INDIRECT(userInput&"3") is not. 3. Doesn't implement all functions. [See which functions are implemented](docs/Which_functions_are_implemented.md). 4. Doesn't implement references that involve range unions and lists (but does implement standard ranges) 5. Sometimes gives cells as being empty, when excel would give the cell as having a numeric value of zero 6. The generated C version does not multithread and will give bad results if you try. 7. The generated code uses floating point, rather than fully precise arithmetic, so results can differ slightly. 8. The generated code uses the sprintf approach to rounding (even-odd) rather than excel's 0.5 rounds away from zero. 9. Ranges like this: Sheet1!A10:Sheet1!B20 and 3D ranges don't work. Report bugs: <https://github.com/tamc/excel_to_code/issues> # Changelog See [Changes](CHANGES.md). # License See [License](LICENSE.md) # Hacking Source code: <https://github.com/tamc/excel_to_code> Documentation: * [Installing from source](docs/installing_from_source.md) * [Structure of this project](docs/structure_of_this_project.md) * [How does the calculation work](docs/how_does_the_calculation_work.md) * [How to fix parsing errors](docs/How_to_fix_parsing_errors.md) * [How to implement a new Excel function](docs/How_to_add_a_missing_function.md) Some notes on how Excel works under the hood: * [The Excel file structure](docs/implementation/excel_file_structure.md) * [Relationships](docs/implementation/relationships.md) * [Workbooks](docs/implementation/workbook.md) * [Worksheets](docs/implementation/worksheets.md) * [Cells](docs/implementation/cell.md) * [Tables](docs/implementation/tables.md) * [Shared Strings](docs/implementation/shared_strings.md) * [Array formulae](docs/implementation/array_formulae.md)