Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2361 connectés 

 

Sujet(s) à lire :
    - Who's who@Programmation
 

 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  9185  9186  9187  ..  26992  26993  26994  26995  26996  26997
Auteur Sujet :

[blabla@olympe] Le topic du modo, dieu de la fibre et du monde

n°1240708
nraynaud
lol
Posté le 07-11-2005 à 19:16:26  profilanswer
 

Reprise du message précédent :

Lam's a écrit :

Je te présente Wikipedia. C'est un site encyclopédique communautaire avec des articles sur toutes sortes de sujets:
    http://en.wikipedia.org/wiki/Skip_list


je viens de comprendre [:roane]
 
 
mais ça n'a pas fait avancer mon document d'une ligne [:roane]
 
 
 
 
 
vie de merde [:pingouino]


---------------
trainoo.com, c'est fini
mood
Publicité
Posté le 07-11-2005 à 19:16:26  profilanswer
 

n°1240711
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 19:27:40  profilanswer
 

Harkonnen a écrit :

j'adore la dénomination "ADSL+" [:ula]
30 Go au lieu de 10, mais aucun changement dans le débit [:kamool]


Attend, mais avec la version Plus t'es autorisé à connecter 4 PCs à l'internet merde [:mlc]


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240716
nraynaud
lol
Posté le 07-11-2005 à 19:36:56  profilanswer
 
n°1240717
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 19:38:30  profilanswer
 


Ben ouais hein :o


Message édité par masklinn le 07-11-2005 à 19:41:48

---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240718
lorill
Posté le 07-11-2005 à 19:39:44  profilanswer
 

l'economie reprend... En une semaine, on me propose deux tafs différents alors que j'ai rien demandé [:roane]

n°1240719
nraynaud
lol
Posté le 07-11-2005 à 19:40:26  profilanswer
 

http://fr.news.yahoo.com/07112005/ [...] aines.html
 
les mecs font des stats [:pingouino]


---------------
trainoo.com, c'est fini
n°1240720
Harkonnen
Modérateur
Un modo pour les bannir tous
Posté le 07-11-2005 à 19:40:55  profilanswer
 

masklinn a écrit :

Attend, mais avec la version Plus t'es autorisé à connecter 4 PCs à l'internet merde [:mlc]


ah ptain mais j'avais pas vu [:mlc]
dingue ce qu'on fait pas de nos jours [:mlc]
tiens, je viens de brancher le portable wifi sur la livebox mais ça doit pas être normal, vu que ça fait le 3eme PC branché dessus en wifi, et que je paie le même prix [:mlc]


---------------
J'ai un string dans l'array (Paris Hilton)
n°1240721
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 19:42:13  profilanswer
 

Google Kills Children [:jar jar]
 
Et dans un article associé

Citation :

John Dvorak! He's a smart guy, and a world-class troll. This time, he's deliberately conflated Microsoft's Smart Tags with del.icio.us-style tagsonomy, and thrown in some semantic web bashing along the way. Plus, didja know people hate Flash? If he were really going for it, he would have shoehorned in some Linux vs. Windows platform wars, but he managed to get a whole bunch of hot buttons into one article already, so good for him. Best of all, John clearly knows the difference between these things, but wanted to stir shit up so he ignored the distinctions. That's intellectually dishonest!


Message édité par masklinn le 07-11-2005 à 19:43:08

---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240722
el muchach​o
Comfortably Numb
Posté le 07-11-2005 à 19:43:07  profilanswer
 

Lam's a écrit :

Je te présente Wikipedia. C'est un site encyclopédique communautaire avec des articles sur toutes sortes de sujets:
    http://en.wikipedia.org/wiki/Skip_list


Ouais, j'ai googlé, y'a même un petit programme en Java. Non, c'est pas ça
 

Harkonnen a écrit :

moi23712 ? c'est toi ?


Tiens mange ça. J'ai enlevé une partie du commentaire d'en-tête, et je te laisse deviner ce que fait le programme.

