Skip to content

Instantly share code, notes, and snippets.

View smonff's full-sized avatar

Sébastien Feugère smonff

View GitHub Profile
@smonff
smonff / smartphone.poetry
Created November 24, 2013 22:08
smartphone poetry
smartphone poetry
not for books, made by me
available for you
as an open work
you should add your own
@smonff
smonff / jsbin.UkIFuRi.css
Last active December 24, 2015 11:59
Search a textarea for a mail address and disable the sform submission button if found
input {
height: 50px;
width: 90%;
}
#message {
color: red;
}
@smonff
smonff / gettext
Created September 3, 2013 15:16
The command line for pot files generation
xgettext.pl --verbose --directory=mon/directory --directory=mon/autre/directory --output=la/bas/out.pot
@smonff
smonff / ubuntu-configure-sendmail-with-gmail
Created November 28, 2012 20:10 — forked from sshtmc/ubuntu-configure-sendmail-with-gmail
Ubuntu sendmail using smtp.gmail.com
#!/bin/bash
HOST=$(hostname)
function install_postfix() {
echo | sudo debconf-set-selections <<__EOF
postfix postfix/root_address string
postfix postfix/rfc1035_violation boolean false
postfix postfix/mydomain_warning boolean
postfix postfix/mynetworks string 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
@smonff
smonff / unique_uuid.pl
Created November 20, 2012 16:15
Generate a hundred UUID.
#!usr/bin/perl
use strict;
use warnings;
use feature(qw/say/);
use Data::UUID;
my $ug = new Data::UUID;
my $idx = 0;
my $uuid;
my $unik;