Allen.YL

Results 18 comments of Allen.YL

If I use local folder as default remote, it works fine. So this problem seems happened only when I use ssh remote. And from Traceback, the error raised on [`asyncssh`](https://github.com/ronf/asyncssh)...

@pared But I think the main problem is current method: > 1. Create a git repo and dvc init > 2. Copy the log files into git repo > 3....

@shcheklein Sorry, I'm not yet tested it. But I saw this question in the dvc fourm: https://discuss.dvc.org/t/large-data-registry-on-nas-with-multiple-dvc-and-non-dvc-users/1294 I think his problem is similar to our's, and I think what I...

Hi @Calvinwuyts , It seems that the parameter in your function call may have two problems: 1. The URL "http://europeana.eu/api/v2/search.json?query="books"&rows=0&start=1&profile=facets&wskey=api2demo" seems broken, because the double quote of "books". It'll cause...

Hi @mtompkins , My gist version is OK. It seems that the PR #68 by @ronlut has not yet been merged.

@mtompkins Try `ImportJSON("http://whattomine.com/coins/214.json", "/difficulty")`

@mtompkins No, just one! ![](https://i.imgur.com/wDQ4Zrm.png)

Hi @mtompkins, sorry, I can not reproduce this issue....

@NickB23 Thanks for your report. You are right, this is an issue. Here is my fixed code https://gist.github.com/allenyllee/c764c86ed722417948fc256b7a5077c4 ``` // Changelog: // (Jul. 16 2018) tag: allenyllee-20180716 // 1. Fixed...

Just input one path at a time, don't use comma separate with multiple path. So you need to separate your single request into two items: /data[0]/children[0]/subreddit and /data[0]/children[0]/title. =ImportJSON("https://www.reddit.com/r/news/comments/94ssi3/80yearold_medical_marijuana_patient_with_expired/.json?limit=1","/data[0]/children[0]/subreddit","noHeaders") =ImportJSON("https://www.reddit.com/r/news/comments/94ssi3/80yearold_medical_marijuana_patient_with_expired/.json?limit=1","/data[0]/children[0]/title","noHeaders")