Code :
  1. /*********************************************************/
  2. /*           P. Grinspan - Tue.17th, Apr.2001                                    */
  3. /*            with precious help from N.Janin                                     */
  4. /*********************************************************/
  5. #include<stdio.h>
  6. #include<stdlib.h>
  7. #include<string.h>
  8. #include<ctype.h>
  9. #define MAX_FILE_SIZE (1<<20)
  10. #define ALPHA_SIZE (26)
  11. typedef unsigned long int LNG;
  12. char* reserved[33]={"auto","break","case","char","const","continue",
  13.  "default","do","double","else","enum","extern","float","for","goto","if",
  14.  "int","long","register","return","short","signed","sizeof","static",
  15.  "struct","switch","typedef","union","unsigned","void","volatile","while",""};
  16. const char codes[33]="aBchkCdDbLNxfFGIilrRhgZtTSyUuvVW";
  17. typedef struct Group_
  18. {    /* (starts with all of them, then refined into subgroups) */
  19. char label;   /* Sieving character last used for this group */
  20. LNG counter;       /* # of members; actually 0 if only 1 turned up so far */
  21. struct Group_* next;   /* This pointer has 2 different uses (see below) */
  22. struct PosNode_* members; /* List of members - filled in only at the end */
  23. } Group;
  24. typedef struct PosNode_
  25. {
  26. LNG position,line;
  27. Group* group;   /* Points to this block's group */
  28. struct PosNode_* next;   /* 2 different uses (see below) */
  29. int original;  /* Is the node still at its original place in the list ? */
  30. } PosNode;
  31. typedef struct state_
  32. {
  33. char spotted; /* Code of word ending at this state */
  34. struct state_* next[ALPHA_SIZE];
  35. } state;
  36. void* Alloc(int size)
  37. {
  38. void* p;
  39. if(p=malloc(size)) return p; else
  40. {
  41.  printf("Out of memory !?\n" );
  42.  exit(1);
  43. }
  44. }
  45. char* Translate(char c,int crunch)
  46. {
  47. static int bra=0;
  48. int i=0;
  49. char* str=Alloc(12*sizeof(char));
  50. if(crunch)
  51.  if(isalpha(c))
  52.  {
  53.   do str=reserved[i]; while(codes[i++]!=c);
  54.   return str;
  55.  }
  56.  else switch(c)
  57.  {
  58.  case'_': return "(id)";
  59.  case'0': return "(num)";
  60.  default: break;
  61.  }
  62. *str=c;
  63. switch(c)
  64. {
  65.  case'#': return "#(Preproc.)\n";
  66.  case'\'': return "\'(char)\'";
  67.  case'\"': return "\"(str)\"";
  68.  case'{': ++bra; break;
  69.  case'}': if(bra) --bra; break;
  70.  case';': break;
  71.  default: str[1]='\0'; return str;
  72. }
  73. str[1]='\n';
  74. i=1;
  75. while(i<=bra) str[++i]='\t';
  76. str[++i]='\0';
  77. return str;
  78. }
  79. /* Builds an automaton for string matching */
  80. state* FSA(void)
  81. {
  82. int j,i;
  83. char c;
  84. const char* code;
  85. state** current,* root=NULL;
  86. const char** str=reserved;
  87. code=codes;
  88. while((*str)!="" )
  89. {
  90.  current=&root;
  91.  i=0;
  92.  do
  93.  {
  94.   if(!*current)
  95.   {
  96.    *current=Alloc(sizeof(state));
  97.    (*current)->spotted='_';
  98.    for(j=0;j<ALPHA_SIZE;++j) (*current)->next[j]=NULL;
  99.   }
  100.   if((c=(*str)[i++])=='\0') (*current)->spotted=*code;
  101.   else current=&((*current)->next[c-'a']);
  102.  } while(c!='\0');
  103.  ++str;
  104.  ++code;
  105. }
  106. return root;
  107. }
  108. char Scan(state* current,FILE* sample,int* c)
  109. {
  110. int goon=1;
  111. do
  112. if(goon)
  113.  if(*c>'z'||*c<'a'||!(current=current->next[*c-'a'])) goon=0;
  114. while((*c=fgetc(sample))=='_'||isalnum(*c));
  115. return ((goon)?current->spotted:'_');
  116. }
  117. int ReadNext(FILE* file, LNG* line)
  118. {
  119. int c=fgetc(file);
  120. if(c=='\n') ++(*line);
  121. return c;
  122. }
  123. /* Copies the whole file into a string */
  124. /* and initializes the list of "interesting" blocks to contain all of them */
  125. char* Init(FILE* file,PosNode* root,int crunch)
  126. {
  127. PosNode* current;
  128. state* automat;
  129. LNG i=0,l=1;
  130. int c,c1;
  131. int comment,out,gotit,end,par=0,blank=crunch;
  132. char* s=Alloc(MAX_FILE_SIZE*sizeof(char));
  133. root->next=NULL;
  134. current=root;
  135. c=ReadNext(file,&l);
  136. automat=FSA();
  137. end=1;
  138. while(c!=EOF)
  139. {
  140.  comment=gotit=0;
  141.  if(c=='/')
  142.   if((c1=fgetc(file))=='*')
  143.   {
  144.    comment=1;
  145.    c=ReadNext(file,&l);
  146.    do
  147.    {
  148.     out=1;
  149.     if(c!='*') out=0;
  150.     if((c=ReadNext(file,&l))!='/') out=0;
  151.    } while(!out);
  152.   } else gotit=1;
  153.  if(isspace(c)) c=' ';
  154.  if(c=='(') ++par;
  155.  if(c==')') --par;
  156.  if(crunch&&(c=='_'||isalpha(c)))
  157.  {
  158.   c1=c;
  159.   c=Scan(automat,file,&c1);
  160.   gotit=1;
  161.  }
  162.  if(crunch&&isdigit(c))
  163.  {
  164.   c='0';
  165.   while(isdigit(c1=fgetc(file))) ;
  166.   gotit=1;
  167.  }
  168.  if(crunch&&c=='#') do c1=ReadNext(file,&l); while(c1!='\n');
  169.  if(strchr("\'\"",c))
  170.   do
  171.   {
  172.    c1=ReadNext(file,&l);
  173.    while(c1=='\\')
  174.    {
  175.     ReadNext(file,&l);
  176.     c1=ReadNext(file,&l);
  177.    }
  178.   } while(c1!=c);
  179.  if(!(comment||((blank||end)&&c==' ')))
  180.  {
  181.   if(end&&!par&&!strchr(" ;{}",c))
  182.   {
  183.    current=current->next=Alloc(sizeof(PosNode));
  184.    current->group=NULL;
  185.    current->line=l;
  186.    current->position=i;
  187.    current->original=1;
  188.   }
  189.   s[i++]=(char)c;
  190.   if(i==MAX_FILE_SIZE) return NULL;
  191.  }
  192.  if(!(comment||crunch)) if(c==' ') blank=1; else blank=0;
  193.  if(strchr("{:;}",c)) end=1; else if(c!=' ') end=0;
  194.  if(gotit)
  195.  {
  196.   if((c=c1)=='\n') ++l;
  197.  }
  198.  else c=ReadNext(file,&l);
  199. }
  200. current->next=NULL;
  201. s[i]='\0';
  202. return s;
  203. }
  204. /* Deletes a "position" node and returns its follower */
  205. PosNode* DelPos(PosNode* junk)
  206. {
  207. PosNode* next=junk->next;
  208. free(junk->group);
  209. free(junk);
  210. if(next) next->original=0;
  211. return next;
  212. }
  213. /* Removes "blocks" beyond the end of file, */
  214. /* and attaches the rest to "generic" group to start with */
  215. void Sow(PosNode* root,signed long int i)
  216. {
  217.         PosNode* next;
  218. Group* all;
  219. all=Alloc(sizeof(Group));
  220. all->counter=0;
  221. all->next=NULL;
  222. all->members=NULL;
  223. while(next=root->next)
  224. {
  225.  if(i--<0) root->next=DelPos(next);
  226.  else
  227.  {
  228.   next->group=all;
  229.   ++(all->counter);
  230.   root=next;
  231.  }
  232. }
  233. }
  234. /* Attaches the node to the subgroup of *p_group */
  235. void Update(Group** p_group,char c)
  236. {                /* corresponding to label c */
  237. Group* current,* next;
  238.        /* First, find whether that subgroup already exists  
  239.        in the list starting at *p_group->next: */
  240. current=*p_group;
  241. while((next=current->next)&&(next->label<c)) current=next;
  242. if((next)&&(next->label==c)) /* if it does, adjust its counter */
  243. {
  244.  if(!(next->counter)) next->counter=1;
  245.  ++(next->counter);
  246. }
  247. else       /* if not, create it */
  248. {
  249.  ((Group*)current->next=Alloc(sizeof(Group)))->next=next;
  250.  next=current->next;
  251.  next->label=c;
  252.  next->counter=0;
  253.  next->members=NULL;
  254. }
  255. current=*p_group;
  256. *p_group=next;    /* (now the node belongs to the subgroup) */
  257. if(!(--(current->counter))) /* Decrease "overgroup" counter; if all members dispatched */
  258. {       /* then delete it AND unbind its subgroups */
  259.  next=current->next;
  260.  free(current);
  261.  do
  262.  {
  263.   current=next;
  264.   next=current->next;
  265.   current->next=NULL;
  266.  } while(next);
  267. }
  268. }
  269. void Sieve(char* digest,PosNode* root)
  270. {
  271. PosNode* current,** p_next;
  272. Group** p_group;
  273. current=root;
  274. while(current->next) /* For all nodes left in the list, */
  275. {
  276.  p_next=&(current->next);
  277.  p_group=&((*p_next)->group);
  278.  if((*p_group)->counter) /* IF the group has >1 member, update node membership */
  279.   Update(p_group,digest[(current=*p_next)->position]);
  280.  else
  281.   *p_next=DelPos(*p_next); /* else delete node AND its lonely 'group' */
  282. }
  283. }
  284. /* Collect & restructure information about final groups */
  285. Group* Reap(PosNode* current)
  286. {
  287. PosNode* next,** p_mem;
  288. Group* group,* G_root,** p_head;
  289. G_root=NULL;
  290. p_head=&G_root;
  291. while(current)
  292. {
  293.  group=current->group;
  294.  next=current->next;
  295.  if(group->counter) /* IF >1 member, */
  296.  {
  297.   current->next=NULL;
  298.   p_mem=&(group->members);
  299.   while(*p_mem) p_mem=&((*p_mem)->next);
  300.   *p_mem=current;  /* add the node to member list */
  301.   if(!(--(group->counter))) /* if the group is complete, add it to the list */
  302.   {
  303.    *p_head=group;
  304.    p_head=&(group->next);
  305.   }
  306.  } else DelPos(current);
  307.  current=next;
  308. }
  309. return G_root;
  310. }
  311. int main(int argc, char* argv[])
  312. {
  313. LNG size,real,step,offset;
  314. int isnew,crunch,same;
  315. char* digest,* p,c;
  316. PosNode* root,* member,* previous;
  317. Group* G_root;
  318. FILE* in_file;
  319. FILE* out_file;
  320. char* prog_name=(*argv);
  321. crunch=0;
  322. while(argc>1 && (*(++argv))[0]=='-')
  323. {
  324.  --argc;
  325.  p=(*argv);
  326.  while(*(++p)) switch(*p)
  327.  {
  328.   case'c': crunch=1; break;
  329.   default: printf("Sorry, option -%c not recognized\n",*p); break;
  330.  }
  331. }
  332. if (argc<3)
  333. {
  334.  printf("Not enough arguments !\n" );
  335.  printf("Usage is %s [options] <window_size> <infilename> [<outfilename>]\n",prog_name);
  336.  exit(1);
  337. }
  338. size=atoi(*(argv++));
  339. if((in_file=fopen(argv[0],"r" ))==NULL)
  340. {
  341.  printf("Unable to open file %s for reading\n",argv[0]);
  342.  exit(1);
  343. }
  344. out_file=stdout;
  345. if(argc>3) if(!(out_file=fopen(argv[1],"w" )))
  346.  printf("Unable to open file %s for writing\n",argv[1]);
  347. root=Alloc(sizeof(PosNode));
  348. if(!(digest=Init(in_file,root,crunch)))
  349. {
  350.  printf("File %s too big\n",argv[0]);
  351.  exit(1);
  352. }
  353. root->next->original=0;
  354. Sow(root,strlen(digest)-size);
  355. /* fprintf(out_file,"%s\n\n",digest); */
  356. step=1; /* Within blocks look at positions in non-sequential order to remove coherence */
  357. while(step<=size) step<<=1;
  358. do
  359. {
  360.  offset=step>>1;
  361.  do Sieve(digest+offset-1,root); while((offset+=step)<=size);
  362.  step>>=1;
  363. } while(!(step%2));
  364. G_root=Reap(root->next);
  365. previous=NULL;
  366. while(G_root)
  367. {
  368.  member=G_root->members;
  369.  isnew=0;
  370.  while(member)
  371.  {
  372.   isnew|=!member->original;
  373.   member=member->next;
  374.  }
  375.  member=G_root->members;
  376.  if(!isnew)
  377.  {
  378.   G_root=G_root->next;
  379.   continue;
  380.  }
  381.  same=1;
  382.  real=size;
  383.  while(same)
  384.  {
  385.   c=digest[(member=G_root->members)->position+real];
  386.   while(member=member->next) if(c!=digest[member->position+real]) same=0;
  387.   if(same) ++real;
  388.  }
  389.  member=G_root->members;
  390.  fprintf(out_file,"-> Repetition of following (%d symbols altogether):\n",real);
  391.  p=digest+member->position;
  392.  do fprintf(out_file,"%s",Translate(*(p++),crunch));
  393.  while(p<digest+member->position+real);
  394.  fprintf(out_file,"\ndetected on lines:\n" );
  395.  while(member)
  396.  {
  397.   fprintf(out_file,"%d\n",member->line);
  398.   member=member->next;
  399.  }
  400.  fprintf(out_file,"\n" );
  401.  G_root=G_root->next;
  402. }
  403. fclose(in_file);
  404. fclose(out_file);
  405. }


