✍️ Normalize quotes, dashes, and ellipsis in strings.
string-argv parses a string into an argument array to mimic process.argv. This is useful when testing Command Line Utilities that you want to pass arguments to.
Clean files and folders
A well-tested CSS minifier
Repair broken JSON documents
Clean up error stack traces
Prevent the use of curly quote/apostrophe characters
Count how often a character (or substring) is used in a string
Copy file globs, watching for changes.
Convert matching double-quotes to single-quotes: `I "love" unicorns` → `I 'love' unicorns`
Convert matching single-quotes to double-quotes: I 'love' unicorns → I "love" unicorns
Smart quotes are smart typography.
Ultra-fast cross-platform command line utility to watch file system changes.
Editor.js — open source block-style WYSIWYG editor with JSON output
A webpack plugin to remove/clean your build folder(s).
This package is part of the [React Native CLI](../../README.md). It contains commands for cleaning the build artifacts.
Always use curly quotes
Copy file globs, watching for changes.
Raw data about typographic quotes
retext plugin to check quotes and apostrophes
Clean up regular expressions
A permissive parser for dirty JSON data that does its best
Escape strings for use as JavaScript string literals
TypeScript definitions for clean-css
== DESCRIPTION: Welcome to the PDF-Labels project. Our aim is to make creating labels programmatically easy in Ruby. This Library builds on top of "PDF::Writer":http://ruby-pdf.rubyforge.org/ and uses the templates from "gLabels":http://glabels.sourceforge.org. What this means is easy, clean Ruby code to create many common label types without measuring the labels yourself! All of this in pure Ruby (we use the XML templates from gLabels, we do NOT have a dependancy on gLabels, nor on Gnome) == FEATURES/PROBLEMS: * Works with all gLabels supported templates for rectangular labels * Does not yet work for CD labels (circles) == SYNOPSIS: p = PDFLabelPage.new("Avery 8160") # label is 2 x 10 #Some examples of adding labels p.add_label() # should add to col 1, row 1 p.add_label(:position => 1) # should add col 1, row 2 p.add_label(:text => "Positoin 15", :position => 15) # should add col 2, row 1 p.add_label(:text => 'No Margin', :position => 5, :use_margin => false) #this doesn't use a margin p.add_label(:position => 9, :text => "X Offset = 4, Y Offset = -6", :offset_x => 4, :offset_y => -6) p.add_label(:text => "Centered", :position => 26, :justification => :center) # should add col 2, row 15 p.add_label(:text => "[Right justified]", :justification => :right, :position => 28)# col 2, row 14, right justified. p.add_label(:position => 29) # should add col 2, row 15 p.add_label(:position => 8, :text => "This was added last and has a BIG font", :font_size => 18)
== DESCRIPTION: RubySync is a tool for synchronizing part or all of your directory, database or application data with anything else. It's event driven so it will happily sit there monitoring changes and passing them on. Alternatively, you can run it in one-shot mode and simply sync A with B. You can configure RubySync to perform transformations on the data as it syncs. RubySync is designed both as a handy utility to pack into your directory management toolkit or as a fully-fledged provisioning system for your organization. == FEATURES/PROBLEMS: * Event-driven synchronization (if connector supports it) with fall-back to polling * Ruby DSL for "configuration" style event processing * Clean separation of connector details from data transformation * Connectors available for CSV files, XML, LDAP and RDBMS (via ActiveRecord) * Easy API for writing your own connectors == SYNOPSIS: