Skip to content

Instantly share code, notes, and snippets.

View Kineolyan's full-sized avatar
💭
Exploring clouds

Olivier Peyrusse Kineolyan

💭
Exploring clouds
  • ActiveViam
  • France
View GitHub Profile
@Kineolyan
Kineolyan / keymase.md
Created May 20, 2023 06:01
keybase signature

Keybase proof

I hereby claim:

  • I am kineolyan on github.
  • I am kineolyan (https://keybase.io/kineolyan) on keybase.
  • I have a public key ASA4qw2Na1-x2Gdnu6fs4Kc7WG3fnXeMP2TDUZzpwbUxtAo

To claim this, I am signing this object:

@Kineolyan
Kineolyan / box.html
Created February 21, 2019 11:00
React without using setState
<!DOCTYPE html>
<html>
<head>
<script src="https://unpkg.com/react@16.5.1/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16.5.1/umd/react-dom.production.min.js"></script>
<title>Tests</title>
<meta charset="UTF-8">
</head>
<body>
<div id="app"></div>
@Kineolyan
Kineolyan / script.sh
Created June 6, 2018 11:47
Smart bash pipe keeping the last line
function t() {
for e in $(echo 'ab ac ad e bc bd e cd')
do
echo $e
sleep 1
done
}
t | while read line;
do
@Kineolyan
Kineolyan / index.html
Created June 24, 2017 14:36
fj-agent
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
.bar-container {
height: 15px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<script src="https://fb.me/react-15.1.0.js"></script>
<script src="https://fb.me/react-dom-15.1.0.js"></script>
<body>