Message édité par el muchacho le 07-11-2005 à 19:55:50

---------------
Les aéroports où il fait bon attendre, voila un topic qu'il est bien
n°1240724
elianor
bannie 17 fois
Posté le 07-11-2005 à 19:44:28  profilanswer
 


 
Il y a 20 points de bonus pour un flic blessé :o


---------------
JE JE SUIS LIBERTINEEEEEEEEEEE JE SUIS UNE CATINNNNNNNNN §§§§§§§§
mood
Publicité
Posté le 07-11-2005 à 19:44:28  profilanswer
 

n°1240725
elianor
bannie 17 fois
Posté le 07-11-2005 à 19:45:37  profilanswer
 

OK, lol  
 
http://fr.news.yahoo.com/07112005/ [...] ovski.html


---------------
JE JE SUIS LIBERTINEEEEEEEEEEE JE SUIS UNE CATINNNNNNNNN §§§§§§§§
n°1240726
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 19:46:35  profilanswer
 


[:rofl][:rofl][:rofl]
[:rofl][:rofl][:rofl]
[:rofl][:rofl][:rofl]


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240728
Roane
Pingouino's fan
Posté le 07-11-2005 à 19:48:38  profilanswer
 
n°1240729
nraynaud
lol
Posté le 07-11-2005 à 19:48:39  profilanswer
 

