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
{ | |
"categories": { | |
"1": "Customer Feedback", | |
"2": "Retention/Loyalty", | |
"3": "Customer Success" | |
}, | |
"example_categories": { | |
"1": "Running Shoes", | |
"2": "Nutrition Product", | |
"3": "Cycling Product", |
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 'underscore' | |
fs = require 'fs' | |
plist = require 'plist' | |
ccase = require 'change-case' | |
stdio = require 'stdio' | |
opts = stdio.getopt | |
'input': | |
description: 'input', | |
mandatory: true, |
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 'underscore' | |
beautify = require('js-beautify').css | |
stdio = require 'stdio' | |
fs = require 'fs' | |
opts = stdio.getopt | |
'input': | |
description: 'input', | |
mandatory: true, | |
args: 1, |
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
/* CSS */ | |
$height: 85px; | |
$width: 700px; | |
.container { position: relative } | |
.card { | |
height: $height; | |
width: $width; | |
z-index: 1; |