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

 


 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  164  165  166  ..  189  190  191  192  193  194
Auteur Sujet :

[Topic Outil] sauvegardez le contenu de votre presse papier

n°2050025
kadreg
profil: Utilisateur
Posté le 18-01-2011 à 22:10:55  profilanswer
 

Reprise du message précédent :

Ydalb a écrit :


 
AdopteUnMec ?  :D


 
meetic :o


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
mood
Publicité
Posté le 18-01-2011 à 22:10:55  profilanswer
 

n°2050036
Dion
Acceuil
Posté le 18-01-2011 à 22:34:32  profilanswer
 


account sharing avec much  [:cerveau nico54]


---------------
It is not called show art
n°2050040
Raistlin M​ajere
i bouh at you !
Posté le 18-01-2011 à 23:05:35  profilanswer
 
n°2050062
masklinn
í dag viðrar vel til loftárása
Posté le 19-01-2011 à 03:26:07  profilanswer
 


http://www.reddit.com/r/reddit.com [...] et_classy/ :/


---------------
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°2050428
flo850
moi je
Posté le 20-01-2011 à 12:10:01  profilanswer
 

Code :
  1. SELECT
  2.       a.matricule,
  3.      a.nom,
  4.      a.prenom,
  5.      ta1.name,
  6.      tat1.taux,
  7.      s1.name,
  8.      ta2.name,
  9.      tat2.taux ,
  10.       s2.name,
  11.      GREATEST(vaa1.debut,vaa2.debut) AS debut ,
  12.       LEAST(vaa1.fin,vaa2.fin) AS fin ,
  13.      TIME_TO_SEC(TIMEDIFF(LEAST(vaa1.fin,vaa2.fin)   , GREATEST(vaa1.debut,vaa2.debut))) * LEAST(tat1.taux,tat2.taux)/(3600 * 100) AS cout
  14. FROM      `v_activite_activite_agent` vaa1
  15.        INNER JOIN v_activite_activite_agent vaa2
  16.             ON
  17.                 vaa1.agent_id = vaa2.agent_id
  18.                 AND vaa1.debut < vaa2.fin
  19.                 AND vaa1.fin > vaa2.debut
  20.                 AND vaa1.id > vaa2.id
  21.       INNER JOIN type_activite ta1 ON vaa1.type_activite_id = ta1.id
  22.       INNER JOIN type_activite_taux tat1
  23.             ON tat1.type_activite_id = ta1.id
  24.             AND GREATEST(vaa1.debut,vaa2.debut) BETWEEN tat1.debut AND tat1.fin
  25.       INNER JOIN structure s1 ON vaa1.structure_id = s1.id
  26.      INNER JOIN type_activite ta2 ON vaa2.type_activite_id = ta2.id
  27.       INNER JOIN type_activite_taux tat2
  28.             ON tat2.type_activite_id = ta2.id
  29.             AND GREATEST(vaa1.debut,vaa2.debut) BETWEEN tat2.debut AND tat2.fin
  30.       INNER JOIN structure s2 ON vaa2.structure_id = s2.id
  31.      INNER JOIN agent a ON vaa1.agent_id = a.id
  32. WHERE
  33.  vaa1.type_activite_id NOT IN (4,7,48)
  34.   AND vaa2.type_activite_id NOT IN (4,7,48)
  35.   AND vaa1.type_paiement = 'payé'
  36.  AND vaa2.type_paiement = 'payé'
  37.  AND vaa1.statut_paiement = 'payé'
  38.  AND vaa2.statut_paiement = 'payé'
  39. LIMIT 1000


Message édité par flo850 le 20-01-2011 à 13:54:08
n°2050446
vapeur_coc​honne
Stig de Loisir
Posté le 20-01-2011 à 14:01:23  profilanswer
 

http://3.bp.blogspot.com/_h8ensOfhe3o/TK_sp9zu23I/AAAAAAAAAs8/8H3byadTBX0/s400/sora-aoi-sexy.jpg


---------------
marilou repose sous la neige
n°2050538
mareek
Et de 3 \o/
Posté le 20-01-2011 à 18:15:54  profilanswer
 

