_Disclaimer: This project is in a design phase, and is not usable right now._
<a href="https://nodei.co/npm/iff-diff/"><img src="https://nodei.co/npm/iff-diff.png"></a>
IFF Design System in lit 2.0
Parses Amiga IFF files
latex iff jsonlogic
Interchange File Format (IFF) codec.
execute a function iff the element exists
A helper component to render react components conditionally.
Conditional expressions with Option support.
(g)it (d)iff (ex)plorer
Cryptographic challenge-response (IFF) protocol for drone fleet authentication using Ed25519, SHA-256 hash chains, and HKDF
Platform detection library
Command line utility for iff-depot
Collapse the node.js util.inspect output to 1 line and colorizes iff NODE_ENV is debug and adds inspect to the global object.
ecs-logging-nodejs helpers
Server-side DOM implementation based on Mozilla's dom.js
Server-side DOM implementation based on Mozilla's dom.js
Invokes connect-like middleware if / unless routing criteria matches. Inspired on express-unless module.
Conditionally add Mali middleware
Handle click events iff mouse{up,down} targets match
| 方法 | 参数 | | ----------------- | ---------------------------- | | useApi | api, p, v, fn, finallyFn | | useFormatNumber | n, digit, prev, next | | useFormItemIf | v, sindex, label, ifF
Replace known values in Titanium apps to allow for further simplification via dead code/evaluation in babel minify
Promisify the node standard library.
Apache Cordova fetch module. Fetches from git and npm.
A macro for if / if let chains until [RFC 2497] is implemented.
Pure-Rust EA IFF 85 container support (8SVX audio, ILBM, …) for oxideav
A rust crate for reading Amiga IFF files
PPF-IFF (Involuted Fractal Format) - Image codec using Physics-Prime Factorization, 360-prime quantization, and symplectic warping
Pure-Rust DjVu IFF container parser and emitter
Compile-time compiler that compiles Forth to compile-time trait expressions.
Server-side Web Authentication (WebAuthn) Relying Party (RP) API.
A DAG-based combinatorial-model framework.
A Rust library for algebraic structures called tracts, which generalize fields and hyperfields.
Pure-Rust DjVu codec — decode and encode DjVu documents. MIT licensed, no GPL dependencies.
a compile time for loop for code generation
IFF chunk encoder and decoder.
Ruby/IFF is a Ruby library for loading and serializing file formats based (more or less loosely) on the IFF standard; these include many popular file formats like MIDI and WAV
Reads and interpolates animation channels in IFFS setups
A simple gem to access a SAM node. For more info about SAM visit www.github.com/nsi-iff/sam_buildout.
The idea here is to take arguments off of a stack, run a command, and proceed down the stack iff the command exits 0. Why? Consider running rspec with a tight focus, adding breadth on success
Finally - I am done with this project! A simple example game from the Pragmatic Studio!
# HebCal Determines the date of Passover for a Gregorian year. Also includes boolean functions to check whether a date is a Jewish holiday, Fast Day or Rosh Chodesh. Supported languages: Javascript Ruby ## Installation as a Ruby gem Add this line to your application's Gemfile: gem 'hebcal' And then execute: $ bundle Or install it yourself as: $ gem install hebcal ## General notes 1. 3- and 4-digit years are supported, so the domain of valid years is 100-9999. For years before the Gregorian transition (1582), the transition is ignored and the proleptic Gregorian calendar is used. ## Ruby Version ### To Run Unit Tests $ rake test ### To Use #### Calculating the date of Passover 1. At the top of the file where the class is defined, declare `require `hebcal`` 1. In the class, declare `include HebCal::Passover` 1. `WhenIsPesach(yyyy)` returns a Ruby Time object representing midnight on the first day of passover, where `yyyy` is the Gregorian year Note that the date returned is the first day of Pesach, not the day on which Pesach begins at sunset. #### Finding out if a date is a holiday 1. At the top of the file where the class is defined, declare `require `hebcal`` 1. In the desired class, declare `include HebCal::Holidays` 1. `IsPesach(d)` returns true iff d is a Ruby Time object representing a date during Pesach. Note that the day on which Pesach begins at sunset returns false. 1. The following functions work in a similar way to `IsPesach()`: 1. `IsShavuot()`, `IsRoshHashanah()`, `IsYomKippur()`, `IsSukkot()` 1. `IsRegel()`: `IsPesach() || IsShavuot || IsSukkot()` 1. `IsMoed()`: Hol HaMoed Pesach or Hol HaMoed Sukkot 1. `IsYomTov()`: `IsPesach() || IsShavuot() || IsRoshHashanah() || IsSukkot()) && !IsMoed()` Note that IsYomTov(yk) == false, where yk is the date of Yom Kippur. 1. `IsPurim()`, `IsHanuka()` 1. `Is10Tevet()`, `IsTaanitEster()`, `Is17Tamuz()`, `Is9Av()`, `IsFastOfGedalia()` 1. `IsTaanit()`: `Is10Tevet() || IsTaanitEster() || Is17Tamuz() || Is9Av() || IsFastOfGedalia()` 1. `IsRoshChodesh()` ## Javascript Version ### To Run Unit Tests 1. Open index.html in a browser. You should see a lot of green text saying that tests passed. If not, javascript may not be enabled in your browser. Scroll down to the bottom and verify that the summary says all tests passed. ### To Use 1. Include the javascript source file in your HTML page 1. If using Ruby On Rails, you can declare `//= require hebcal` at the top of a javascript or coffeescript file 1. To include the script explicitly in an html file, `<script src="app/assets/javascripts/hebcal/passover.js" type="text/javascript"></script>` 1. All date formats are YYYY-mm-dd, where month is index from 1 (i.e. 1 == January, not the usual javascript index of 0 == January!) and YYYY is the Gregorian year. 1. $.whenIsPesach(yyyy) returns a date in the above format, where yyyy is the Gregorian year. Note that the date returned is the first day of Pesach, not the day on which Pesach begins at sunset. 1. $.isPesach(d) returns true iff d is a date during Pesach, in the above format. Note that the day on which Pesach begins at sunset returns false. 1. The following functions work in a similar way to $.isPesach(): 1. $.isShavuot(), $.isRoshHashanah(), $.isYomKippur(), $.isSukkot(); 1. $.isRegel(): $.isPesach() || $.isShavuot() || $.isSukkot(); 1. $.isMoed(): Hol HaMoed Pesach or Hol HaMoed Sukkot; 1. $.isYomTov(): ($.isPesach() || $.isSukkot() || $.isShavuot() || $.isRoshHashanah()) && !$.isMoed(); Note that isYomTov(yk) == false, where yk is the date of Yom Kippur. 1. `$.isPurim()`, `$.isHanuka()` 1. `$.isRoshChodesh()` 1. `$.is10Tevet()`, `$.isTaanitEster()`, `$.is17Tamuz()`, `$.is9Av()`, `$.isFastOfGedalia()` 1. `$.isTaanit()`: `$.is10Tevet() || $.isTaanitEster() || $.is17Tamuz() || $.is9Av() || $.isFastOfGedalia()`
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.