elianor a écrit :

Il y a 20 points de bonus pour un flic blessé :o


en même temps, le flics on s'en fout, c'est plus les citoyens que ça m'emmerde de blesser.


---------------
trainoo.com, c'est fini
n°1240730
skeye
Posté le 07-11-2005 à 19:49:22  profilanswer
 


[:pingouino]


---------------
Can't buy what I want because it's free -
n°1240731
lorill
Posté le 07-11-2005 à 19:49:35  profilanswer
 

Citation :

Vladimir Jirinovski se fait souvent taxer de "clown" dans les milieux politiques russes


tu m'étonnes [:ddr555]

n°1240733
el muchach​o
Comfortably Numb
Posté le 07-11-2005 à 19:49:54  profilanswer
 
n°1240736
the real m​oins moins
Posté le 07-11-2005 à 19:57:02  profilanswer
 
n°1240740
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 20:07:35  profilanswer
 


 :jap:


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240741
el muchach​o
Comfortably Numb
Posté le 07-11-2005 à 20:08:12  profilanswer
 
n°1240742
masklinn
í dag viðrar vel til loftárása
Posté le 07-11-2005 à 20:09:13  profilanswer
 

[:ddr555]


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box by throwing away the limits imposed by overbearing genetic regulations? Isn't that a good thing?
n°1240743
the real m​oins moins
Posté le 07-11-2005 à 20:09:27  profilanswer
 

