Andy Jackson

Results 167 comments of Andy Jackson

The [code above](https://github.com/puppeteer/puppeteer/issues/2781#issuecomment-513045753) didn't seem to work for me, as there was no `page` associated with a `ServiceWorker` target. Managing the Targets directly did work, like this: ``` /** *...

Sorry about that! Should work okay from the next release.

BTW, 1.1.7 is [out now](https://groups.google.com/d/msg/openwayback-dev/H5GpHsNXpu4/57Lf00NpAQAJ).

Given some of the other stuff you're planning, I'd be surprised if Tika slows you down much. If you do decide to try it, you best bet is to just...

Ah, I see you've tried it before. Your current implementation instantiates Tika on every request: https://github.com/lintool/warcbase/blob/26d2ef518fb33632dcfd6a0bcfbd00ff7731d232/src/main/scala/org/warcbase/spark/matchbox/DetectMimeTypeTika.scala#L35 Tika isn't intended to be used this way, and will be very slow (as...

You need Java 7 installed ([more info here](http://stackoverflow.com/questions/10382929/how-to-fix-java-lang-unsupportedclassversionerror-unsupported-major-minor-versi))

Ah, no. The error is consistent with Java 6 being the active version. What do you get if you print the Java version? e.g. ``` $ java -version java version...

So, is the JAVA_HOME environment variable set? ``` echo $JAVA_HOME ``` Because that can override the system default. If that's not set, then you should be able to change the...

Two options I can think of. First, there's a hard-coded hook to Java 6 in your PATH. See ``` echo $PATH ``` Second, that Java 6 is set as your...

It's there I promise! Failing that, you can set JAVA_HOME as shown here: http://stackoverflow.com/a/24657630