Share and port your snippets between multiple tools.
The Snips Assistant Manager
Snips NLU Integration
snips
Toolkit for writing Snips actions.
Jovo Model for Snips NLU
Generator for writing Snips action code in Javascript.
Snips javascript actions runner.
Snips toolkit utilities.
Snips toolkit testing utilities.
Generator for writing Snips action code in Typescript.
Snips toolkit CLI tool.
Snips toolkit runner.
Teleport platform template in the case of the Snips docker/kubernetes infrastructure
Expo Snips standalone universal module
Snips Rustling library binding for Node.js
Snips NLU Integration
Snips arguments off of callback functions.
snips
The package provides a SnipsMicrophone Component to stream microphone pcm data to snips via mqtt. Implements audioserver, hotword and tts elements of the Snips hermes mqtt protocol over mqtt and websockets.
Teleport platform template in the case of the Snips Google Compute Engine infrastructure
The Snips Public Test Module
Gist backed commandline snippet utility
React component for testing out different queries against the Snips AI SDK.
Keep code snippets in markdown files in sync
A CLI tool (snip-cli) for managing Neovim and VSCode snippets
Hermit incentive contract
Replace a wasm function with an `unreachable`.
Markers for hidden lines in rust blocks within an mdbook
Text snippets on the command line. Inspired by Zach Holman's Boom
Command line utility to help with storing text (eg. code snips)
Snip local Git branches that do not exist on the remote.
Language Server Protocol implementation for bkmr snippet manager
A CLI tool to create images from code snippets.
Interface library for the snip-services snip capability,
A tiny but elegent screeshot with selecting region tool with GUI based on EGUI.
A mini local snippet manager.
Using simple tags, you can mark snips in your code without interrupting your workflow. At the end of the day, run 'snip' to gather your snips from all your code for easy review. Compatible with Ruby and JavaScript. Visit the GitHub homepage for further instructions and developer contact details.
Someone had to do it. After installation just type 'snip'
Sinatra Extensions for SnipSnap
= 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.