ha ha ha


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°1240744
lorill
Posté le 07-11-2005 à 20:10:47  profilanswer
 

snul

n°1240745
el muchach​o
Comfortably Numb
Posté le 07-11-2005 à 20:12:38  profilanswer
 

Moi, j'trouve ça bien fun, surtout ça lui va bien à cette conne. :D


---------------
Les aéroports où il fait bon attendre, voila un topic qu'il est bien
n°1240746
uriel
blood pt.2
Posté le 07-11-2005 à 20:18:38  profilanswer
 

refugié au canada c'est pas mal comme avenir en fait, apparement (source collegue allemande), ca a peter a berlin [:pingouino]


---------------
IVG en france
n°1240747
Elmoricq
Modérateur
Posté le 07-11-2005 à 20:19:11  profilanswer
 

lorill a écrit :

l'economie reprend...


 
Ben tu m'étonnes, avec la reconstruction de tout ce que les jeunes ont pété, ça va faire remonter la croissance.
http://pix.nofrag.com/5d/60/f4b4017b9555e8c3a25ea87bd21f.gif

n°1240750
uriel
blood pt.2
Posté le 07-11-2005 à 20:20:31  profilanswer
 

quand meme, au prix de l'essence, ca fait cher le coktail molotov [:petrus75]


---------------
IVG en france
n°1240751
nraynaud
lol
Posté le 07-11-2005 à 20:21:35  profilanswer
 

