We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 7.
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
MARKETPLACE_KEY,CHANNEL_PRODUCT_ID,S_NAME | |
Amazon-CA,B01CM0TR5Y,"Universal Descaling Solution (2 Uses Per Bottle), Designed For Keurig, Ninja, Nespresso, Delonghi and All Single Use Coffee and Espresso Machines, Coffee Machine Descaler Made in the USA" | |
Amazon-GB,B06XKGYJHR,Luigi's Syphon Cleaner for Aquarium - Filtered Hand Vacuum Syphon Pump - 3-in-1 Water Changer and Gravel Washer for Fish Tank - Fishtank Cleaning Equipment and Accessories | |
Amazon-US,B06XKHP8Q4,"Water & Fuel Transfer Pump Siphon - Large Squeezing Gas Siphon for Lawn Mowers & Manual Pumping Petrol, Water Syphon, Alcohol and more! (By Luigi's)" | |
Amazon-DE,B00R44J4RU,"Kurtzy 50-er Pack Holzherzen mit 10m Jute Schnur - 10x10cm Streudeko Set Holz Herzen Unbehandelt mit Loch zum Beschriften - Holzherz Deko für Hochzeit, Party, Jubiläum, Geschenkanhänger, zum Basteln" | |
Amazon-GB,B01K0YPWEY,H&S Door Stop Stopper Heavy Duty Weight Stainless Steel Doorstop Bumper Rubber Buffer Ring - Dome | |
Amazon-GB,B076T5GBXZ,"The Worlds Best Paint Pad Set: Maximum Cover |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
City | |
New York | |
Los Angeles | |
Chicago | |
Houston | |
Phoenix | |
Philadelphia | |
San Antonio | |
San Diego | |
Dallas |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<base href="/" /> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="viewport" content="user-scalable=yes"> | |
<link rel="apple-touch-icon" href="https://analytics.datahawk.co/static/assets/img/dawk-logo.png" /> | |
<link rel="icon" href="https://analytics.datahawk.co/static/assets/img/dawk-logo.png" /> | |
<title>DataHawk</title> |
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
function readDir(start, callback) { | |
// Use lstat to resolve symlink if we are passed a symlink | |
fs.lstat(start, function(err, stat) { | |
if(err) { | |
return callback(err); | |
} | |
var found = {dirs: [], files: []}, | |
total = 0, | |
processed = 0; | |
function isDir(abspath) { |