Skip to content

Instantly share code, notes, and snippets.

View nono's full-sized avatar

Bruno Michel nono

  • Cozy Cloud
  • Paris, France
View GitHub Profile
@nono
nono / conv.go
Last active December 18, 2015 01:39 — forked from jeromenerf/gist:5679866
package main
import (
"fmt"
proj "github.com/pebbe/go-proj-4/proj"
)
const (
// Epsg = "+init=epsg:27572"
Epsg = "+proj=lcc +lat_1=46.8 +lat_0=46.8 +lon_0=2.33722917 +k_0=0.99987742 +x_0=600000 +y_0=2200000 +a=6378249.2 +pm=paris +units=m +no_defs no_defs <>"
@nono
nono / mix_periods.rb
Created February 29, 2012 12:30 — forked from shingara/mix_periods.rb
Method to compare if some periods define by start_date and end_date are mixed
def mix_periods
list_period = seasons.inject([]) do |acc, season|
season.periods.inject(acc) do |a,period|
a << (period.start_date..period.end_date); a
end
end
until list_period.empty?
period_test = list_period.pop
if list_period.any?{|lp| period_test.cover?(lp.begin) || lp.cover?(period_test.begin) }
@nono
nono / gist:1600053
Created January 12, 2012 11:48 — forked from athoune/gist:1599957
autocomplete with tire
#encoding: utf-8
require 'tire'
require 'json'
require 'active_support/core_ext/object/to_query'
require 'active_support/core_ext/object/to_param'
conf = {
settings: {
number_of_shards: 1,
number_of_replicas: 0,
@nono
nono / gist:1237214
Created September 23, 2011 12:20 — forked from shingara/gist:1237097
Comment répondre qu'on a pas de temps libre extensible pour créer un site internet sans être payé.
Je suis désolé, mais je ne correspond pas à ce que vous cherchez. Développer un site internet tel que celui-ci prend plusieurs mois hommes.
Je n'ai personnellement que 3 heures par semaine de disponible actuellement en dehors de mon travail de salarié chez bemyboat, de CTO chez supermarmite et de père de famille.
Je ne pourrais donc pas vous aider à moins que vous ne soyez prêt à patienter plusieurs années pour avoir une version beta.
Cordialement,
Cyril Mougel
Username = <%= @var %>
@nono
nono / _gem
Created August 23, 2009 19:10 — forked from tomafro/_gem
#compdef gem
# My first zsh completion function, for the gem command. It lets you type 'gem <tab>' to complete gem commands
# (including installed ones) and for some commands (currently just open and update) allows you to complete gem
# names as well. The implementation isn't ideal, so I'd appreciate advice on how I can improve it, particularly
# the 'caching' of the gem_commands and installed_gems.
local curcontext="$curcontext" state line ret=1
_arguments -C \