Skip to content

Instantly share code, notes, and snippets.

View touv's full-sized avatar

Nicolas Thouvenin touv

View GitHub Profile
@touv
touv / markdown-express-render.js
Created March 10, 2014 13:08
Render Markdown files as templates
'use strict';
var fs = require('fs')
, marked = require('marked')
;
module.exports = function (options) {
if (!options) {
options = {};
}
@touv
touv / express-jsdav.js
Last active March 16, 2016 16:29
webdav for nodjes with express middleware
"use strict";
var express = require('express');
var app = express();
var jsDAV = require("jsDAV/lib/jsdav");
app.use(function (req, res, next) {
if (req.url.search(/^\/webdav/) >= 0) {
jsDAV.mount({
node: __dirname + "/data",
mount: "/webdav",
@touv
touv / gist:8cfa99ae6a82af5cea38
Created September 11, 2014 12:28
necessary ubuntu packages for nodejs
sudo apt-get install libssl-dev build-essential
@touv
touv / mongodb-local
Created November 7, 2014 12:57
Local launcher for mongodb
#!/bin/sh
#
# init.d script with LSB support.
#
# Copyright (c) 2007 Javier Fernandez-Sanguino <[email protected]>
#
# This is free software; you may redistribute it and/or modify
# it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2,
# or (at your option) any later version.
@touv
touv / addswap.sh
Last active June 29, 2017 19:13
Add swap on Ubuntu 14.04LTS
#!/bin/bash
sudo fallocate -l 4G /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
# SWAP ENCRYPTION
# sudo ecryptfs-setup-swap
@touv
touv / archive.sh
Last active February 20, 2016 18:26
rsync -avz /source /target
@touv
touv / check-eth0.sh
Last active February 20, 2016 18:25
check if interface eth0 is up
cat /sys/class/net/eth0/operstate
@touv
touv / mongodb.md
Last active March 30, 2016 08:27
Launch MongoDB via Docker

Create & Run

docker run --net=host --name mongodb -v ${PWD}/.mongodb/data/db:/data/db -p 27017:27017 -d mongo:3.0 --smallfiles

Create the "mongodb" container :

docker create --net=host --name mongodb -v ${PWD}/.mongodb/data/db:/data/db -p 27017:27017 mongo:3.0 --smallfiles
{
"get" : "doi",
"first" : true,
"resolveDOI" : true,
"$title" : {
"get" : "doi-publication-title",
"first" : true
},
"$issn" : {
"get" : "doi-ISSN",
@touv
touv / gist:435717cad174e16a61b891940ce0bb0a
Last active November 22, 2018 09:39
edit no_proxy in gnome settings
dconf-editor
and open dconf-editor -> system -> proxy