This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'CSV' | |
| input_path = ARGV[0] | |
| output_path = ARGV[1] | |
| output_array = Array.new | |
| regex = /^([a-zA-Z]*).*$/ | |
| #class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'CSV' | |
| require 'easy_diff' | |
| dcsexport = ARGV[0] | |
| opsexport = ARGV[1] | |
| def csv_to_hash(file_location) | |
| result = {} | |
| CSV.foreach(file_location) do |row| | |
| results[row.values[0]] = row |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#states').html("") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>My Calc</title> | |
| <META name="Author" content="Phil"> | |
| </head> | |
| <script type="text/javascript" src="calc_nums_only.js"></script> | |
| <script type="text/javascript"> | |
| function processForm() { |