http://vimeo.com/18150336


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2051016
Profil sup​primé
Posté le 22-01-2011 à 12:39:52  answer
 


 
 
Y a de l abus là ... [:bien]
 
 
Ma contribution avec des balises code si non, c'est moins joli.  :)  

Code :
  1. -----------------------------------------------------------------
  2. -- Copyright (C) 2011 Numeric Prescience ; All right reserved. --
  3. -----------------------------------------------------------------
  4. -- Author  : Manuel De Girardi.                                --
  5. -- Date    : 2011/01/14.                                       --
  6. -- Version : Release.                                          --
  7. -----------------------------------------------------------------
  8.  
  9. with Np.Glossary;
  10. with Np.Generic_Extended_Binary_Code;
  11. with PragmARC.REM_NN_Wrapper;
  12. use PragmARC.REM_NN_Wrapper;
  13. with PragmARC.Math.Functions;
  14. with Ada.Direct_Io;
  15. use Np;
  16.  
  17. with Ada.Numerics.Float_Random;
  18.  
  19. with Text_Io, Ada.Characters.Latin_1;
  20. use Ada.Characters;
  21. with Ada.Unchecked_Deallocation;
  22. with Interfaces.C;
  23. use Interfaces;
  24. procedure Main is
  25.  
  26.   task Jushua is
  27.      entry Start;
  28.      entry Halt;
  29.      entry Receive(Pattern : in String);
  30.   end Jushua;
  31.  
  32.   task Console is
  33.      entry Initialize;
  34.      entry Receive(Char : in Character);
  35.      entry Receive(Pattern : in String);
  36.      entry Lock;
  37.      entry Unlock;
  38.      entry Info(RMS_Error : in Real; Percent : in Real);
  39.      entry Halt;
  40.   end Console;
  41.  
  42.   function System(Command : in C.Char_Array) return C.Int;
  43.   pragma Import(C, System, "system" );
  44.  
  45.   type String_Access is access all String;
  46.   procedure Free is
  47.      new Ada.Unchecked_Deallocation(String, String_Access);
  48.  
  49.  
  50.  
  51.   package The_Glossary is new Glossary(125660);
  52.   use The_Glossary;
  53.   Sentence_Length : constant Natural := 20;
  54.   subtype T_Sentence is T_Lang_Array(1..Sentence_Length);
  55.   package Coded_Word is new Generic_Extended_Binary_Code(T_Language);
  56.   use Coded_Word;
  57.  
  58.   Rand_Gen :
  59.     Ada.Numerics.Float_Random.Generator;
  60.  
  61.  
  62.   subtype T_Register is Node_Set(1..T_Code'Length*Sentence_Length);
  63.   package Real_Math is new PragmARC.Math.Functions (Supplied_Real => Real);
  64.   package Real_Io is new Text_Io.Float_Io(Real);
  65.   --package Register_Io is new Direct_Io(T_Register);
  66.   procedure Table2register(Table : in T_Lang_Array;
  67.                            Register : out Node_Set) is
  68.      Code : T_Code;
  69.   begin
  70.      for I in 0..Table'Length-1 loop
  71.         Code := Code_Of(Table(I+1));
  72.         for J in T_Code'Range loop
  73.            Register(I*T_Code'Length+J) := Code(J);
  74.         end loop;
  75.      end loop;
  76.   end Table2register;
  77.  
  78.   procedure Register2table(Register : in Node_Set;
  79.                            Table    : out  T_Lang_Array) is
  80.      Code : T_Code;
  81.   begin
  82.      for I in 0..Table'Length-1 loop
  83.         begin
  84.            Code := Register(I*T_Code'Length+1..I*T_Code'Length+T_Code'Length);
  85.               Table(I+1) := Item_Of(Code);
  86.         exception
  87.            when others =>
  88.               null;
  89.         end;
  90.      end loop;
  91.   end Register2table;
  92.  
  93.  
  94.   function String2table(Expr : in String) return T_Lang_Array is
  95.      Sentence : T_Sentence := (others => 0);
  96.      Prec : Natural := 0;
  97.      Index : Natural := 0;
  98.   begin
  99.      if Expr'length /= 1 then
  100.         for I in 2..Expr'length loop
  101.            case Expr(I) is
  102.               when Character'Val(32) =>
  103.                  begin
  104.                     Text_Io.Put("." );
  105.                     sentence(Index+1) := keyword(Expr(Prec+1..I-1));
  106.                     Index := Index + 1;
  107.                     Prec := I;
  108.                  exception
  109.                     when others =>
  110.                        null;
  111.                  end;
  112.               when others =>
  113.                  null;
  114.            end case;
  115.            exit when Index = Sentence'Length;
  116.         end loop;
  117.      end if;
  118.      if Index < Sentence'Length then
  119.         begin
  120.            sentence(Index+1) := keyword(Expr(Prec+1..Expr'last));
  121.            Index := Index + 1;
  122.            Text_Io.Put("Done" );
  123.         exception
  124.            when others =>
  125.               null;
  126.         end;
  127.      end if;
  128.      return Sentence;
  129.   end String2table;
  130.  
  131.   task body Jushua is
  132.      End_Of_Section, End_Of_Task : Boolean := False;
  133.      Data_stack : array (1..8*2) of T_Register :=
  134.        (others => (others => 0.0));
  135.  
  136.      Temp, Register : T_Register := (others => 0.0);
  137.  
  138.      Buffer : String_Access;
  139.      Output : String_Access := new String ' ("" );
  140.  
  141.      Sentence : T_Sentence;
  142.  
  143.      Reuse : Boolean := False;
  144.  
  145.   begin
  146.  
  147.            accept Start;
  148.      Table2register(String2table
  149.                       ("si tu veux savoir ce qu est la matrice il te faudra l explorer toi même" ),
  150.                     Register);
  151.      Data_Stack(1) := Register;
  152.      Table2register(String2table
  153.                       ("qu est ce que la matrice" ),
  154.                     Register);
  155.      Data_Stack(2) := Register;
  156.      Table2register(String2table
  157.                       ("ta vie est le reste d une équation déséquilibrée innerante à  la programmation de la matrice" ),
  158.                     Register);
  159.      Data_Stack(3) := Register;
  160.      Table2register(String2table
  161.                       ("qui suis je" ),
  162.                     Register);
  163.      Data_Stack(4) := Register;
  164.      Table2register(String2table
  165.                       ("je montrerai à ces gens ce que vous ne voulez pas qu ils voient" ),
  166.                     Register);
  167.      Data_Stack(5) := Register;
  168.      Table2register(String2table
  169.                       ("je leur ferai voir un monde sans vous un monde sans lois ni contrôle sans limites ni frontières" ),
  170.                     Register);
  171.      Data_Stack(6) := Register;
  172.      Table2register(String2table
  173.                       ("un monde où tout est possible" ),
  174.                     Register);
  175.      Data_Stack(7) := Register;
  176.      Table2register(String2table
  177.                       ("ce que nous en ferons ne dépendra que de vous" ),
  178.                     Register);
  179.      Data_Stack(8) := Register;
  180.      Table2register(String2table
  181.                       ("tout ce qui a un début a une fin" ),
  182.                     Register);
  183.      Data_Stack(9) := Register;
  184.      Table2register(String2table
  185.                       ("la matrice est universelle elle est omniprésente elle est avec nous ici en ce moment même" ),
  186.                     Register);
  187.      Data_Stack(10) := Register;
  188.      Table2register(String2table
  189.                       ("tu la vois chaque fois que tu regardes par la fenêtre ou lorsque tu allumes la télévision" ),
  190.                     Register);
  191.      Data_Stack(11) := Register;
  192.      Table2register(String2table
  193.                       ("tu ressens sa présence quand tu pars au travail quand tu vas à l église ou quand tu paies tes factures" ),
  194.                     Register);
  195.      Data_Stack(12) := Register;
  196.      Table2register(String2table
  197.                       ("elle est le monde qu on superpose à ton regard pour t empêcher de voir la vérité" ),
  198.                     Register);
  199.      Data_Stack(13) := Register;
  200.      Table2register(String2table
  201.                       ("quelle vérité" ),
  202.                     Register);
  203.      Data_Stack(14) := Register;
  204.      Table2register(String2table
  205.                       ("le fait que tu es un esclave manuel" ),
  206.                     Register);
  207.      Data_Stack(15) := Register;
  208.      Table2register(String2table
  209.                       ("on n est pas le meilleur quand on le croit mais quand on le sait" ),
  210.                     Register);
  211.      Data_Stack(16) := Register;
  212.  
  213.      while not End_Of_Task loop
  214.         declare
  215.            procedure Get_Expl(Pattern : in Positive;
  216.                               Input : out Node_Set;
  217.                               Desired : out Node_Set) is
  218.            begin
  219.               Input := Data_Stack(Pattern*2-1);
  220.               Desired :=  Data_Stack(Pattern*2);
  221.            end Get_Expl;
  222.  
  223.  
  224.            package NN_Expl is new REM_NN
  225.              (
  226.               Num_Input_Nodes => Sentence_Length * T_Code'Length,
  227.               Num_Hidden_Nodes => Sentence_Length,
  228.               Num_Output_Nodes => Sentence_Length * T_Code'length,
  229.               Num_Patterns => Data_Stack'Length/2,
  230.               New_Random_Weights => not Reuse,
  231.               Input_To_Output_Connections => False,
  232.               Weight_File_Name => "network.wgt",
  233.               Get_Input => Get_Expl
  234.              );
  235.  
  236.            use NN_Expl;
  237.  
  238.  
  239.            Desired, Response : T_register := (others => 0.0);
  240.            RMS_Error : Real := 10.0;
  241.            Error     : Real := 0.0;
  242.            Converged  : constant real :=
  243.              0.1275 + Real(Ada.Numerics.Float_Random.Random(rand_Gen))/10000.0;
  244.  
  245.  
  246.         begin
  247.            while not End_Of_Section loop
  248.               select
  249.                  accept Halt do
  250.                     End_Of_Task := True;
  251.                     End_Of_Section := True;
  252.                  end Halt;
  253.               or
  254.                  accept Receive(Pattern : in String) do
  255.                     Register := (others => 0.0);
  256.                     Table2register(String2table(Pattern), Register);
  257.                     for I in 2..Data_Stack'Length loop
  258.                        Data_Stack(I-1) := Data_Stack(I);
  259.                     end loop;
  260.                     Data_Stack(Data_Stack'last) := Register;
  261.                     End_Of_Section := True;
  262.                  end Receive;
  263.               or
  264.                  delay 0.0;
  265.  
  266.                  for Pattern in 1..Data_Stack'Length/2 Loop
  267.                     NN_Expl.Train;
  268.                     NN_Expl.Respond (Pattern, Response);
  269.                     Desired := Data_Stack(Pattern*2);
  270.                     for I in Response'Range loop
  271.  
  272.                        Error :=
  273.                          Error + (Desired(I) - Response(i) );
  274.                     end loop;
  275.                     RMS_Error := RMS_Error + ((Error/Real(Response'Length)) ** 2);
  276.                     Error := 0.0;
  277.                  end loop;
  278.                  NN_Expl.Save_Weights;
  279.                  RMS_Error :=
  280.                    Real_Math.Sqrt(RMS_Error / Real (Data_Stack'Length/2)) ;
  281.  
  282.                  if (RMS_Error <= Converged) then
  283.                     NN_Expl.Respond (1, Response);
  284.  
  285.                     for I in Response'Range loop
  286.                        if Response(I) >= 0.5 then
  287.                           Response(I) := 1.0;
  288.                        else
  289.                           Response(I) := 0.0;
  290.                        end if;
  291.                     end loop;
  292.  
  293.                     Register2table(Response, sentence);
  294.                     for I in Sentence'Range loop
  295.                        begin
  296.                           Free(Buffer);
  297.                           Buffer := new String ' (Output.all & Image(sentence(I)) & Character'Val(32));
  298.                           Free(Output);
  299.                           Output := new String ' (Buffer.All);
  300.                        exception
  301.                           when others =>
  302.                              null;
  303.                        end;
  304.                     end loop;
  305.                     Console.Receive(Output.all);
  306.                     Free(Output);
  307.                     Output := new String ' ("" );
  308.  
  309.                     Temp := Data_Stack(Data_Stack'last-1);
  310.  
  311.                     for I in 3..Data_Stack'Length loop
  312.                        Data_Stack(I-2) := Data_Stack(I);
  313.                     end loop;
  314.                     Data_Stack(Data_Stack'Last-1) := Response;
  315.                     Data_Stack(Data_Stack'last) := Temp;
  316.                     End_Of_Section := True;
  317.  
  318.                  else
  319.                     select
  320.                        Console.info(RMS_Error, (converged/RMS_Error)*100.0);
  321.                     or
  322.                        delay 0.0;
  323.                     end select;
  324.                  end if;
  325.  
  326.               end select;
  327.            end loop;
  328.         end;
  329.         End_Of_Section := False;
  330.         Reuse := True;
  331.      end loop;
  332.   end Jushua;
  333.  
  334.   task body Console is
  335.      Suspended, End_Of_Task : Boolean := False;
  336.      Line : String_access := new String ' ("" );
  337.      Buffer : String_Access;
  338.      Errno : C.Int;
  339.  
  340.      Input_Page_Stack : array (1..12) of String_Access;
  341.      Input_Window_Index : Natural := 0;
  342.      input_Page_Index : Natural := 0;
  343.      Output_Page_Stack : array (1..12) of String_Access;
  344.      Output_Window_Index : Natural := 0;
  345.      Output_Page_Index : Natural := 0;
  346.      Line_Count : Integer := 6;
  347.  
  348.      Learning_Info : String_Access := new String ' ("" );
  349.  
  350.   begin
  351.      accept Initialize;
  352.      while not End_Of_Task loop
  353.  
  354.         Errno := System(C.To_C("cls" ));
  355.         Text_Io.Put_line(Learning_Info.all);
  356.  
  357.         Text_Io.Put_Line("-----------------------------------  Output  ----------------------------------" );
  358.         Line_Count := 6;
  359.         if Output_Page_Index /= 0 then
  360.            for I in reverse 1..Output_Page_Index loop
  361.               exit when (Line_Count - ((Output_Page_Stack(I).all'Length/80) + 1)) < 1;
  362.               Line_Count := Line_Count - ((Output_Page_Stack(I).all'Length/80) + 1);
  363.               Output_Window_Index := Output_Window_Index + 1;
  364.            end loop;
  365.            for I in reverse 0..Output_Window_Index-1 loop
  366.               Text_Io.Put_Line(Output_Page_Stack(output_Page_Index - I).all);
  367.            end loop;
  368.         end if;
  369.         Output_Window_Index := 0;
  370.         if Line_Count > 0 then
  371.            Text_Io.New_Line(Text_Io.Count(Line_Count));
  372.         end if;
  373.         Text_Io.Put_Line("-----------------------------------  Input  -----------------------------------" );
  374.         Line_Count := 16 - ((Line.all'Length/80) + 1);
  375.         if Input_Page_Index /= 0 then
  376.            for I in reverse 1..Input_Page_Index loop
  377.               exit when (Line_Count - ((Input_Page_Stack(I).all'Length/80) + 1)) < 1;
  378.               Line_Count := Line_Count - ((Input_Page_Stack(I).all'Length/80) + 1);
  379.               Input_Window_Index := Input_Window_Index + 1;
  380.            end loop;
  381.            for I in reverse 0..Input_Window_Index-1 loop
  382.               Text_Io.Put_Line(Input_Page_Stack(Input_Page_Index - I).all);
  383.            end loop;
  384.         end if;
  385.         Input_Window_Index := 0;
  386.         if Line_Count > 0 then
  387.            Text_Io.New_Line(Text_Io.Count(Line_Count));
  388.         end if;
  389.         Text_Io.Put(Line.all);
  390.         delay 0.01;
  391.         select
  392.            accept Lock do
  393.               Suspended := True;
  394.            end Lock;
  395.         or
  396.            accept Receive(Char : in Character) do
  397.               case Char is
  398.                  when Latin_1.Bs =>
  399.                     Buffer := new String ' (Line(1..Line'Length-1));
  400.                     Free(Line);
  401.                     Line := new String ' (Buffer.all);
  402.                     Free(Buffer);
  403.                  when Latin_1.CR =>
  404.                     Jushua.Receive(Line.all);
  405.                     if Input_Page_Index = Input_Page_Stack'Length then
  406.                        for I in 2..Input_Page_Index loop
  407.                           Input_Page_Stack(I-1) :=
  408.                             Input_Page_Stack(I);
  409.                        end loop;
  410.                        Input_Page_Index := Input_Page_Index - 1;
  411.                     end if;
  412.                     if Input_Page_Index < Input_Page_Stack'Length then
  413.                        Input_Page_Stack(Input_Page_Index+1) :=
  414.                          new String ' (Line.all);
  415.                        Input_Page_Index := Input_Page_Index + 1;
  416.                     end if;
  417.                     Free(Line);
  418.                     Line := new String ' ("" );
  419.                  when others =>
  420.                     Buffer := new String ' (Line.all & Char);
  421.                     Free(Line);
  422.                     Line := new String ' (Buffer.all);
  423.                     Free(Buffer);
  424.               end case;
  425.            end Receive;
  426.         or
  427.            accept Receive(Pattern : in String) do
  428.               if Output_Page_Index = Output_Page_Stack'Length then
  429.                  for I in 2..Output_Page_Index loop
  430.                     Output_Page_Stack(I-1) :=
  431.                       Output_Page_Stack(I);
  432.                  end loop;
  433.                  Output_Page_Index := Output_Page_Index - 1;
  434.               end if;
  435.               if Output_Page_Index < Output_Page_Stack'Length then
  436.                  Output_Page_Stack(Output_Page_Index+1) :=
  437.                    new String ' (Pattern);
  438.                  Output_Page_Index := Output_Page_Index + 1;
  439.               end if;
  440.            end Receive;
  441.         or
  442.            accept Info(RMS_Error : in Real; Percent : in Real) do
  443.               Free(Learning_Info);
  444.               Learning_Info := new String ' ("Learning : " &
  445.                                                Real'Image(Percent) & "% ; " &
  446.                                                "RMS_Error = " &
  447.                                                Real'Image(RMS_Error));
  448.            end Info;
  449.         end select;
  450.         while Suspended loop
  451.            select
  452.               accept Halt do
  453.                  Suspended := False;
  454.                  End_Of_Task := True;
  455.               end Halt;
  456.            or
  457.               accept Unlock do
  458.                  Suspended := False;
  459.               end Unlock;
  460.            end select;
  461.         end loop;
  462.      end loop;
  463.  
  464.   end Console;
  465.  
  466.   Char : Character;
  467. begin
  468.  
  469.   Initialize("Lexique-355.txt" );
  470.   Jushua.Start;
  471.   Console.Initialize;
  472.   loop
  473.      begin
  474.         Text_Io.Get_Immediate(Char);
  475.         if char =  Latin_1.Esc then
  476.            Console.Lock;
  477.            Text_Io.New_Line;
  478.            Text_Io.Put("Quit? " );
  479.            Text_Io.Get_Immediate(Char);
  480.            if Char = 'y' or Char = 'Y' then
  481.               exit;
  482.            else
  483.               Text_Io.Put_line("Excelent!" );
  484.               Console.Unlock;
  485.            end if;
  486.         else
  487.            Console.Receive(Char);
  488.         end if;
  489.      exception
  490.         when others =>
  491.            null;
  492.      end;
  493.   end loop;
  494.  
  495.   Jushua.Halt;
  496.   Console.Halt;
  497. end Main;

n°2051018
kadreg
profil: Utilisateur
Posté le 22-01-2011 à 12:41:34  profilanswer
 

http://knowyourmeme.com/memes/cool-story-bro


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°2051048
sligor
Posté le 22-01-2011 à 14:45:52  profilanswer
 

qu'est ce que c'est moche l'ADA


---------------
qwerty-fr
mood
Publicité
Posté le 22-01-2011 à 14:45:52  profilanswer
 

n°2051049
kadreg
profil: Utilisateur
Posté le 22-01-2011 à 14:47:04  profilanswer
 

moi j'aime bien :o


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°2051055
masklinn
í dag viðrar vel til loftárása
Posté le 22-01-2011 à 14:58:18  profilanswer
 

http://www.youtube.com/watch?v=EsWAPtwDkxw


---------------
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°2051058
sligor
Posté le 22-01-2011 à 15:06:29  profilanswer
 

kadreg a écrit :

moi j'aime bien :o


ouai, mais tu aimes aussi eclipse et les merco :/


---------------
qwerty-fr
n°2051112
mareek
Et de 3 \o/
Posté le 22-01-2011 à 21:50:38  profilanswer
 

lovers's suicide


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2053105
flo850
moi je
Posté le 30-01-2011 à 23:35:43  profilanswer
 
n°2053107
mareek
Et de 3 \o/
Posté le 30-01-2011 à 23:43:49  profilanswer
 

The Art of Computer Programming


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2053123
masklinn
í dag viðrar vel til loftárása
Posté le 31-01-2011 à 07:59:57  profilanswer
 

http://android-developers.blogspot [...] eness.html


---------------
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°2053125
flo850
moi je
Posté le 31-01-2011 à 08:11:24  profilanswer
 
n°2053192
sligor
Posté le 31-01-2011 à 13:44:39  profilanswer
 

mareek a écrit :

The Art of Computer Programming


Citation :

Volume 5 - Syntactic Algorithms, planned (as of 2011, estimated in 2020).


[:rofl]


---------------
qwerty-fr
n°2053537
mareek
Et de 3 \o/
Posté le 01-02-2011 à 22:20:49  profilanswer
 

http://www.smbc-comics.com/rss.php


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2053548
sligor
Posté le 01-02-2011 à 23:01:53  profilanswer
 
n°2054196
Tristou
Keep calm and hack cookies
Posté le 04-02-2011 à 02:08:48  profilanswer
 

The Pandorica will open


---------------
"About your cat Mr. Schrödinger : I have good news and bad news"
n°2054211
flo850
moi je
Posté le 04-02-2011 à 08:44:53  profilanswer
 
n°2054511
mareek
Et de 3 \o/
Posté le 05-02-2011 à 00:33:41  profilanswer
 

http://i.imgur.com/LxEWE.jpg


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2054659
Tristou
Keep calm and hack cookies
Posté le 06-02-2011 à 16:08:15  profilanswer
 

MANU KATCHE


---------------
"About your cat Mr. Schrödinger : I have good news and bad news"
n°2054691
mareek
Et de 3 \o/
Posté le 06-02-2011 à 21:12:28  profilanswer
 

http://www.nytimes.com/2011/01/14/ [...] ugman.html


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2054755
vapeur_coc​honne
Stig de Loisir
Posté le 07-02-2011 à 10:34:17  profilanswer
 

<script src="../javascript/loupe.js" type="text/javascript" ></script>


---------------
marilou repose sous la neige
n°2054950
mareek
Et de 3 \o/
Posté le 07-02-2011 à 21:17:15  profilanswer
 

http://tempsreel.nouvelobs.com/art [...] royal.html


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2055262
flo850
moi je
Posté le 09-02-2011 à 08:21:30  profilanswer
 
n°2055304
vapeur_coc​honne
Stig de Loisir
Posté le 09-02-2011 à 11:21:01  profilanswer
 

substr


---------------
marilou repose sous la neige
n°2056232
Raistlin M​ajere
i bouh at you !
Posté le 12-02-2011 à 00:54:39  profilanswer
 
n°2056243
masklinn
í dag viðrar vel til loftárása
Posté le 12-02-2011 à 09:47:34  profilanswer
 

I guess the music's always cooler on the other side of the decade.


---------------
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°2056433
mareek
Et de 3 \o/
Posté le 13-02-2011 à 15:54:52  profilanswer
 

http://www.ikea.com/fr/fr/catalog/products/40103100


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2056456
Profil sup​primé
Posté le 13-02-2011 à 18:14:22  answer
 

161 39 250012 32 250003

n°2056458
masklinn
í dag viðrar vel til loftárása
Posté le 13-02-2011 à 18:17:01  profilanswer
 

http://i.imgur.com/JSUWF.png


---------------
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°2056790
sligor
Posté le 14-02-2011 à 20:34:10  profilanswer
 

Why 3D doesn't work and never will. Case closed.
http://blogs.suntimes.com/ebert/2011/01/post_4.html


---------------
qwerty-fr
n°2057370
kadreg
profil: Utilisateur
Posté le 16-02-2011 à 18:04:12  profilanswer
 

{{Référence nécessaire}}


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
n°2057382
the real m​oins moins
Posté le 16-02-2011 à 18:56:00  profilanswer
 


 
        assertEquals("It's not unusual\n", filter.filter(NOHEADERS, "It's not unusual\n2010/1/13 Tom Jones <tom@jones.com>:\n> To be loved by anyone" ));
        assertEquals("It's not unusual\n", filter.filter(NOHEADERS, "It's not unusual\nOp 14 jan 2010 09:51 schreef \"Tom Jones\" <tom@jones.com>:\n> To have fun with anyone" ));
        assertEquals("It's not unusual\n", filter.filter(NOHEADERS, "It's not unusual\nOn Dec 16, 2010, at 11:21 AM, Tom Jones wrote:\n> To see me cry" ));
        assertEquals("It's not unusual\n", filter.filter(NOHEADERS, "It's not unusual\n\nOn 18 Jan 2010, at 09:42, Sonny & Cher wrote:\n\n> \n> On Fri, 2010-01-15 at 13:10 +0100, Tom Jones wrote:\n>> To go out at any time" ));


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2057403
mareek
Et de 3 \o/
Posté le 16-02-2011 à 22:08:09  profilanswer
 

http://www.matagot.com/cyclades/le_jeu.php


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
n°2057620
masklinn
í dag viðrar vel til loftárása
Posté le 17-02-2011 à 20:38:05  profilanswer
 

OOOOH MYYYY GOOOOOOOOOOD!
 
if scientists continue to send water bear, after water bear, into space, continuously for a few years, then the survivING poffspring will be like way super evolved! and they will be the masters of everything, forver@!!! and they eat moss, like, the most abudant shit all over the place! they just need rocks and moisture! oooaawwww shit! this planet is made of rocks and moisture! we're fucked! aoohw! fuck you! im gonna live! i live in california, fucking desert bich-chez!!! i'm amune! but oooooooooh, lousiana fucked! cajun styyle cooking won't save you! and nomore cajun chiccken will be sold, because the recepie was lost! this world would be doomed of spicy chicken! black people would riot in the streeets, stealing stealables, and telling whitey to fuck his cacker ass! but no the plus side, the collective weights and cholesterals of the black community would go down! but then the government make popeye into the a national treasure, cuz only they will know how to make the chicken cajun! this summer! coming to you your brain this summer! cuz fuck the movies! that shits expensive, and thought is free! 2012[7]


---------------
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°2057621
kadreg
profil: Utilisateur
Posté le 17-02-2011 à 20:39:48  profilanswer
 

http://www.leboncoin.fr/voitures/176282217.htm?ca=12_s


---------------
brisez les rêves des gens, il en restera toujours quelque chose...  -- laissez moi troller sur discu !
mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  164  165  166  ..  189  190  191  192  193  194

Aller à :
Ajouter une réponse
 

Sujets relatifs
Récupérer le contenu d'une frame[ASP] Récupérer le contenu du buffer
afficher le contenu d'un requette SQL dans 1 DataGrid ou autre ?Recherche un outil de help-desk
effacer le contenu d'une text areaRécupérer le contenu d'un fichier distant. readfile(), include().
Lire une page web (php) à partir de vb pour afficher le contenuoutil de test de charge
(HTML/JS aussi)Recuperation de valeur contenu entre les TAGtype contenu ds un vector
Plus de sujets relatifs à : [Topic Outil] sauvegardez le contenu de votre presse papier


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