Recette pour 15-16 pains à hamburger. Il est aisé de la diviser par 2 si besoin de plus petites quantités. Il est aussi possible de diviser les boules en 2 pour en faire des petits, pour les enfants ou l'apéro.
This file contains 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
{ | |
"service": { | |
"name": "node-exporter", | |
"port": 9100 | |
} | |
} |
There's so many way to send logs to an elk... logspout, filebeat, journalbeat, etc.
But docker has a gelf log driver and logstash a gelf input. So here we are.
Here is a docker-compose to test a full elk with a container sending logs via gelf.
This file contains 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
import List exposing (sum, map, foldl) | |
pow : Float -> Float -> Float | |
pow num p = | |
if p == 0 then | |
1 | |
else if p > 0 then | |
num * (pow num (p - 1)) | |
else | |
1 / num * (pow num (p + 1)) |
- put
git-quetsche
in$PATH
- run
git quetsche --mirabelle
=> executegit fetch --prune
This file contains 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/sh | |
adb pull "/data/local/tmp/$1.mp4" | |
adb shell rm "/data/local/tmp/$1.mp4" |
I hereby claim:
- I am eunomie on github.
- I am eunomie (https://keybase.io/eunomie) on keybase.
- I have a public key ASCIvP3D0xM_hpu_dFfi123J1VnXM-K0GfIo9BC_pRcYAQo
To claim this, I am signing this object:
With the scarecity of IPv4 addresses, and IPv6 still not available at large, NAT traversal is becoming a necessity. Especially with the generalisation of Carrier-grade NATs that you can find on mobile connections. Even with IPv6 you may suffer NAT66. Imagine your mobile device that gets only a single Ipv6 address, and you want to share it on your computer.
The solution might be in a decentralized protocol for address attribution such
This file contains 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
#!/usr/bin/env ruby | |
require "sqlite3" | |
DB_LOC = File.join(ENV["HOME"], "Library/Application Support/Dock/desktoppicture.db") | |
DB = SQLite3::Database.new(DB_LOC) | |
IMAGES = File.join(ENV["HOME"], "Pictures/desktops/2560x1600","*") | |
new_image = Dir[IMAGES].sort_by{ rand }[0] | |
new_image.sub!(ENV["HOME"],"~") |
This file contains 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
/* Javascript plotting library for jQuery, version 0.8.2-alpha. | |
Copyright (c) 2007-2013 IOLA and Ole Laursen. | |
Licensed under the MIT license. | |
*/ | |
// first an inline dependency, jquery.colorhelpers.js, we inline it here | |
// for convenience |
NewerOlder