James T

Results 40 comments of James T

This is still an issue, I think it may be the same issue anyways: ``` Thread crashed while downloading chapter: tokyo ghoul - 39 Exception in thread Thread-42: Traceback (most...

I did solve it partially. I'm checking if the show more button leads to another site and running article parsing on that page. Otherwise, I'm grabbing the text and title...

to summarize: - make aliases for core commands like: `ls`, `cp`, `rm`, `mv`, etc - autocomplete (linux, macos, windows)

@shubham-srivastava-goku you helped me get further in the build, but it still fails for me ``` $ react-native run-android ... FAILURE: Build failed with an exception. * What went wrong:...

Found my solution here https://github.com/react-native-community/react-native-svg/issues/584 had to change this line in the file `$myProject/android/gradle/wrapper/gradle-wrapper.properties` to `distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip` I was using gradle 2.x for whatever reason by default Other tips for others...

@shubham-srivastava-goku I wasn't getting any runtime errors, but the entire app just crashed when I called `RNFileSelector.Show` using the example usage code. I'm guessing my issue here was that I'm...

Alternatively, you can do the same but with the `chunk` method. ```rs use std::borrow::BorrowMut; use tokio::io::AsyncWriteExt; let mut response = client.get(dbg!(url)).send().await?; let mut file = tokio::fs::File::create(path).await?; while let Some(mut item)...

Had to read lib source code to make more sense of this >An example for a common root path instead of inspecting the actual origin is: > var myCommonOrigin =...

using node 14, I'd hope the following would work, but it throws an error ```js const fs = require('fs'); const JSZip = require('jszip'); // const zip = new JSZip(); const...

I'm not sure how we'd detect that it's a malformed unicode encoded string. By the time we encode the JsString as utf-16, it appears to be an acceptable string. I...