[[start]]

Bienvenu sur mon Blog Note lol :!

Doku Auto-RSS News :!

About me...


a BLOG NOTE ZONE—-in a bOX

waty

· 2012/11/08 10:57

test

· 2009/05/22 19:03

symposium eco labels

Appel à communications : Symposium ECOTECHS'08 - Des éco-indicateurs à l'évaluation et à la certification environnementale Le Cemagref organise à Montoldre les 21 et 22 octobre prochains le symposium 'ECOTECHS 2008' sur le thème “Des éco-indicateurs à l'évaluation et à la certification environnementale”

Ce symposium traite de l'évaluation et de la certification environnementale pour l'agriculture et les filières de recyclage en lien avec l'agriculture (effluents d'élevage, boues, compost, déchets ménagers).

Ce symposium est destiné à répondre à deux questions :

  1. Où en est-on en matière d'évaluation et de certification environnementale (état des lieux, perspectives…) ?
  2. Quels outils et éco-indicateurs mettre en place pour mener à bien ces démarches en se concentrant plus particulièrement sur :
  3. les outils existants pour la certification environnementale (écolabels…)
  4. les outils d'évaluation environnementale tels que les éco-indicateurs, les outils de diagnostics environnementaux, l'Analyse de Cycle

de Vie

  1. les écotechnologies par le biais notamment de l'écoconception et l'éco-évaluation.

Nous invitons les auteurs à soumettre leurs contributions sur ces thématiques qu'elles soient scientifiques ou techniques. Les contributions feront l'objet d'un article de 6 à 8 pages et d'une communication orale ou d'un poster intégré dans les actes du symposium :

  1. Date d'envoi des résumés (1 page max) : 15 mai 2008
  2. Notification de l'acceptation : 13 juin 2008
  3. Date d'envoi des articles : 31 juillet 2008

Pour plus d'informations : http://www.clermont.cemagref.fr/Geapa/ecotechs08/ecotechs08.htm

Contact : Marilys PRADEL Mél : marilys.pradel(a)cemagref.fr

· 2008/04/24 19:13 · Jean Marc Massou

paloumette

· 2008/04/18 23:42 · Jean Marc Massou

howto convert docs to DokuWiki

I was just googleing a little to some conversion tools.

Hopefully i meet this :

http://www.linux.com/articles/61713

Main goal : Magic conversion in bureaucratic environment

    \*.doc -> *.html ---> *.txt ((wiki syntax))

To do this here the main schema in use :

Step 0 | Preparing the environment

Dependencies :
Perl Install
su (you may be root !=)
perl -MCPAN -e shell
install HTML::WikiConverter
install HTML::WikiConverter::DokuWiki
Code needed

three files :

  1. The main bash script : oocwiki.sh The code.
  2. The cleaning bash script : cleanfolder.sh The code.
  3. The renaming / auto loop conversion Perl script : oocwiki.pl The code.

Copy this code and create the files needed in a folder of your computer.

Folders :

Create your folder with your bunch of Ms World files :

Ms World environment :

ENWOLRD=/home/massou/Documents/oldies/

and write on the bash script the parameters for others folders and files we need :

Temp folder :

TMPOOCWIKI=/tmp/oocwiki/

JODConverter folder ;

JODCON=/home/massou/Documents/perl/jodconverter-2.2.1/lib/jodconverter-cli-2.2.1.jar

DokuWiki transfert folder :

OUTWIKI=/srv/www/htdocs/dokuwiki/data/pages/outdoc/
OUTMEDIA=/srv/www/htdocs/dokuwiki/data/media/outdoc/

and use this bash

oocwiki.sh
 
#!/bin/bash
# script oocwiki.sh
# 
# sh oocwiki.sh /home/massou/Documents/oldies/ /tmp/oociKi/
 
# This script makes a backup of my home directory.
 
# Change the values of the variables to make the script work for you:
ENWOLRD=/home/massou/Documents/oldies/
TMPOOCWIKI=/tmp/oocwiki/
JODCON=/home/massou/Documents/perl/jodconverter-2.2.1/lib/jodconverter-cli-2.2.1.jar
OUTWIKI=/srv/www/htdocs/dokuwiki/data/pages/outdoc/
OUTMEDIA=/srv/www/htdocs/dokuwiki/data/media/outdoc/
 
if [ $(whoami) != 'root' ]; then
        echo "Must be root to run $0"
        exit 1;
