Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/llamalad7/simple_barcode_output
This is a ruby program which outputs barcodes made of | in the terminal. Currently supports UPC A, EAN 13, EAN 8, EAN 2,
https://github.com/llamalad7/simple_barcode_output
Last synced: 4 days ago
JSON representation
This is a ruby program which outputs barcodes made of | in the terminal. Currently supports UPC A, EAN 13, EAN 8, EAN 2,
- Host: GitHub
- URL: https://github.com/llamalad7/simple_barcode_output
- Owner: LlamaLad7
- Created: 2015-10-22T07:16:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T14:19:29.000Z (about 9 years ago)
- Last Synced: 2024-11-08T04:23:45.660Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple_Barcode_Output
This is a ruby program which outputs barcodes made of | in the terminal. Currently supports UPC A, EAN 13, EAN 8, EAN 2 and EAN 5.Step 1:
Download Simple_Barcode_Output.rbStep 2:
Copy and paste into the directory with the ruby program(s) that will use it.Step 3:
Start your program with:
require_relative 'Simple_Barcode_Output'Step 4: Code (This program will calculate the check digits for you)
UPC A = OutputBarcodeUPC_A(value(in quotes))
EAN 13 = OutputBarcodeEAN_13(value(in quotes))
EAN 8 = OutputBarcodeEAN_8(value(in quotes))
EAN 5 = OutputBarcodeEAN_5(value(in quotes))
EAN 2 = OutputBarcodeEAN_2(value(in quotes))