{
"fr.pierrezemb.www": { // Row key
"contents": { // Column family
"content:html": { // Column qualifier
"2017-01-01": // A timestamp
"<html>...", // The actual value
"2016-01-01": // Another timestamp
"<html>..." // Another cell
},
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
| final DataStream<Tuple4<PlanIdentifier, Alert, Plan, Operation>> alertStream = | |
| // Partitioning Stream per AlertIdentifier | |
| cleanedAlertsStream.keyBy(0) | |
| // Applying a Map Operation which is setting since when an alert is triggered | |
| .map(new SetSinceOnSelector()) | |
| .name("setting-since-on-selector").uid("setting-since-on-selector") | |
| // Partitioning again Stream per AlertIdentifier | |
| .keyBy(0) |
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="llvm" title="llvm"> | |
| <outline type="rss" text="LLVM Project Blog" title="LLVM Project Blog" xmlUrl="http://blog.llvm.org/feeds/posts/default" htmlUrl="http://blog.llvm.org/"/> | |
| <outline type="rss" text="LLVM Weekly" title="LLVM Weekly" xmlUrl="http://llvmweekly.org/rss.xml" htmlUrl="http://llvmweekly.org/"/> |
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
| #include <Keyboard.h> | |
| void setup() { | |
| pinMode(2, INPUT_PULLUP); | |
| // pinMode(4, INPUT_PULLUP); | |
| pinMode(13, OUTPUT); | |
| Keyboard.begin(); | |
| } | |
| void loop() { |
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
| #!/bin/bash | |
| mkdir /mnt/exherbo && mount /dev/nvme0n1p2 /mnt/exherbo && cd /mnt/exherbo | |
| mount -o rbind /dev /mnt/exherbo/dev/ | |
| mount -o bind /sys /mnt/exherbo/sys/ | |
| mount -t proc none /mnt/exherbo/proc/ | |
| mount /dev/nvme0n1p1 /mnt/exherbo/boot/ | |
| env -i TERM=$TERM SHELL=/bin/bash HOME=$HOME $(which chroot) /mnt/exherbo /bin/bash | |
| source /etc/profile |
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 |
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
| 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
| <?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/"/> |