http://fr.news.yahoo.com/07112005/ [...] enage.html
 
l'interviewé, c'est le PDG d'une boite qu'on a racheté récement [:dawa]


---------------
trainoo.com, c'est fini
n°1240752
Elmoricq
Modérateur
Posté le 07-11-2005 à 20:21:58  profilanswer
 

Le comic de la semaine : http://www.vgcats.com/comics
 
Faudrait appliquer cette politique, ça nettoierait peut-être la cat. PHP :lol:

n°1240753
uriel
blood pt.2
Posté le 07-11-2005 à 20:22:16  profilanswer
 

uriel a écrit :

refugié au canada c'est pas mal comme avenir en fait, apparement (source collegue allemande), ca a peter a berlin [:pingouino]


entendu sur france2: confirmé et apparement, pareil en belgique [:mlc]


---------------
IVG en france
n°1240754
lorill
Posté le 07-11-2005 à 20:24:14  profilanswer
 

ha ben le russe a ptet raison alors :o

n°1240755
R3g
fonctionnaire certifié ITIL
Posté le 07-11-2005 à 20:24:37  profilanswer
 

uriel a écrit :

entendu sur france2: confirmé et apparement, pareil en belgique [:mlc]


la these du nationalliste russe est peut-être pas si farfelue... Y'a un agent de la CIA qui a enfermé 2 gamins dans un transfo électrique, et dans 2 mois l'UE est à feu et à sang. Je suis impatient de voir ce que ça va donner dans les livres d'histoire dans 50 ans...


---------------
Au royaume des sourds, les borgnes sont sourds.
n°1240756
nraynaud
lol
Posté le 07-11-2005 à 20:25:06  profilanswer
 

pour une fois qu'on est leader d'un mouvement mondial, on va pas se pleindre [:dawa]
 
 
Paris : capitale mondiale de la mode [:roane]