fi
# if [ -z $1 ]; then
#         echo "Usage: $0 </path/to/httpd.conf>"
#         exit 1
# fi
 
 
parameters=($ENWOLRD $TMPOOCWIKI $OUTWIKI $OUTMEDIA)
## is parameters ok ?
for i in ${parameters[@]}; do
	if [ ! -e "${i}" ]; then
	echo "${i} don't exist"
	mkdir ${i}
	echo "${i} resolved"
	elif [ -f "${i}" ]; then
		echo "${i} est un fichier"
 
	elif [ -d "$1" ]; then
		echo "${i} sembre prêt"
	fi
 
done
 
if [ ! -e "$JODCON" ]; then
	echo "$JODCON n'existe pas"
exit 1;
elif [ -f "$JODCON" ]; then
	echo "$JODCON is ready"
fi
 
pgrep soffice
retval=$?
if [ "$retval" = 1 ]
then
echo "soffice n'a pas l'air de fonctionner..."
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
fi 
 
###cleaning and copy
 
parameters=($TMPOOCWIKI $OUTWIKI $OUTMEDIA)
## is parameters ok ?
for i in ${parameters[@]}; do
	if [ -e "${i}" ]; then
	echo "${i} don't exist"
	rm -R ${i}
	mkdir ${i}
	echo "${i} resolved"
	fi
