Just some general notes as I move forward with the software
-
The {data} modal width is not wide enough. I don’t see any specific need for it to be so narrow? Would even be nice to have a full screen option.
-
Search functionality. (Find and replace even better).
-
Ways to remove errors in cells or at least not display them as text? As using range2html displays the contents, eg #N/A. I would prefer it just displays an empty cell or even better my own predefined input instead such as “-”. =IF(cell = “#N/A”, “-”)
-
Hyperlink text and auto detected links automatically as hyperlinks
-
The ability to show an image url as an image inside the cell?
-
Hotkeys!
(E.G ctrl + b to bold text)
-
Having api keys visible makes me nervous. Can we put the contents of something behind a password or hidden in some way? Defining that a certain cell contains confidential info and it never shows the contents on the frontend?
-
Programming language (curl, php, python etc) to dashdash conversion. This may be not even possible but it certainly would break down the barrier of entry to use api’s. Each API documentation always gives examples in different languages. It would be sooo ideal to be able to “convert” that in to “Dashdash language”. See below for an example:
curl https://api.pixaven.com/1.0/upload -X POST -u your-api-key:
-F file=@/path/to/input.jpg
-F data=’{
“resize”: {
“width”: 100,
“height”: 75
}
}’
- Rate limiting functionality. I am always going over the rate limits. It would be nice to have a way to input the api’s rate limit somewhere and everything is handled by Dashdash to make sure you stay within those limitations.