I hereby claim:
- I am clement-ts on github.
- I am clementdesiles (https://keybase.io/clementdesiles) on keybase.
- I have a public key ASAmt6v4uJ7hZHydK6yYKrSWdUqjHKD9ZnqeR34AkgO3Pwo
To claim this, I am signing this object:
/** | |
* @author Clément Désiles <[email protected]> | |
* @date 2016-07-12 | |
* @description Record model | |
*/ | |
'use strict' | |
const joi = require('joi') | |
module.exports = joi.object().keys({ | |
// mongo ObjectId |
#! /bin/sh | |
# author: Clément Désiles | |
# date: 01/08/2016 | |
# source: https://gist.github.com/suma/8134207 | |
# source: http://stackoverflow.com/questions/34094792/autossh-pid-is-not-equal-to-the-one-in-pidfile-when-using-start-stop-daemon | |
### BEGIN INIT INFO | |
# Provides: autossh | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog |
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
{ | |
"disallowEmptyBlocks": true, | |
"disallowSpacesInsideArrayBrackets": true, | |
"disallowSpacesInsideParentheses": true, | |
"disallowQuotedKeysInObjects": true, | |
"disallowSpaceAfterObjectKeys": true, | |
"disallowSpaceAfterPrefixUnaryOperators": true, | |
"disallowSpaceBeforePostfixUnaryOperators": true, | |
"disallowSpaceBeforeBinaryOperators": [ | |
"," |
{ | |
"strict": true, | |
"node": true, | |
"browser": true, | |
"mocha":true, | |
"laxbreak": true, | |
"laxcomma": true, | |
"lastsemic": true, | |
"nomen": true, | |
"white": true, |
www/bower_components/ | |
www | |
node_modules/ | |
test/ | |
coverage/ |
version: '2' | |
services: | |
proxy: | |
image: nginx:stable | |
container_name: proxy | |
ports: | |
- 80:80 | |
- 443:443 | |
restart: always |
version: '2' | |
services: | |
mongo: | |
image: mongo | |
container_name: mongo | |
networks: | |
telecomsante.loc: | |
aliases: | |
- mongo.telecomsante.loc | |
networks: |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# author: Clément Désiles aka Jokester | |
# date: 2019-09-30 | |
# | |
# requires: lstags, jq and yq | |
# install hints: | |
# $ sudo apt install -qqy jq && pip install yq | |
# $ wget -O /tmp/lstags.tar.gz https://github.com/ivanilves/lstags/releases/download/v1.1.2/lstags-linux-v1.1.2.tar.gz | |
# $ tar -xvf /tmp/lstags.tar.gz && rm -f /tmp/lstags.tar.gz | |
# $ mv lstags $HOME/.local/bin |