done
 
 
cp -R $ENWOLRD/* $TMPOOCWIKI
 
 
################### Step1 Some cleaning ##################
sh ./cleanfolder.sh $TMPOOCWIKI
 
 
 
######################### Step 2-3 Time of perl #################
 
perl oocwiki.pl $TMPOOCWIKI $JODCON
 
######################### Step 4 Copy of the files #################
 
cp -R $TMPOOCWIKI/* $OUTWIKI
cp -R $TMPOOCWIKI/* $OUTMEDIA
 
########### Step 5 time for ACL #########
 
parameters=($OUTWIKI $OUTMEDIA)
## is parameters ok ?
for i in ${parameters[@]}; do
 
chown -R wwwrun ${i}
chgrp -R www ${i}
chmod -R 775 ${i}
 
done

Step 1 | cleaning the Ms World environment :

 /////*.doc

bash or perl script for renaming folder / under folder / file name from Windows file system to more simply Unix like syntax

cleanfolder.sh
 
#!/bin/bash
# file cleanfolder.sh 
# Convert filenames to lowercase
# and replace characters recursively
#####################################
 
if [ -z $1 ];then echo Give target directory; exit 0;fi
 
find "$1" -depth -name '*' | while read file ; do
        directory=$(dirname "$file")
        oldfilename=$(basename "$file")
        newfilename=$(echo "$oldfilename" | tr 'A-Z' 'a-z' | tr ' ' '_' | sed 's/_-_/-/g')
        if [ "$oldfilename" != "$newfilename" ]; then
                mv -i "$directory/$oldfilename" "$directory/$newfilename"
                echo ""$directory/$oldfilename" ---> "$directory/$newfilename""
                #echo "$directory"
                #echo "$oldfilename"
                #echo "$newfilename"
                #echo
        fi
        done
exit 0

Step 2 :

lower_case/whithout_blank_space.doc —> Soffice as a service + jodconverter —> *.html

oocwiki.pl
 
 
#!/usr/bin/perl -w
 
$time = localtime;
print "The time is now $time\n";
 
my $TMPOOCWIKI=$ARGV[0]."\n";
my $JODCON=$ARGV[1]."\n";
print $TMPOOCWIKI."\n";
print $JODCON."\n";
$chemin = $TMPOOCWIKI;
$jod = $JODCON; 
chomp($chemin);
chomp($jod);
use File::Basename;
use File::Find;
 
 
find(\&Wanted, $chemin);
 
sub Wanted
	{
if ($File::Find::name =~ m/^$DocumentRoot(\/.*)?$/) {
   $fullname = $File::Find::name . "\n";
     ($name,$path,$suffix) = fileparse($fullname,qr{\..*});
 $suffix . "\n";
if ($suffix eq '.doc'){
# if ($suffix = "\.doc") {
 
 $name = fileparse($fullname);
    $basename = basename($fullname);
    $dir  = dirname($fullname); 
 
 
 
$base2=lc($name);
$base2 =~ tr/ /_/;
$base2 =~ tr/ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ/aaaaaaaaaaaaooooooooooooeeeeeeeecciiiiiiiiuuuuuuuuynn/;
 
 
#Step1 renaming, again
$dir =~ s/$/\//;
$newname = $dir.$base2;
# $newname =~ s/$/\.doc/;
 
print $fullname;
print $newname;
 
print $fullname;
print $newname;
# $fullname =~ s/ /\\ /;
# $newname =~ s/ /\\ /;
chomp($fullname);
chomp($newname);
# # print $newname;
rename("$fullname", "$newname") or  
        warn "Couldn't rename $fullname to $newname: $!\n";
 
#Prepare newname for conversion
$newname2 = $newname;
$newname3 = $newname;
$newname2 =~ s/\.doc$/\.html/ ;
$newname3 =~ s/\.doc$/\.txt/ ;
# print "sortie-----$newname2\n";
 
# Subroutine to execute the command step 2 and 3
 
my $res="";
 
my $cmd="java -jar $jod  $newname $newname2|";
my $cmd2="html2wiki --dialect DokuWiki $newname2 > $newname3|";
open(EXEC,"$cmd");
 
while($res=<EXEC>){
       chomp($res);
       print "$res \n";
}
close(EXEC);
 
  open(EXEC,"$cmd2");
 
while($res=<EXEC>){
       chomp($res);
       print "$res \n";
}
close(EXEC);
 
 
}
}
 
	}

Step3 :

*.html —> HtmlWikiConverter —> *.txt

Step4 :

Finally we just copy the files to media and pages folders… enough. Perl scripting to change url of media to point to good Url media and dispatch media and txt files in good place on the server…

Step5 :

Fix permissions.

Command lines in use

First you need OpenOffice.org on a Linux box.

go to a terminal and execute this :

soffice -headless -accept="socket,port=8100;urp;"

http://www.artofsolving.com/node/10

(dont forget cli :!=à=)

java -jar jodconverter-cli-2.2.1.jar A.doc A.pdf
java -jar jodconverter-cli-2.2.1.jar A.doc A.html

http://search.cpan.org/src/DIBERRI/HTML-WikiConverter-0.61/README

massou@linux-hj6y:~/Documents/momas/jodconverter-2.2.1/lib> html2wiki --dialect DokuWiki A.html > output.mw

Chengdu

 
15:42:26
alex1-_-1郁闷啊~~~~~~~  
Are you the French I met at the bar in Chengdu?
 
 
15:42:56
(_o_o_)  
Yes :  
How are your ?
 
15:43:24
alex1-_-1郁闷啊~~~~~~~  
I feel terrible  
 
15:44:00
(_o_o_)  
great  
 
15:44:08
alex1-_-1郁闷啊~~~~~~~  
.....
 
Whre 're you now?
Still in China?
 
15:44:53
(_o_o_)  
no back in france :!  
i was visiting my best friend who stay in Chengdu
 
15:45:24
alex1-_-1郁闷啊~~~~~~~  
What's wrong with your people???!!!!  
 
15:45:50
(_o_o_)  
You know in france we have stupid people like everywhere  
people say that china gov make bad things in "tibet"'
 
15:46:16
alex1-_-1郁闷啊~~~~~~~  
I live in a tibetan neighbourhood !!  
 
15:46:26
(_o_o_)  
I know, i go there  
 
15:46:26
alex1-_-1郁闷啊~~~~~~~  
I know about tibetan people!!
 
All my tibetan friends think you're crazy!!
 
15:46:51
(_o_o_)  
But here we have bad information from tibet so people believe it  
i know that reality is different
I am sorry because i love china and chinese people
 
15:47:57
alex1-_-1郁闷啊~~~~~~~  
If they really want indepenedence why they imigrating to city??
 
my city
 
15:48:12
(_o_o_)  
Yep that's sure.  
But daili Lama and lot of boudist don't wand independance
In France we have propaganda against china, and because of liberty of speak like in america people believe what they heart and not what they know because lots of them don't know anything about tibet...
 
15:50:11
alex1-_-1郁闷啊~~~~~~~  
I am a buddhist belive in dalai lama,but I can deal with religion and politics,how couldn't you???  
We have religious freedom for almost 20 years
 
15:50:56
(_o_o_)  
I know, I visit your place !  
I haven't seen anything in relation with what people say in France about China.
but not every people in France are against China !!
 
15:53:19
alex1-_-1郁闷啊~~~~~~~  
I know your people is deceived by your government and media,but I just can't go to carefour for shopping now ,I just feel sad 
 
 
15:53:34
(_o_o_)  
I understand !  
We have people here that's known a lot your place and they try to explain that it is not so simple that what propaganda against China say !
My brother is responsable in Paris for security and Police. 
They were thousands of people from China, students and others, and in front of them they were thousands of people that's manifest against china :!
 
15:56:45
alex1-_-1郁闷啊~~~~~~~  
I think we need you to help these crazy protestors to know the truth  
 
15:56:57
(_o_o_)  
That's sure !  
A lot of people that know China and Tibet try to explain the real situation ! But propanganda was too fast from people against tibet
 
15:58:53
alex1-_-1郁闷啊~~~~~~~  
But they actually destroying the impression of your country here,most people think europeans are mean here  
 
15:59:04
(_o_o_)  
I hope that's the olympic games will be a great event and that's no more bad things happens to it !  
I have seen that your people do greats things actually that no one nation on earth can not do actually.
You are making a great nation.
But lots of french and other occidental people can not understand the cultural soul of your nation.
And i am sorry about it.
 
16:01:01
alex1-_-1郁闷啊~~~~~~~  
You should know no matter who is in charge of my country,tibetans and hans are always brothers.Even the CCP lost its power we are still brothers  
What's the time in France now?
 
16:03:12
(_o_o_)  
actually it is 4 past noon   
the afternoon
The propaganda is comming from human right organisations you know....
and they have big propaganda skills.
 
16:05:06
alex1-_-1郁闷啊~~~~~~~  
But I think it can be very simple ,China is open now ,they just need to come here then they know the truth.Why didn;t they??  
 
16:05:19
(_o_o_)  
LOL  
that's right !
But they believe what propaganda against tibet say and don't listen to others voices
i am sorry about this, but majority of people are not against china people, it is a minority
I am sure that's they will be wrong in the futur !
 
16:08:02
alex1-_-1郁闷啊~~~~~~~  
Really?  
 
16:08:06
(_o_o_)  
Yes  
We are not all against china :! be sure of that.
Our government try to explain to people what is the reality of China actually, but it is really difficult cause of the propaganda of this minority.
My brother work for the government, and actually he is really really suspect against this propaganda.
You know china have some enemy and i think they use french media and french people against China.
 
16:11:53
alex1-_-1郁闷啊~~~~~~~  
Yes I know ,but Dalai Lama really put all tibetans and tantra buddhism believers into a very embarracing place in CHina  
 
16:12:33
(_o_o_)  
Dalai Lama say he was against independance of the tibet  
 
16:12:36
alex1-_-1郁闷啊~~~~~~~  
We can't hate him religiously you know  
 
16:12:44
(_o_o_)  
I know  
but it is not the dalai Lama the problem
Boudhist have not interest in a war in Tibet
they got all religion liberty
 
16:15:43
alex1-_-1郁闷啊~~~~~~~  
Inronicaly buddhism is a very powerfull religion here ,and is a main supporter for the CCP
 
Ironically
 
16:16:47
(_o_o_)  
Yes that's sure, but they have no interest in a war...and to loose liberty of religion....  
Personnaly i am free of mind, i go to china and tibet, and for sure i still love your great nation.
 
16:18:56
alex1-_-1郁闷啊~~~~~~~  
We don't need to be great ,we just need to be equal,LOL  
 
16:19:42
(_o_o_)  
That's thrue.  
Moreover CCP during the last twennies years have completely change your place. Without blood and so on.
Not a lot of "great" nation have done that...
USA and Europe have done a lot of war before to build their nation
 
16:23:30
alex1-_-1郁闷啊~~~~~~~  
Yes but we really fear that what happened in yugoslavina will happen to us because of western powers  
 
16:24:27
(_o_o_)  
Actually be sure that's USA and Europe cause of economic crises don't need that's china may be in crisis.  
Whithout the help of china economy USA will be in the worst economic crisis of his history.... and europe few times after too.
 
16:25:38
alex1-_-1郁闷啊~~~~~~~  
May it be true  
 
16:26:06
(_o_o_)  
Sure, bank of China do big things to help USA economy  
Do you know that more than 2 million of people in USA have lost their home and live n the streets cause of economic crisis.
For china they are few people... but in USA it is a major crisis.
like in 1929...
 
16:28:11
alex1-_-1郁闷啊~~~~~~~  
I know  
 
16:28:37
(_o_o_)  
Europe have enough money to help her own economy,,  
but not so much to help USA...
 
16:29:12
alex1-_-1郁闷啊~~~~~~~  
But we are still assessing the effect of the us subprime debt crisis to us   
 
16:30:13
(_o_o_)  
Yes, but you have 10 per cent of grow income !  
In france... 1 point
LOL
 
16:30:47
alex1-_-1郁闷啊~~~~~~~  
I think maybe our banks bought too many subprime debts from America  
 
16:31:26
(_o_o_)  
.... yes but you buy, i don't know the word in english, a lot of Bank of america coupons too..  
 
16:31:36
alex1-_-1郁闷啊~~~~~~~  
But the balance sheets of the 1st season is still fine,I hope it is really that good  
 
16:32:19
(_o_o_)  
Yes. You have money, but at the difference of arab nation for exemple, you know what to do with it.  
You buy for exemple 2 per cent of our nationnal petroolum group TOTAL....
 
16:33:10
alex1-_-1郁闷啊~~~~~~~  
Oh?
 
 
16:33:45
(_o_o_)  
Yes. Bank of China do a lot of great investment in my place  
and french industry do a lot of big big deal with chian
china sorry
 
16:34:25
alex1-_-1郁闷啊~~~~~~~  
Yes french cars are popular here  
 
16:35:15
(_o_o_)  
We have to build a great "Airbus" building industry centre in China, for creating airplanes.  
It is big deals
nuclear
we sell to china a lot of nuclear central, french technologie copyright....
 
16:35:55
alex1-_-1郁闷啊~~~~~~~  
But it is astonishing to know that so many westerners know so few things about today's china  
 
16:36:33
(_o_o_)  
Yes. i am crying on them  
we got a lot of stupid here 
don't forget it.
 
16:37:36
alex1-_-1郁闷啊~~~~~~~  
I was chatting with a American yesterday ,and he said I must be some kind of Chinese seret police ,because he thought ordinary chinese can't surf on net  
......
 
16:38:17
(_o_o_)  
yes.  
My nation is 60 millions people.
We have a good police, but we have riot and so on.
So when i see your nation, i think that you government have others deal...
 
16:40:35
alex1-_-1郁闷啊~~~~~~~  
Yes ,we have 56 ethincs  
1billion people
 
16:40:57
(_o_o_)  
1billion 300 millions...  
europe 350 millions....
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion (connexion fermée). 
16:42:43
 
16:44:26
alex1-_-1郁闷啊~~~~~~~  
Are you still on line?  
 
16:44:35
(_o_o_)  
yes  
 
16:47:43
alex1-_-1郁闷啊~~~~~~~  
You know all Chinese have a nightmare that one day when we wake up we find tibetans killing hans ,uigurs killing tibetans all ethnics killing each other like what happened in former yugolavina  
??
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion. 
16:55:00
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Non connecté(e). 
16:55:05
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Connecté(e). 
16:55:27
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Occupé(e). 
17:07:15
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Connecté(e). 
17:07:19
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion. 
17:07:27
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Non connecté(e). 
17:07:27
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Connecté(e). 
17:10:46
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion. 
17:16:42
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Non connecté(e). 
17:23:48
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Connecté(e). 
17:29:58
 
17:32:55
alex1-_-1郁闷啊~~~~~~~  
Are you still on??  
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion. 
17:32:56
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Non connecté(e). 
17:38:04
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Connecté(e). 
17:46:46
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion (délai dépassé). 
18:08:27
 
alex1-_-1郁闷啊~~~~~~~ a quitté la discussion (délai dépassé). 
18:30:15
 
alex1-_-1郁闷啊~~~~~~~ est maintenant Non connecté(e). 
18:50:34
· 2008/04/13 05:05 · Jean Marc Massou

crontab

5 7 * * * rsync -a /srv/www/htdocs/ smb://9.64.1.200/massou/saves/htdocs




mount -t smbfs -o username=mu,password=fa //9.64.1.200/massou /savess


mount -t cifs -o username=mu,password=fa //9.64.1.200/massou /mnt/savess



mysqldump -u root -pjerome --opt production -h monServeur > backup-production.sql


$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'f';

crontab actuel :


5 7 * * * rsync -av no-perms /srv/www/htdocs/ /mnt/savess/saves/htdocs
1 7 * * * rm /mnt/savess/saves/mysql/backup-dolibarr.sql
2 7 * * * mysqldump -u root -pfoc --opt dolibarr -h 127.0.0.1 > /mnt/savess/saves/mysql/backup-dolibarr.sql


crontab -e :

inser + entré pour allez à la ligne
echap pour sortir du mode edition
:wq pour écrire et sauvegarder il ne faut pas oublier :
· 2008/04/08 22:40 · Jean Marc Massou

Serveur

SERVER POWEREDGE 1600SC 1 X 2.8GHZ XEON BIPROCESSEUR

· 2008/04/08 13:41 · Jean Marc Massou

Mental space

Mental Space…

· 2008/04/07 14:11

Psy seance I

I am the psychotherapist. Please, describe your problems. Each time you are finished talking, type RET twice.

j'ai un problème avec mon chien

Why do you say j'ai un problème avec mon chien?

Il ramenne pas la balle

Is it because of your plans that you say il ramenne pas la balle?

i am a alien

Maybe your life have something to do with this.

I love eat people from planet earth

I would appreciate it if you would tell me about your relationship with eat people planet earth.

Eating people from planet earth is cool

What makes you believe eating people from planet earth is cool?

Their taste is wonderfull

Earlier you said you love eat people planet earth?

YES YES

Is it because of the people you hang around with that you are going through all this?

What do you think?

YES YES

Is it because of problems at school that you say yes yes?

NO NO

You mentioned that you love eat people planet earth?

YES

I see… Well, are you sure that this is so?

YES

Yes, hmmm… so, do you really think this is so?

YES

I understand. So what makes you think this is so?

Because they sucks on Internet

Is it because they sucks on internet that you came to me?

YES

Oh. …And why do you say this is so?

Don't Know

Don't tell me what to do. I am the doctor here! How do you reconcile any hobbies you have?

· 2008/04/06 18:05

Jean Marc MASSOU DIT LABAQUERE

1 che LABAQUERE

64230 MOMAS

0559771466 - 0615233572

massou@gmail.com

INGENIEUR CHEF DE PROJET (INFORMATIQUE)

PROJET / COMPETENCE

Objectif professionnel :

Ingénieur Agricole de Formation, spécialisé en informatique depuis plus de huit années maintenant, je suis à la recherche d'un emploi dans le domaine informatique OpenSource orientation Web de préférence (php / mysql / Postgre) appliqué aux SIG.

Expérience à ce poste : 5 an(s)

Zone Géographique :

Départements

  • Landes
  • Pyrénées Atlantiques
  • Pyrénées (Hautes)
  • Garonne (Haute)

Type de contrat :

  • Contrat travail intermittent
  • Contrat travail saisonnier
  • Contrat à durée déterminée
  • Contrat à durée indéterminée
  • Travail intérimaire

Durée du travail :

Indifférent

Compétences spécifiques :

  • - Rédaction des manuels utilisateurs.
  • - Programmation.
  • - Analyse fonctionnelle.
  • - Rédaction des cahiers des charges.
  • - Conception technique.

Compétences complémentaires :

PHP, MYSQL, POSTGRE MapServer, Postgis, VB ACCESS Photoshop Flash

Langues :

  • Anglais (Courant + technique)
  • Espagnol (Courant)

Permis :

  • B - Véhicule léger

EXPERIENCE

Intitulé Entreprise Début Fin
Chef de Projet infromatique ADASEA / GIE DES ADASEA DE FRANCE 01/2002 01/2008
Chef d'un projet mélant SIG et agriculture, le projet Topagri. Développement de diverses applicatifs open source pour organiser le travail commercial, et en général les fonctions supports autour de ce logiciel.

FORMATION

Formation Domaine Diplôme obtenu Année
Ingénieur Grande Ecole agriculture oui 2001

Avertissement : les profils déposés par les candidats sont libres et ne font pas l´objet de vérification par l´ANPE. En conséquence, la responsabilité de l´ANPE ne peut être engagée sur la nature de leur contenu.

· 2008/03/31 15:54

· 2008/03/28 01:39 · Jean Marc Massou

geocoder

http://jeanmarcmassou.free.fr/googlemaps.zip

c'est un plugins tu le dézippe et après tu utilises ça :

http://jm.massou.free.fr/geocoder.html

· 2008/03/27 20:48

vendredi ski

· 2008/03/26 15:12

DIVERS

Divers