- https://archive.stsci.edu/pub/kepler/lightcurves/0118/011853905/
- https://archive.stsci.edu/pub/kepler/lightcurves/0081/008191672/
- https://archive.stsci.edu/pub/kepler/lightcurves/0108/010874614/
- https://archive.stsci.edu/pub/kepler/lightcurves/0057/005780885/
- https://archive.stsci.edu/pub/kepler/lightcurves/0069/006922244/
- https://archive.stsci.edu/pub/kepler/lightcurves/0033/003323887/
- https://archive.stsci.edu/pub/kepler/lightcurves/0119/011904151/
- https://archive.stsci.edu/pub/kepler/lightcurves/0065/006541920/
- https://archive.stsci.edu/pub/kepler/lightcurves/0118/011804465/
- https://archive.stsci.edu/pub/kepler/lightcurves/0099/009941662/
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
# g1_parallel_gc_threads = nthreads * 5/8 + 8 | |
# g1_conc_gc_threads = g1_parallel_gc_threads / 4 |
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
http://0.0.0.0:80 { | |
tls off | |
browse | |
cors / | |
markdown / { | |
template index /templates/index.html | |
css /templates/index.css | |
} | |
root /Users/pierrezemb/workspace/personal/warpscript/hands-on | |
} |
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
FROM openjdk:8 | |
RUN apt update | |
RUN apt install git curl curl -y | |
RUN curl https://getcaddy.com | bash -s personal http.cors | |
WORKDIR / | |
RUN mkdir /hands-on | |
ADD quantum /hands-on/quantum | |
ADD assets /hands-on/assets | |
ADD quantum /hands-on/quantum |
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
FROM danisla/hadoop:2.7.3 | |
ENV VERSION 1.3.1 | |
ENV DESTINATION /opt/hbase | |
WORKDIR / | |
ADD http://archive.apache.org/dist/hbase/${VERSION}/hbase-${VERSION}-bin.tar.gz / | |
RUN tar -xvf /hbase-${VERSION}-bin.tar.gz | |
RUN ls / |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Pierre subscriptions in feedly Cloud</title> | |
</head> | |
<body> | |
<outline text="OS distributions" title="OS distributions"> | |
<outline type="rss" text="Arch Linux: Recent news updates" title="Arch Linux: Recent news updates" xmlUrl="https://www.archlinux.org/feeds/news/" htmlUrl="https://www.archlinux.org/news/"/> | |
<outline type="rss" text="Arch Linux - Recent News Updates" title="Arch Linux - Recent News Updates" xmlUrl="http://www.archlinux.org/feeds/news/" htmlUrl="https://www.archlinux.org/news/"/> |
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
cryptsetup luksOpen | |
cd /mnt/arch # or where you are preparing the chroot dir | |
mount -t proc proc proc/ | |
mount -t sysfs sys sys/ | |
mount -o bind /dev dev/ | |
chroot . | |
mkinipcipio -p linux |
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
package hrpc | |
import ( | |
"context" | |
"github.com/golang/protobuf/proto" | |
"github.com/tsuna/gohbase/pb" | |
) | |
// AssignRegion represents a AssignRegion Hbase call request. |
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
java.lang.RuntimeException: Failed request 0. | |
Caused by: org.apache.flink.queryablestate.exceptions.UnknownLocationException: Could not retrieve location of state=repo-status of job=3ab3bc00b2d5bc0752917186a288d40a. Potential reasons are: i) the state is not ready, or ii) the job does not exist. | |
at org.apache.flink.queryablestate.client.proxy.KvStateClientProxyHandler.getKvStateLookupInfo(KvStateClientProxyHandler.java:228) | |
at org.apache.flink.queryablestate.client.proxy.KvStateClientProxyHandler.getState(KvStateClientProxyHandler.java:162) | |
at org.apache.flink.queryablestate.client.proxy.KvStateClientProxyHandler.executeActionAsync(KvStateClientProxyHandler.java:129) | |
at org.apache.flink.queryablestate.client.proxy.KvStateClientProxyHandler.handleRequest(KvStateClientProxyHandler.java:119) | |
at org.apache.flink.queryablestate.client.proxy.KvStateClientProxyHandler.handleRequest(KvStateClientProxyHandler.java:63) | |
at org.apache.flink.queryablestate.network.AbstractServerHandler$AsyncRequestTask.run(Abstract |