- Le successeur de Pierre, Jean Michel
- Georges balandier, anthropologue politique
- Traité de servitude volontaire
- Saga de l'assassin royal, Robin hobe
- Introduction au siècle des menaces, Jacques blamont
- Transition 2017, Vincent Mignerot
- Comment les riches détruisent la planète
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
function doc (obj){ | |
var res = {}; | |
_.each(obj, function (val, key) { | |
if(_.isArray(val)) { | |
res[key] = {"type": "array", items:{type:"object","properties": doc(val)}}; | |
} else if(_.isObject(val)) { | |
res[key] = {"type": "object","properties": doc(val)}; | |
} else if(_.isString(val)){ | |
res[key] = {type:'string'}; | |
} else if(_.isInteger(val)){ |
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
<div class="row"> | |
<div class="col-12 d-block d-sm-none">XS</div> | |
<div class="col-12 d-none d-sm-block d-md-none">SM</div> | |
<div class="col-12 d-none d-md-block d-lg-none">MD</div> | |
<div class="col-12 d-none d-lg-block d-xl-none">LG</div> | |
<div class="col-12 d-none d-xl-block">XL</div> | |
</div> |
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
.directive('isolateApp', function ($injector, $interval, User) { | |
return { | |
scope: {}, | |
restrict: 'E', | |
compile: function (element, attrs) { | |
var html = element.html(); | |
element.html(''); | |
return function (scope, element) { | |
scope.$destroy(); |
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
<div class="lds-spinner"> | |
<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div> | |
</div> |
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
<pre ng-repeat="(key, val) in this">{{key}} = {{val|json}}</pre> |
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
WITH upsert AS | |
(UPDATE maTable | |
SET monChamp = 'nouvelleValeur'; | |
WHERE monId = cetId | |
RETURNING *) | |
INSERT INTO maTable | |
(monId, monChamp) | |
SELECT cetId, 'nouvelleValeur' | |
WHERE NOT EXISTS (SELECT * FROM upsert); |
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
heroku labs:enable http-sni --app <your app> | |
heroku plugins:install heroku-certs |
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
./certbot-auto certonly --manual --email [email protected] -d mondomaine.fr -d www.mondomaine.fr |
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
git clone https://github.com/certbot/certbot.git | |
cd certbot | |
./certbot-auto --help all |
NewerOlder