{
"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
#!/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
#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
<?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
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
linux-vdso.so.1 (0x00007ffdc45aa000) | |
libSDL2-2.0.so.0 => /lib64/libSDL2-2.0.so.0 (0x00007f4533950000) | |
libX11.so.6 => /lib64/libX11.so.6 (0x00007f453380b000) | |
libXrandr.so.2 => /lib64/libXrandr.so.2 (0x00007f45337fe000) | |
libcef.so => not found | |
libopus.so.0 => /lib64/libopus.so.0 (0x00007f453379c000) | |
libuv.so.1 => /lib64/libuv.so.1 (0x00007f453376b000) | |
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f4533748000) | |
libssl.so.1.1 => /lib64/libssl.so.1.1 (0x00007f45336b2000) | |
libcrypto.so.1.1 => /lib64/libcrypto.so.1.1 (0x00007f45333d1000) |
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/bookkeeper shell bookieformat -nonInteractive -force -deleteCookie | |
bin/bookkeeper shell listunderreplicated -printmissingreplica | |
bin/bookkeeper shell listbookies -readwrite |
1.1 => u want want to use Q
https://helloexoworld.github.io/hew-hands-on/step-2-Keplers-Data/2.1-Did-you-said-Time-Series/ => once you have defined
2.2 you survived
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
CPPFLAGS -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align | |
make[2]: Entering directory '/usr/src/app/node_modules/node-rdkafka/deps/librdkafka/src-cpp' | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtual-dtor -c RdKafka.cpp -o RdKafka.o | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtual-dtor -c ConfImpl.cpp -o ConfImpl.o | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtual-dtor -c HandleImpl.cpp -o HandleImpl.o | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtual-dtor -c ConsumerImpl.cpp -o ConsumerImpl.o | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtual-dtor -c ProducerImpl.cpp -o ProducerImpl.o | |
g++ -MD -MP -g -O2 -fPIC -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wcast-align -Wno-non-virtua |
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
// Licensed to the Apache Software Foundation (ASF) under one | |
// or more contributor license agreements. See the NOTICE file | |
// distributed with this work for additional information | |
// regarding copyright ownership. The ASF licenses this file | |
// to you under the Apache License, Version 2.0 (the | |
// "License"); you may not use this file except in compliance | |
// with the License. You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// |