---------------
trainoo.com, c'est fini
n°1240759
uriel
blood pt.2
Posté le 07-11-2005 à 20:27:58  profilanswer
 

l'article 16 va resortir, ca va faire mal [:pingouino]


---------------
IVG en france
n°1240764
el muchach​o
Comfortably Numb
Posté le 07-11-2005 à 20:29:47  profilanswer
 

Il assure le Villepin. (disclaimer: ce n'est que mon avis [:ocube])

Message cité 1 fois
Message édité par el muchacho le 07-11-2005 à 20:31:01

---------------
Les aéroports où il fait bon attendre, voila un topic qu'il est bien
n°1240765
lorill
Posté le 07-11-2005 à 20:31:10  profilanswer
 

mais lol quoi :  
Sondage : Villepin et Chirac en baisse - http://www.lefigaro.fr/politique/2 [...] tml?084308
 
Popularité en hausse pour MM. Chirac et de Villepin - http://permanent.nouvelobs.com/pol [...] .html?1803

n°1240770
R3g
fonctionnaire certifié ITIL
Posté le 07-11-2005 à 20:38:09  profilanswer
 

uriel a écrit :

l'article 16 va resortir, ca va faire mal [:pingouino]


Si il le sortait pour ça, ce serait une interprétation quand même large de la constitution (de souvenir, l'article 16 c'est quand l'intégrité du territoire ou le fonctionnement des institutions est menacé)


---------------
Au royaume des sourds, les borgnes sont sourds.
n°1240771
Elmoricq
Modérateur
Posté le 07-11-2005 à 20:41:25  profilanswer
 

Bon sinon, je tiens à dire que je viens de goûter pour la première fois à de l'Ossau Iraty", et que ce fromage ben il est super bon.
[:huit]

n°1240773
nraynaud
lol
Posté le 07-11-2005 à 20:42:10  profilanswer
 

Citation :

Lorsque les institutions de la République, l'indépendance de la Nation, l'intégrité de son territoire ou l'exécution de ses engagements internationaux sont menacées d'une manière grave et immédiate et que le fonctionnement régulier des pouvoirs publics constitutionnels est interrompu, le Président de la République prend les mesures exigées par ces circonstances, après consultation officielle du Premier Ministre, des Présidents des assemblées ainsi que du Conseil Constitutionnel.


ratai [:pingouino]


---------------
trainoo.com, c'est fini
n°1240774
Roane
Pingouino's fan
Posté le 07-11-2005 à 20:42:40  profilanswer
 

el muchacho a écrit :

Il assure le Villepin. (disclaimer: ce n'est que mon avis [:ocube])


 
Ouais, bof. Il détourne certaines questions, se répète, et dit prendre des mesures qu'il peut pas prendre ...
 
Bon ok, 1500 personnes en plus sur le terrain, et des comparutions immédiates multipliées, ca peut jouer, mais ca sera pas suffisant à mon avis  :o
 
Edit : j'oubliais le couvre feu :o

Message cité 2 fois
Message édité par Roane le 07-11-2005 à 20:43:56

---------------
http://www.alsacreations.com, http://www.openweb.eu.org. Mon CV : http://cv.roane-irkana.net. A ne surtout pas prendre en exemple : http://www.worldinternet.be
n°1240777
nraynaud
lol
Posté le 07-11-2005 à 20:44:12  profilanswer
 

Roane a écrit :


Bon ok, 1500 personnes en plus sur le terrain, et des comparutions immédiates multipliées, ca peut jouer, mais ca sera pas suffisant à mon avis  :o


mais ça joue dans l'autre sens ça les procès arbitraires [:pingouino]


---------------
trainoo.com, c'est fini
mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  9185  9186  9187  ..  26992  26993  26994  26995  26996  26997

Aller à :
Ajouter une réponse
 

Sujets relatifs
Plus de sujets relatifs à : [blabla@olympe] Le topic du modo, dieu de la fibre et du monde


Copyright © 1997-2025 Groupe LDLC (Signaler un contenu illicite / Données personnelles)