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

 


 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  1117  1118  1119  ..  1454  1455  1456  1457  1458  1459
Auteur Sujet :

blabla@web

n°2082930
gatsu35
Blablaté par Harko
Posté le 17-06-2011 à 13:56:03  profilanswer
 

Reprise du message précédent :
A chaque loop tu vas modifier le dom et le navigateur va devoir se rafraichir. Donc perfs moindres
J'aurai fait ça :

Code :
  1. var html = [];
  2. for(var i=0; i<items.length; i++) {
  3.      var item = items[i];
  4.       html.push('<li><a href="' + item.url + '">' + item.desc + '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));

Message cité 1 fois
Message édité par gatsu35 le 17-06-2011 à 13:56:34

---------------
Blablaté par Harko
mood
Publicité
Posté le 17-06-2011 à 13:56:03  profilanswer
 

n°2082932
the real m​oins moins
Posté le 17-06-2011 à 13:59:35  profilanswer
 

hmm certes; tant qu'a faire y'a pas un objet genre stringbuffer en js ? je vois pas l'interet de bricoler avec une array là.
Niveau élégance, c'est kif-kif, et c'est plus vers ça que ma question s'orientait, mais merci pour ce tip, néanmoins.


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2082933
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 13:59:36  profilanswer
 

gatsu35 a écrit :

A chaque loop tu vas modifier le dom et le navigateur va devoir se rafraichir. Donc perfs moindres
J'aurai fait ça :  

Code :
  1. var html = [];
  2. for(var i=0; i<items.length; i++) {
  3.     var item = items[i];
  4.      html.push('<li><a href="' + item.url + '">' + item.desc + '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));



Et je relance de pomme avec:

Code :
  1. var html = [];
  2. for(var i=0; i<items.length; ++i) {
  3.    var item = items[i];
  4.    html.push('<li><a href="', item.url, '">', item.desc, '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));


---------------
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°2082934
the real m​oins moins
Posté le 17-06-2011 à 13:59:54  profilanswer
 

Et au passage, qqun a des infos sur le support du .bmp par les browsers ?


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2082935
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 14:00:16  profilanswer
 

the real moins moins a écrit :

hmm certes; tant qu'a faire y'a pas un objet genre stringbuffer en js ?


Non, puisqu'il y a Array.join qui fait pareil.

the real moins moins a écrit :

Et au passage, qqun a des infos sur le support du .bmp par les browsers ?


Ils supportent tous. Ce sont les utilisateurs qui supportent pas :o

Message cité 1 fois
Message édité par masklinn le 17-06-2011 à 14:00:41

---------------
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°2082939
the real m​oins moins
Posté le 17-06-2011 à 14:19:23  profilanswer
 

masklinn a écrit :


Non, puisqu'il y a Array.join qui fait pareil.


 :heink:  
 

masklinn a écrit :


Ils supportent tous. Ce sont les utilisateurs qui supportent pas :o


certes


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2082940
the real m​oins moins
Posté le 17-06-2011 à 14:25:37  profilanswer
 

nan mais esplique :O


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2082941
nraynaud
lol
Posté le 17-06-2011 à 14:33:47  profilanswer
 

quelqu'un a des pointeurs sur undo/redo en javascript ?


---------------
trainoo.com, c'est fini
n°2082945
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 14:52:54  profilanswer
 


Bah oui.
Au lieu de faire

Code :
  1. final StringBuilder sb = new StringBuilder();
  2. for(Foo foo: foos) {
  3.    sb.append(foo.getSomeString());
  4. }
  5. return sb.toString();


tu écris

Code :
  1. var sb = [];
  2. foos.forEach(function (foo) {
  3.    sb.push(foo.get_some_string());
  4. });
  5. return sb.join();


 
Pas besoin d'un stringbuilder.


esplique quoi?


---------------
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°2082948
gatsu35
Blablaté par Harko
Posté le 17-06-2011 à 15:20:59  profilanswer
 

nraynaud a écrit :

quelqu'un a des pointeurs sur undo/redo en javascript ?


Ptet 0x90


---------------
Blablaté par Harko
mood
Publicité
Posté le 17-06-2011 à 15:20:59  profilanswer
 

n°2082949
nraynaud
lol
Posté le 17-06-2011 à 15:24:13  profilanswer
 


chuis avec lui sur skype et non, il a pas l'air.


---------------
trainoo.com, c'est fini
n°2082950
Shinuza
This is unexecpected
Posté le 17-06-2011 à 15:39:29  profilanswer
 

the real moins moins a écrit :

hmm certes; tant qu'a faire y'a pas un objet genre stringbuffer en js ?

Non, pas cross-browser. L'Array est ce qui se rapproche le plus, même si niveau perf c'est pas extra ( resize par chunk ) mais les Buffers que tu trouveras  (i.e Buffer, ArrayBuffer) sont fixed-width de toute façon.

Citation :

Niveau élégance, c'est kif-kif, et c'est plus vers ça que ma question s'orientait, mais merci pour ce tip, néanmoins.

Tu peux regarder des trucs genre les pseudos string formatting ou autre langages de templates, mais ça plus rajouter du boilerplate qu'autre chose.

masklinn a écrit :


Et je relance de pomme avec:

Code :
  1. var html = [];
  2. for(var i=0, l=items.length; i<l; ++i) {
  3.    var item = items[i];
  4.    html.push('<li><a href="', item.url, '">', item.desc, '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));


FTFY [:aloy]


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
n°2082951
gatsu35
Blablaté par Harko
Posté le 17-06-2011 à 15:44:59  profilanswer
 

Code :
  1. placeHolder.append(items.map(function(item) {
  2. return <li><a href="'+ item.url+ '">'+ item.desc+ '</a></li>';
  3. }).join(''));


---------------
Blablaté par Harko
n°2082952
nraynaud
lol
Posté le 17-06-2011 à 15:45:38  profilanswer
 

Shinuza a écrit :

Non, pas cross-browser. L'Array est ce qui se rapproche le plus, même si niveau perf c'est pas extra ( resize par chunk ) mais les Buffers que tu trouveras  (i.e Buffer, ArrayBuffer) sont fixed-width de toute façon.


bah de toutes façon s'il fait uniquement de la croissance il est mieux avec ça non ?


---------------
trainoo.com, c'est fini
n°2082959
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 16:04:41  profilanswer
 

Shinuza a écrit :

Non, pas cross-browser. L'Array est ce qui se rapproche le plus, même si niveau perf c'est pas extra ( resize par chunk )


Bah tu veux resizer par quoi [:pingouino dei]

 

Et si tu connais déjà l'upper bound pour ton nombre d'éléments (ou que ça vient d'une autre collection avec un mapping facile) tu peux présizer ton array via le constructeur (au lieu d'un litéral) :o

Shinuza a écrit :

mais les Buffers que tu trouveras  (i.e Buffer, ArrayBuffer) sont fixed-width de toute façon.


Puis c'est pas vraiment fait pour ça non plus, les typed arrays :o

gatsu35 a écrit :

Code :
  1. placeHolder.append(items.map(function(item) {
  2. return <li><a href="'+ item.url+ '">'+ item.desc+ '</a></li>';
  3. }).join(''));



Tu refais plein de + au lieu de pusher 4 éléments par itération, chuis pas sûr que t'y gagnes :o Et t'as l'overhead d'une fonction supplémentaire par itération.

Message cité 2 fois
Message édité par masklinn le 17-06-2011 à 16:06:55

---------------
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°2082960
nraynaud
lol
Posté le 17-06-2011 à 16:05:44  profilanswer
 

http://stackoverflow.com/questions [...] -a-web-app


---------------
trainoo.com, c'est fini
n°2082971
gatsu35
Blablaté par Harko
Posté le 17-06-2011 à 16:32:28  profilanswer
 

masklinn a écrit :


Tu refais plein de + au lieu de pusher 4 éléments par itération, chuis pas sûr que t'y gagnes :o Et t'as l'overhead d'une fonction supplémentaire par itération.


Tu ne m'apprends rien hein, c'était juste pour la forme  :o je me doutais bien que avec les "+" je ne gagne pas grand chose :D


---------------
Blablaté par Harko
n°2082977
Shinuza
This is unexecpected
Posté le 17-06-2011 à 16:41:24  profilanswer
 

nraynaud a écrit :


bah de toutes façon s'il fait uniquement de la croissance il est mieux avec ça non ?

Oui.

masklinn a écrit :

Et si tu connais déjà l'upper bound pour ton nombre d'éléments (ou que ça vient d'une autre collection avec un mapping facile) tu peux présizer ton array via le constructeur (au lieu d'un litéral) :o

Il lui faut une length dans son JSON du coup.

masklinn a écrit :

Puis c'est pas vraiment fait pour ça non plus, les typed arrays :o

Mais les Buffers si, par contre je crois que ça existe même pas dans l'API v8, c'est un truc NodeJS only[/quotemsg]

masklinn a écrit :

Tu refais plein de + au lieu de pusher 4 éléments par itération, chuis pas sûr que t'y gagnes :o Et t'as l'overhead d'une fonction supplémentaire par itération.

Ouais comparé à une simple boucle c'est pas extra, mais je doute que ça fasse office de bottleneck dans son truc. Mais il faut Array#map


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
n°2082983
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 16:56:21  profilanswer
 

Shinuza a écrit :

Il lui faut une length dans son JSON du coup.


items.length c'est pour les chiens?

 

il ajoute 5 items à son array pour chaque objet dans items, donc:

Code :
  1. var html = new Array(items.length * 5);
  2. for(var i=0; i<items.length; ++i) {
  3.    var item = items[i];
  4.    html.push('<li><a href="', item.url, '">', item.desc, '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));


éouala, zéro croissance.

Shinuza a écrit :

Mais les Buffers si, par contre je crois que ça existe même pas dans l'API v8, c'est un truc NodeJS only


Bah c'est comme les typed arrays, c'est fait pour les données binaires pas les chaînes quoi.

Shinuza a écrit :

Ouais comparé à une simple boucle c'est pas extra, mais je doute que ça fasse office de bottleneck dans son truc. Mais il faut Array#map


Depuis IE9, tous les navigateurs de prod ont en natif :o

 

Et pour IE7/IE8, shims d'ajout à Array.prototype :o

Message cité 2 fois
Message édité par masklinn le 17-06-2011 à 16:56:51

---------------
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°2083001
the real m​oins moins
Posté le 17-06-2011 à 18:20:09  profilanswer
 

masklinn a écrit :


Bah oui.
<...>
Pas besoin d'un stringbuilder.


 

masklinn a écrit :


esplique quoi?


 
Ben je vois bien ce que tu fais avec l'array, mais ça me parait (peut etre faussement, c'est ça que je demande d'esspliquer) plus "lourd"


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2083011
Skateinmar​s
Posté le 17-06-2011 à 20:10:20  profilanswer
 

masklinn a écrit :


Code :
  1. html.push('<li><a href="', item.url, '">', item.desc, '</a></li>');



 

Pourquoi vous faites ça avec un string et vous construisez pas des noeuds ?

Message cité 1 fois
Message édité par Skateinmars le 17-06-2011 à 20:10:34

---------------
Feedback HAV
n°2083012
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 21:14:13  profilanswer
 

the real moins moins a écrit :

Ben je vois bien ce que tu fais avec l'array, mais ça me parait (peut etre faussement, c'est ça que je demande d'esspliquer) plus "lourd"


Pourquoi donc? StringBuilder c'est globalement une arraylist un peu spécialisée (si tu regardes le source, en interne c'est un char[] resizé explicitement quand tu en as besoin, avec des méthodes à côté pour des manipulations type chaînes)

Skateinmars a écrit :

Pourquoi vous faites ça avec un string et vous construisez pas des noeuds ?


Parce que:

  • En DOM brut c'est moins lisible (genre beaucoup, là t'as 2 createElement, un createTextElement et un setAttribute, au lieu d'une ligne t'en as une demi-douzaine composée principalement de bruit)
  • Et c'est beaucoup plus lent, même en utilisant un DocumentFragment

Message cité 1 fois
Message édité par masklinn le 17-06-2011 à 21:15:05

---------------
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°2083013
Shinuza
This is unexecpected
Posté le 17-06-2011 à 22:16:45  profilanswer
 

masklinn a écrit :


Code :
  1. var html = new Array(items.length * 5);
  2. for(var i=0; i<items.length; ++i) {
  3.    var item = items[i];
  4.    html.push('<li><a href="', item.url, '">', item.desc, '</a></li>');
  5. }
  6. placeHolder.append(html.join(''));


éouala, zéro croissance.


J'aime bien ton truc :D, par contre ça crée x * 5 valeurs undefined, j'espère qu'aucune implé ne coerce les undefined en string [:ddr555]
 
Par contre :

Code :
  1. for(var i=0, l=items.length; i<l; ++i) {


Bordel :o


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
n°2083014
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 22:25:09  profilanswer
 

Shinuza a écrit :


J'aime bien ton truc :D, par contre ça crée x * 5 valeurs undefined, j'espère qu'aucune implé ne coerce les undefined en string [:ddr555]Bordel :o


Ah oui bordel, derrière faut faire des assignation, j'ai oublié ça, sinon tu te retrouves avec un array qui fait 10*x dont la première moitié est pleine d'undefined  [:prozac]  

Code :
  1. var html = new Array(items.length * 5);
  2. for(var i=0; i<items.length; ++i) {
  3.    var item = items[i],
  4.       index = 5*i;
  5.    html[index] = '<li><a href="';
  6.    html[index + 1] = item.url;
  7.    html[index + 2] = '">';
  8.    html[index + 3] = item.desc;
  9.    html[index + 4] = '</a></li>';
  10. }
  11. placeHolder.append(html.join(''));


Et donc au final c'est pas certain que ça aille plus vite. Faudrait aussi regarder du côté de splice(), je connais pas du tout ses caractéristiques de perfs.


---------------
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°2083017
masklinn
í dag viðrar vel til loftárása
Posté le 17-06-2011 à 22:50:41  profilanswer
 

http://jsperf.com/mass-concat/3
 
Bon ben la pré-allocation marche pas mal (splice bof, dépend des navigateurs), mais c'est pas plus rapide que de faire de vieux push à l'ancienne.
 
Par contre je suis super impressionné par map, qui sur les navigateurs récents est aussi rapide que les versions "à l'ancienne" [:implosion du tibia]


---------------
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°2083025
Shinuza
This is unexecpected
Posté le 18-06-2011 à 01:09:35  profilanswer
 

J'oublie si c'est déjà passé : http://blip.tv/jsconf/jsconf2011-j [...] as-5258082


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
n°2083026
Shinuza
This is unexecpected
Posté le 18-06-2011 à 01:15:46  profilanswer
 

masklinn a écrit :


Ah oui bordel, derrière faut faire des assignation, j'ai oublié ça, sinon tu te retrouves avec un array qui fait 10*x dont la première moitié est pleine d'undefined  [:prozac]

C'est super par portable en plus :D
 
Par contre sous Firefox
 

Code :
  1. new Array(10000).join('') == ''

Programming by accident [:jar jar]


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
n°2083041
masklinn
í dag viðrar vel til loftárása
Posté le 18-06-2011 à 09:19:55  profilanswer
 

Shinuza a écrit :

C'est super par portable en plus :D


À la limite, si c'est du code faux je dois dire que la portabilité est pas très importante :D


---------------
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°2083042
gatsu35
Blablaté par Harko
Posté le 18-06-2011 à 09:22:32  profilanswer
 

Shinuza a écrit :

C'est super par portable en plus :D
 
Par contre sous Firefox
 

Code :
  1. new Array(10000).join('') == ''

Programming by accident [:jar jar]


:??: c'est normal que ça fonctionne :o
Mais sinon j'utilise cette technique quand je veux créer une chaine de caractères composée du même caractère.
 
new Array(n+1).join(charToDuplicate);


---------------
Blablaté par Harko
n°2083043
gatsu35
Blablaté par Harko
Posté le 18-06-2011 à 09:24:45  profilanswer
 

Bon c'est quoi ce bins chez bouygues telecom. Je suis en tethering sur mon iphone, si j'utilise Firefox 4.01 je l'ai dans le cul, mais si j'utilise chrome, alors là pas de problème o_O
 
j'ai téléchargé cette liste de user-agents pour l'extension userAgent switcher
http://chrispederick.com/forums/viewtopic.php?id=2598
 
Si je prend firefox 3.6 ben là pas de problème pour naviguer o_O
Et je peux même faire des svn update, ssh et compagnie en ligne de commande. Mais firefox 4.01 dtc si tu utilises sont useragent normal.
 
C'est à n'y rien comprendre :??:


---------------
Blablaté par Harko
n°2083047
koskoz
They see me trollin they hatin
Posté le 18-06-2011 à 10:21:00  profilanswer
 

gatsu35 a écrit :


Tu ne m'apprends rien hein, c'était juste pour la forme  :o je me doutais bien que avec les "+" je ne gagne pas grand chose :D


 
Y a une différence entre "+" et "," ?


---------------
Twitter
n°2083051
theredled
● REC
Posté le 18-06-2011 à 11:43:03  profilanswer
 

masklinn a écrit :


Pourquoi donc? StringBuilder c'est globalement une arraylist un peu spécialisée (si tu regardes le source, en interne c'est un char[] resizé explicitement quand tu en as besoin, avec des méthodes à côté pour des manipulations type chaînes)
 
Parce que:

  • En DOM brut c'est moins lisible (genre beaucoup, là t'as 2 createElement, un createTextElement et un setAttribute, au lieu d'une ligne t'en as une demi-douzaine composée principalement de bruit)
  • Et c'est beaucoup plus lent, même en utilisant un DocumentFragment


T'as bien changé :o


---------------
Contes de fées en yaourt --- --- zed, souviens-toi de ma dernière lettre. --- Rate ta musique
n°2083052
masklinn
í dag viðrar vel til loftárása
Posté le 18-06-2011 à 12:09:30  profilanswer
 

theredled a écrit :

 

T'as bien changé :o


Toute ma rage est dépensée sur mes indiens, donc j'ai plus de réserves [:sadnoir]


Message édité par masklinn le 18-06-2011 à 12:10:16

---------------
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°2083088
the real m​oins moins
Posté le 18-06-2011 à 18:22:38  profilanswer
 

masklinn a écrit :


Ah oui bordel, derrière faut faire des assignation, j'ai oublié ça, sinon tu te retrouves avec un array qui fait 10*x dont la première moitié est pleine d'undefined  [:prozac]  

Code :
  1. var html = new Array(items.length * 5);
  2. for(var i=0; i<items.length; ++i) {
  3.    var item = items[i],
  4.       index = 5*i;
  5.    html[index] = '<li><a href="';
  6.    html[index + 1] = item.url;
  7.    html[index + 2] = '">';
  8.    html[index + 3] = item.desc;
  9.    html[index + 4] = '</a></li>';
  10. }
  11. placeHolder.append(html.join(''));


Et donc au final c'est pas certain que ça aille plus vite. Faudrait aussi regarder du côté de splice(), je connais pas du tout ses caractéristiques de perfs.

wtf ,push() fait quoi alors??


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2083091
masklinn
í dag viðrar vel til loftárása
Posté le 18-06-2011 à 18:51:07  profilanswer
 

the real moins moins a écrit :

wtf ,push() fait quoi alors??


Il ajoute des éléments à la fin de l'array [:spamafote]


---------------
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°2083093
masklinn
í dag viðrar vel til loftárása
Posté le 18-06-2011 à 20:00:26  profilanswer
 

http://royal.pingdom.com/2011/06/1 [...] ons-today/
 
Chrome, ~12~20% de parts de marché (on sait pas si les stats ont pas été prises en cours de maj 11->12)
Safari 5 plus fréquent que IE6 chez Statcounter (3.84% contre 3.77) [:jar jar]
IE9 rattrape IE7 (5.89% vs 6.07%)
FF4 a déjà pris le pas sur 3.6 (16% vs 9.5%), mais la transition n'est pas terminée.


---------------
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°2083096
koskoz
They see me trollin they hatin
Posté le 18-06-2011 à 20:40:55  profilanswer
 

masklinn a écrit :

http://royal.pingdom.com/2011/06/1 [...] ons-today/
 
Chrome, ~12~20% de parts de marché (on sait pas si les stats ont pas été prises en cours de maj 11->12)
Safari 5 plus fréquent que IE6 chez Statcounter (3.84% contre 3.77) [:jar jar]
IE9 rattrape IE7 (5.89% vs 6.07%)
FF4 a déjà pris le pas sur 3.6 (16% vs 9.5%), mais la transition n'est pas terminée.


 
[:shay]
 

Spoiler :

Dire qu'on m'a demandé de faire un site compatible FF2 [:sadnoir]


---------------
Twitter
n°2083100
masklinn
í dag viðrar vel til loftárása
Posté le 18-06-2011 à 21:11:11  profilanswer
 

koskoz a écrit :


Dire qu'on m'a demandé de faire un site compatible FF2 [:sadnoir]


 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]
 [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]  [:henri gaud-macias:3]


Message édité par masklinn le 18-06-2011 à 21:11:36

---------------
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°2083120
the real m​oins moins
Posté le 19-06-2011 à 01:55:41  profilanswer
 

masklinn a écrit :


Il ajoute des éléments à la fin de l'array [:spamafote]


En tant que javateux je suis surpris (et je vais devoir corriger ça lundi alors:o)


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°2083140
masklinn
í dag viðrar vel til loftárása
Posté le 19-06-2011 à 10:17:21  profilanswer
 

the real moins moins a écrit :


En tant que javateux je suis surpris (et je vais devoir corriger ça lundi alors:o)


Tu pensais qu'il faisait quoi? C'est comme si tu utilisais ton array en tant que LIFO directement en fait, le "top" de la pile est la queue de l'array.


---------------
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°2083146
Shinuza
This is unexecpected
Posté le 19-06-2011 à 11:57:58  profilanswer
 

koskoz a écrit :


 
[:shay]
 

Spoiler :

Dire qu'on m'a demandé de faire un site compatible FF2 [:sadnoir]


T'as le droit de parler tu sais, c'est fait pour ça le truc rose dans ta bouche. Et avec le truc gris dans ton crâne ça te servira à analyser le marcher et à démontrer qu'il n'y aura pas de RIO.  :jap:


---------------
Mains power can kill, and it will hurt the entire time you’re dying from it.
mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  1117  1118  1119  ..  1454  1455  1456  1457  1458  1459

Aller à :
Ajouter une réponse
 

Sujets relatifs
blabla 3blabla 2
PUTAIN HARKO TU AS FERM2 BLABLA ![Beaucoup de blabla pour rien : post à effacer] Compiler .bat
variable1="blabla + variable2 +blala : c'est possible ??[PHP & regex] "blabla blabla file.ext?point=444 blabla" Recupérer 444
mail("celine@hotmail.com"," sujet","blabla"); pose une err ! Help[MySQL] WHERE 'blabla' compris dans le champ truc
[blabla@olympe] Le topic du modo, dieu de la fibre et du monde[PHP / BlaBla - limite]
Plus de sujets relatifs à : blabla@web


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