Skip to content

Instantly share code, notes, and snippets.

View cstar's full-sized avatar

Eric Cestari cstar

  • Escape Velocity Operations
  • Paris, France
  • 01:36 (UTC -12:00)
  • LinkedIn in/ecestari
View GitHub Profile
%% A faire
% - passer en configuration l'arborescence des facette (par type)
% {mod_search, [{facet, {type, "produit"}, [{"facet.limit",5}], [
% style,
% {price, [{query, "price:[*+TO+500]"},
% {query, "price:[500+TO+*]"}]}
% ]}
% {facet, {type, "session"}, [], [style, gangs]}
% ]
% }
#! /bin/sh
### BEGIN INIT INFO
# Provides: redis-server
# Required-Start: $syslog
# Required-Stop: $syslog
# Should-Start: $local_fs
# Should-Stop: $local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: redis-server - Persistent key-value db
@cstar
cstar / date_util.erl
Created September 22, 2009 14:21 — forked from zaphar/date_util.erl
-module(date_util).
-compile(export_all).
epoch() ->
now_to_seconds(now())
.
epoch_hires() ->
now_to_seconds_hires(now())
.