non-blocking synchronization(nbs:) in nodejs
NBS ESLint recommended settings
One color-naming API for any palette. Identify, resolve, and convert colors across your own palette or twelve built-in sets (CSS, X11, Pantone, Crayola, NTC, XKCD, Resene, NCS, ISCC-NBS, NBS, FS 595 B/C); fully typed, tree-shakeable, perceptual distance m
NBS UI library for angular ng6
NBS Naini Design System React.js
NBS Web Naini Design System Tailwind CSS
A TSLint config for NBS JavaScript Style
NBS Naini Design System HTML
nbs组件
nbs组件
Pretraga registra pravnih lica NBS po PIB-u i matičnom broju
MCP server exposing Belgrade Stock Exchange (Belex) and National Bank of Serbia (NBS) data as tools for LLM clients.
NBS IPS QR code generator for Serbian payment system — TypeScript, server-safe, zero window dependencies
NBS API for Node.js
This package is a library that processes Note Block Studio nbs files in Note.js.
Version utility for NBS framework
View Component for NBS framework
Root object for NBS framework
Read and write Minecraft Note Block Studio .nbs files with JS.
NBS visualization tool
Reads Note Block Song (.nbs) files
Contains scss and css files with color palettes using color standarts (ncs, pantone, ral,resene, material, web-safe, x11, xkcd, iscc, nbs, crayola)
Standard event library for the NBS framework
Application for NBS framework
NBS buffer decoder & encoder
High-precision sRGB to Munsell color space conversion with 100% reference accuracy
IO functionality for the OpenNBS .nbs format
Pure-Rust Theora video codec — orphan-rebuild scaffold pending clean-room re-implementation.
A PDDL planner library built around the pddl crate, with grounding and search utilities
CLI for the miniplan PDDL planner
Rust implementation of SIA, SIATEC, COSIATEC, and RecurSIA algorithms for compressing Note Block Studio (.nbs) music files by discovering translational equivalence classes in 2D point sets.
Fountain pen ink swatch color analysis from photographs
A simple lib to make integrity report
Compute and fit clothoid (Euler/Cornu spiral) curves for smooth path planning and trajectory generation
Nigerian geopolitical zones, states and local government areas (LGAs) — all 6 zones, 37 states and 774 LGAs with navigation helpers.
A high-performance, secure reverse proxy with rate limiting and IP filtering
Simple NextBigSound wrapper. requires private key from NBS
This is a fork of the wonderful sstepenson/global_phone it only exists because our company has a runtime dependency on this gem as part of a private gem that we use in a rails app. And the gemspec for our private gem can't reference a github branch. Hopefully we can delete this if our PRs get merged (ie. sstephenson/global_phone/pull/6 , sstephenson/global_phone/pull/7 , sstephenson/global_phone/pull/8 , sstephenson/global_phone/pull/9, sstephenson/global_phone/pull/10) and we can go back to depending on global_phone
Database models, migrations, and utilities for the New Brunswick Aquatic Data Warehouse
InsuranceBizLogic contains biz logic for stand four insurance processes of NB, MTA, Cancellations, Renewals
Minimalist Theme for Jekyll by Ismail Mechbal // NB: Not recommended for usage yet.
InsuranceBizLogic contains biz logic for stand four insurance processes of NB, MTA, Cancellations, Renewals
Installs the #nb method on Object and in some modules to simplify dealing with possibly-blank items
When writing html template with "Rails", provide helper method to be used when adjusting small margin using nbsp
'Sith-Lord, Jedi, Ewok' is a game targeting younger audiences who may not have grown up playing 'Scissors, Paper, Rock', but will also more broadly appeal to fans of the Star Wars franchise. *NB! The gem installation currently contains pathing errors when running the gem. To run the application, download source code from https://github.com/waldowred5/T1A3-Terminal-App, and then run the following command* `sith_jedi_ewok` in terminal from the following directory: `/Users/[user_name]/T1A3-Terminal-App/src/sith_jedi_ewok` To download all dependencies, run `bundle install` in the same directory. "If importing to your own application, add this line to your application's Gemfile:" `gem 'Sith-Lord_Jedi_Ewok'` And then execute: $ bundle install Or install it yourself as: $ gem install Sith-Lord_Jedi_Ewok
GuerrillaRotate ============== This plugin lets you have multiple view pages for the one action, so that you can rotate through different views in order to test which one is the most effective. This is known as A/B testing, split testing or side-by-side testing. It will automatically switch between the different views for different web requests (uses .rand so is pseudo random, not round-robin or anything). The particular view is sticky for a (rails) session, so that once that view has been chosen for that visitor they will see the same, consistent view each time. It integrates automagically into [Rubaidh::GoogleAnalytics](http://github.com/rubaidh/google_analytics) by setting the override_trackpageview to the name of the unique view file (instead of the action-based URL) so you can track it easily in Google Analytics. Without that you'll want to track it by putting different tracking codes in each of your view templates. Example ------- So, in your views you will create some new templates with something (can be anything including nothing) between the template name and the first part of the extension. So you might have the following files for the products/index action: app/views/products/index.html.erb app/views/products/index_alt.html.erb app/views/products/index_new.html.erb Then all you need to do is tell your controller to rotate for that action: ### app/controllers/products_controller.rb class ProductsController < ApplicationController guerrilla_rotate :index, :show # etc.. end NB: guerrilla_rotate is also aliased as guerilla_rotate for the alternative spelling and typos. Copyright © 2009 Jason King, released under the MIT license
= dm-is-published This plugin makes it very easy to add different states to your models, like 'draft' vs 'live'. By default it also adds validations of the field value. Originally inspired by the Rails plugin +acts_as_publishable+ by <b>fr.ivolo.us</b>. == Installation # Add GitHub to your RubyGems sources $ gem sources -a http://gems.github.com $ (sudo)? gem install kematzy-dm-is-published <b>NB! Depends upon the whole DataMapper suite being installed, and has ONLY been tested with DM 0.10.0 (next branch).</b> == Getting Started First of all, for a better understanding of this gem, make sure you study the '<tt>dm-is-published/spec/integration/published_spec.rb</tt>' file. ---- Require +dm-is-published+ in your app. require 'dm-core' # must be required first require 'dm-is-published' Lets say we have an Article class, and each Article can have a current state, ie: whether it's Live, Draft or an Obituary awaiting the death of someone famous (real or rumored) class Article include DataMapper::Resource property :id, Serial property :title, String ...<snip> is :published end Once you have your Article model we can create our Articles just as normal Article.create(:title => 'Example 1') The instance of <tt>Article.get(1)</tt> now has the following things for free: * a <tt>:publish_status</tt> attribute with the value <tt>'live'</tt>. Default choices are <tt>[ :live, :draft, :hidden ]</tt>. * <tt>:is_live?, :is_draft? or :is_hidden?</tt> methods that returns true/false based upon the state. * <tt>:save_as_live</tt>, <tt>:save_as_draft</tt> or <tt>:save_as_hidden</tt> converts the instance to the state and saves it. * <tt>:publishable?</tt> method that returns true for models where <tt>is :published </tt> has been declared, but <b>false</b> for those where it has not been declared. The Article class also gets a bit of new functionality: Article.all(:draft) => finds all Articles with :publish_status = :draft Article.all(:draft, :author => @author_joe ) => finds all Articles with :publish_status = :draft and author == Joe Todo Need to write more documentation here.. == Usage Scenarios In a Blog/Publishing scenario you could use it like this: class Article ...<snip>... is :published :live, :draft, :hidden end Whereas in another scenario - like in a MenuItem model for a Restaurant - you could use it like this: class MenuItem ...<snip>... is :published :on, :off # the item is either on the menu or not end == RTFM As I said above, for a better understanding of this gem/plugin, make sure you study the '<tt>dm-is-published/spec/integration/published_spec.rb</tt>' file. == Errors / Bugs If something is not behaving intuitively, it is a bug, and should be reported. Report it here: http://github.com/kematzy/dm-is-published/issues == Credits Copyright (c) 2009-07-11 [kematzy gmail com] Loosely based on the ActsAsPublishable plugin by [http://fr.ivolo.us/posts/acts-as-publishable] == Licence Released under the MIT license.
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.
No description provided.
No description provided.