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

 

 

Considère-t-on Riot comme définitivement perdu ?




Attention si vous cliquez sur "voir les résultats" vous ne pourrez plus voter
Les invités peuvent voter

 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  1967  1968  1969  ..  10241  10242  10243  10244  10245  10246
Auteur Sujet :

blabla@osa, FREE TEH TRUE RIOT §§§

n°600063
Klaimant
?
Posté le 04-12-2004 à 13:42:26  profilanswer
 

Reprise du message précédent :

tomate a écrit :

bah oui !!!!
 
putain on est "registrar", c'est normal qu'on soit sur les whois


 
sur ton mail du boulot alors ??


---------------
Fais le ou ne le fais pas, mais il n'y a pas d'essai !!!
mood
Publicité
Posté le 04-12-2004 à 13:42:26  profilanswer
 

n°600065
Tomate
Posté le 04-12-2004 à 13:43:46  profilanswer
 

Klaimant a écrit :

sur ton mail du boulot alors ??


bah oui si tu suivais :p
une adresse mail de contact est mise sur tous les whois
 
mais une fois qu'ils ont 1 adresse, il spamment *@mon_domain


Message édité par Tomate le 04-12-2004 à 13:44:17

---------------
:: Light is Right ::
n°600146
neriki
oenologue
Posté le 04-12-2004 à 17:14:26  profilanswer
 

JerryCrazy a écrit :

t'es quand même vachement grilled [:dawa]


 
 

black_lord a écrit :

jerry_crazy : tu peux reposter l'URL de l'image SCO plz ?


 
 :o

n°600147
Tomate
Posté le 04-12-2004 à 17:15:19  profilanswer
 

bon vais me renseigner sur les vidéoprojs à boulanger/darty moi [:huit]


---------------
:: Light is Right ::
n°600149
black_lord
Truth speaks from peacefulness
Posté le 04-12-2004 à 17:19:14  profilanswer
 


 
:jap:


---------------
uptime is for lousy system administrators what Viagra is for impotent people - mes unixeries - github me
n°600153
perchut2
Hell, it's about time...
Posté le 04-12-2004 à 17:28:46  profilanswer
 

tomate a écrit :

bon vais me renseigner sur les vidéoprojs à boulanger/darty moi [:huit]

:fou:

n°600181
mikala
Souviens toi du 5 Novembre...
Posté le 04-12-2004 à 18:45:30  profilanswer
 

dark a écrit :

Mais où va la modération [:wam]
 
::D


en guyane ?  [:ddr555]

n°600184
mikala
Souviens toi du 5 Novembre...
Posté le 04-12-2004 à 18:53:48  profilanswer
 

void_ppc a écrit :

son serveur dns était hs, donc toutes les connexions ont été reject :/


tu veux un secondaire ? :D

n°600194
vanilla
datoune's revival
Posté le 04-12-2004 à 19:22:12  profilanswer
 

Erf erf, comment je peux faire pour afficher que les lignes d'un fichier après un mot en particulier ?
 
Exemple toto.txt :
 


Le patron du PS François Hollande  
a procédé samedi à un remaniement  
de la direction du parti, après la  
victoire du oui à la Constitution  
européenne dans son parti:  

 
 
Et donc, avec le mot délimiteur "direction", afficher :
 


de la direction du parti, après la  
victoire du oui à la Constitution  
européenne dans son parti:  

 
 
:??:
 
ça doit je suppose pouvoir se faire avec les outils tels que awk/sed/cut mais c'est chaud, je trouve pas :'(


---------------
Membre du Front de Libération de Datoune | Soutenez le FLD | A Tribute To Datoune
n°600210
mirtouf
Light is right !
Posté le 04-12-2004 à 19:52:59  profilanswer
 

Les street golfers sur la 4. [:rofl]


---------------
-~- Libérez Datoune ! -~- Camarade, toi aussi rejoins le FLD pour que la flamme de la Révolution ne s'éteigne pas ! -~- A VENDRE
mood
Publicité
Posté le 04-12-2004 à 19:52:59  profilanswer
 

n°600213
mirtouf
Light is right !
Posté le 04-12-2004 à 19:57:43  profilanswer
 
n°600218
JerryCrazy
Le plus crazy des crazy
Posté le 04-12-2004 à 20:14:44  profilanswer
 

http://www.arteradio.com/sons/2004 [...] _hq_fr.mp3
si c'est pour entendre ça que ARTERadio met ces fichiers sous Creative Commons [:rofl]


Message édité par JerryCrazy le 04-12-2004 à 20:15:07

---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600219
Profil sup​primé
Posté le 04-12-2004 à 20:17:31  answer
 

vanilla a écrit :

Erf erf, comment je peux faire pour afficher que les lignes d'un fichier après un mot en particulier ?
 
Exemple toto.txt :
 


Le patron du PS François Hollande  
a procédé samedi à un remaniement  
de la direction du parti, après la  
victoire du oui à la Constitution  
européenne dans son parti:  

 
 
Et donc, avec le mot délimiteur "direction", afficher :
 


de la direction du parti, après la  
victoire du oui à la Constitution  
européenne dans son parti:  

 
 
:??:
 
ça doit je suppose pouvoir se faire avec les outils tels que awk/sed/cut mais c'est chaud, je trouve pas :'(


 
si tu veux le faire en python, tu peux faire un truc de ce style:
 

Code :
  1. def parse(lines, sep='direction'):
  2.     for num, line in enumerate(lines):
  3.         if sep in line:
  4.             return ''.join(lines[num:])
  5.     # pas de 'direction', on renvoit tout le text.
  6.     return ''.join(lines)
  7.            
  8. lines = file('toto.txt').readlines()
  9. print parse(lines)
  10. si tu veux un autre mot que 'direction', tu fais:
  11. print parse(lines, 'mot')

n°600224
neriki
oenologue
Posté le 04-12-2004 à 20:25:36  profilanswer
 


Clair, comme pour la ps2, sony montrait en avant première des animations ultra réaliste tirées des futurs jeux en disant que seule l'emotion engine  etait capable de réaliser de telle animation, quand la ps2 est effectivement sortie, on s'est rendu compte que ces animations etaient en fait des cinématiques précalculées... foutage de gueule inside :o

n°600226
pinguin007
a npe error
Posté le 04-12-2004 à 20:30:06  profilanswer
 


 
huhu ibm qui revient dans les paicai aprés les cyrix ca va etre fun :D
 


---------------
LoD 4 ever && PWC spirit|Le topak de l'iMP-450|inDATOUNEwe trust
n°600234
fl0ups
東京 - パリ - SLP
Posté le 04-12-2004 à 21:08:16  profilanswer
 

I work as a consultant for several fortune 500 companies, and I think
I can shed a little light on the climate of the open source community
at the moment. I believe that part of the reason that open source
based startups are failing left and right is not an issue of marketing
as it's commonly believed but more of an issue of the underlying
technology.
 
I know that that's a strong statement to make, but I have evidence to
back it up! At one of the major corps(5000+ employees) that I consult
for, we wanted to integrate the shareware version of Linux into our
server pool. The allure of not having to pay any restrictive licensing
fees was too great to ignore. I reccomended the installation of
several boxes running the new 2.4.9 kernel, and my hopes were high
that it would perform up to snuff with the Windows 2k boxes which
were(and still are!) doing an AMAZING job at their respective tasks of
serving HTTP requests, DNS, and fileserving.
 
I consider myself to be very technically inclined having programmed in
VB for the last 8 years doing kernel level programming. I don't
believe in C programming because contrary to popular belief, VB can go
just as low level as C and the newest VB compiler generates code
that's every bit as fast. I took it upon myself to configure the
system from scratch and even used an optimised version of gcc 3.1 to
increase the execution speed of the binaries. I integrated the 3
machines I had configured into the server pool, and I'd have to say
the results were less than impressive... We all know that linux isn't
even close to being ready for the desktop, but I had heard that it was
supposed to perform decently as a "server" based operating system. The
3 machines all went into swap immediately, and it was obvious that
they weren't going to be able to handle the load in this "enterprise"
environment. After running for less than 24 hours, 2 of them had
experienced kernel panics caused by Bind and Apache crashing! Granted,
Apache is a volunteer based project written by weekend hackers in
their spare time while Microsft's IIS has an actual professional full
fledged development team devoted to it. Not to mention the fact that
the Linux kernel itself lacks any support for any type of journaled
filesystem, memory protection, SMP support, etc, but I thought that
since Linux is based on such "old" technology that it would run with
some level of stability. After several days of this type of behaviour,
we decided to reinstall windows 2k on the boxes to make sure it wasn't
a hardware problem that was causing things to go wrong. The machines
instantly shaped up and were seamlessly reintegrated into the server
pool with just one Win2K machine doing more work than all 3 of the
Linux boxes.
 
Needless to say, I won't be reccomending Linux/FSF to anymore of my
clients. I'm dissappointed that they won't be able to leverege the
free cost of Linux to their advantage, but in this case I suppose the
old adage stands true that, "you get what you pay for." I would have
also liked to have access to the source code of the applications that
we're running on our mission critical systems; however, from the looks
of it, the Microsoft "shared source" program seems to offer all of the
same freedoms as the GPL.
 
As things stand now, I can understand using Linux in academia to
compile simple "Hello World" style programs and learn C programming,
but I'm afraid that for anything more than a hobby OS, Windows
98/NT/2K are your only choices.


---------------
Fluctuat nec mergitur
n°600236
neriki
oenologue
Posté le 04-12-2004 à 21:22:14  profilanswer
 
n°600249
JerryCrazy
Le plus crazy des crazy
Posté le 04-12-2004 à 22:12:21  profilanswer
 

http://creativecommons.org/wired/
dite moi si je reve,ou je vois bien du Beastie Boys en Creative Commons :heink:
 
edit: a ok,c'est du sampling,mais,bon,c'est defois suffisant :D


Message édité par JerryCrazy le 04-12-2004 à 22:15:30

---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600263
mirtouf
Light is right !
Posté le 04-12-2004 à 22:54:01  profilanswer
 

AHHHHHHHHHHHHHHHHHHH !!!!!!!!!!!!!
 
Evelyne Thomas qui fait de la pub !!!!
 
Au secours ! [:psywalk]
Mais où va le monde ?????????? [:sisicaivrai]


---------------
-~- Libérez Datoune ! -~- Camarade, toi aussi rejoins le FLD pour que la flamme de la Révolution ne s'éteigne pas ! -~- A VENDRE
n°600266
JerryCrazy
Le plus crazy des crazy
Posté le 04-12-2004 à 22:55:44  profilanswer
 

mirtouf a écrit :

AHHHHHHHHHHHHHHHHHHH !!!!!!!!!!!!!
 
Evelyne Thomas qui fait de la pub !!!!
 
Au secours ! [:psywalk]
Mais où va le monde ?????????? [:sisicaivrai]

ou ça ? [:totoz] (depuis qu'elle est passée a TF1,je l'aime plus dutout...  :sweat: )


---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600267
mirtouf
Light is right !
Posté le 04-12-2004 à 22:59:01  profilanswer
 

J'ai vu ça pendant l'entracte publicitaire coca de TF1....


Message édité par mirtouf le 04-12-2004 à 22:59:14

---------------
-~- Libérez Datoune ! -~- Camarade, toi aussi rejoins le FLD pour que la flamme de la Révolution ne s'éteigne pas ! -~- A VENDRE
n°600269
JerryCrazy
Le plus crazy des crazy
Posté le 04-12-2004 à 23:01:45  profilanswer
 

tain,je trouve pas clair les musiques sous Creative Commons,on va sur le site d'un artiste sur lequel on dit qu'il est sous CC,et sur leur site,tu trouve rien... :/


---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600273
JerryCrazy
Le plus crazy des crazy
Posté le 04-12-2004 à 23:07:36  profilanswer
 

http://cultureetloisirs.france2.fr [...] 296-fr.php
 

Citation :

Le magazine américain, qui milite pour un assouplissement du droit d'auteur, offre 16 titres à pirater (quasi) librement


 
y a abus de langage là  :heink:
je comprend pas pourquoi utiliser le terme pirater puisque c'est légal [:spamafote]
 
confondre "echanger/copier" avec "pirater"...  :sweat:


Message édité par JerryCrazy le 04-12-2004 à 23:09:12

---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600275
black_lord
Truth speaks from peacefulness
Posté le 04-12-2004 à 23:08:14  profilanswer
 


 
[:psywalk]


---------------
uptime is for lousy system administrators what Viagra is for impotent people - mes unixeries - github me
n°600282
Sly Angel
Posté le 04-12-2004 à 23:42:32  profilanswer
 


 
T'aurais tort, c'est très cohérent au contraire.
 
IBM exploite avec brio l'archi Power PC depuis un moment et ça enterre largement Intel & AMD en puissance pure.
 
Maintenant on verra ce que ça donne appliqué à une console, mais ça déchire déjà tout dans le domaine des mainframes cette architecture et depuis longtemps ;)


Message édité par Sly Angel le 04-12-2004 à 23:45:42
n°600298
void_ppc
Posté le 05-12-2004 à 03:04:09  profilanswer
 

ca treeemble  :hello:

n°600299
pinguin007
a npe error
Posté le 05-12-2004 à 03:08:52  profilanswer
 

void_ppc a écrit :

ca treeemble  :hello:


 
t'as pété :??: [:dawa]


---------------
LoD 4 ever && PWC spirit|Le topak de l'iMP-450|inDATOUNEwe trust
n°600300
void_ppc
Posté le 05-12-2004 à 03:21:46  profilanswer
 


 
oui  :( tout le monde le sais :
 
http://forum.hardware.fr/hardwaref [...] 7501-1.htm

n°600301
THRAK
- THR4K -
Posté le 05-12-2004 à 03:43:55  profilanswer
 

void_ppc a écrit :

ca treeemble  :hello:


 
 :hello:  Tiens un confrère  :hello:


---------------
THRAK (def.) : 1) A sudden and precise impact moving from intention, direction and commitment, in service of an aim. 2) 117 guitars almost striking the same chord simultaneously.
n°600302
pinguin007
a npe error
Posté le 05-12-2004 à 04:18:12  profilanswer
 

han, y a pas de ca à paris :o


---------------
LoD 4 ever && PWC spirit|Le topak de l'iMP-450|inDATOUNEwe trust
n°600303
THRAK
- THR4K -
Posté le 05-12-2004 à 04:33:47  profilanswer
 

On a pas de bol de ce côté, c'est clair.
Remarque je me dis que j'ai de la chance, j'aurai pu habiter à Hokaido :D


---------------
THRAK (def.) : 1) A sudden and precise impact moving from intention, direction and commitment, in service of an aim. 2) 117 guitars almost striking the same chord simultaneously.
n°600306
pinguin007
a npe error
Posté le 05-12-2004 à 05:27:55  profilanswer
 

bon allez dernz :o
 


---------------
LoD 4 ever && PWC spirit|Le topak de l'iMP-450|inDATOUNEwe trust
n°600307
python
Posté le 05-12-2004 à 05:31:15  profilanswer
 

fl0ups a écrit :

Not to mention the fact that
the Linux kernel itself lacks any support for any type of journaled
filesystem, memory protection, SMP support, etc, but I thought that
since Linux is based on such "old" technology that it would run with
some level of stability. After several days of this type of behaviour,
we decided to reinstall windows 2k on the boxes to make sure it wasn't
a hardware problem that was causing things to go wrong. The machines
instantly shaped up and were seamlessly reintegrated into the server
pool with just one Win2K machine doing more work than all 3 of the
Linux boxes.
 
 


 
C'est un troll ce n'est pas possible! [:mlc]

n°600308
THRAK
- THR4K -
Posté le 05-12-2004 à 05:41:57  profilanswer
 

---> C'est un troll ce n'est pas possible!
 
Avec de l'argent tout devient possible :o
 
Maintenant dans les faits c'est différent ; de toute façon toute personne intègre et objective connaissant un tant soit peu GNU/Linux ne se risquerait pas à faire des commentaires aussi trollesques...


---------------
THRAK (def.) : 1) A sudden and precise impact moving from intention, direction and commitment, in service of an aim. 2) 117 guitars almost striking the same chord simultaneously.
n°600316
mirtouf
Light is right !
Posté le 05-12-2004 à 10:13:46  profilanswer
 
n°600318
void_ppc
Posté le 05-12-2004 à 10:50:22  profilanswer
 

THRAK a écrit :

:hello:  Tiens un confrère  :hello:


 
:D

n°600326
black_lord
Truth speaks from peacefulness
Posté le 05-12-2004 à 11:12:54  profilanswer
 

plop [:kukron]


---------------
uptime is for lousy system administrators what Viagra is for impotent people - mes unixeries - github me
n°600333
vanilla
datoune's revival
Posté le 05-12-2004 à 11:24:19  profilanswer
 

Ekxon a écrit :

si tu veux le faire en python, tu peux faire un truc de ce style:
 

Code :
  1. def parse(lines, sep='direction'):
  2.     for num, line in enumerate(lines):
  3.         if sep in line:
  4.             return ''.join(lines[num:])
  5.     # pas de 'direction', on renvoit tout le text.
  6.     return ''.join(lines)
  7.            
  8. lines = file('toto.txt').readlines()
  9. print parse(lines)
  10. si tu veux un autre mot que 'direction', tu fais:
  11. print parse(lines, 'mot')




 
Merci ;)


---------------
Membre du Front de Libération de Datoune | Soutenez le FLD | A Tribute To Datoune
n°600338
JerryCrazy
Le plus crazy des crazy
Posté le 05-12-2004 à 11:52:24  profilanswer
 

http://www.vtr-hardware.com/news/n5380.html
 
jtrouve quand même l'interet du MP3 Surround très limité moi... sachant qu'il faut quand même une source 5.1 pour encoder du 5.1,y a pour l'instant très peu d'interet... surtout que c'est payant...


---------------
My Digital Life - Ferrovia - FerroviaClub - Jeux Linux
n°600356
Klaimant
?
Posté le 05-12-2004 à 12:42:45  profilanswer
 

Bonjour [:zytra]
 
9 box c'est vraiment pourrite :O


---------------
Fais le ou ne le fais pas, mais il n'y a pas d'essai !!!
n°600359
pinguin007
a npe error
Posté le 05-12-2004 à 12:57:32  profilanswer
 

JerryCrazy a écrit :

http://www.vtr-hardware.com/news/n5380.html
 
jtrouve quand même l'interet du MP3 Surround très limité moi... sachant qu'il faut quand même une source 5.1 pour encoder du 5.1,y a pour l'instant très peu d'interet... surtout que c'est payant...


 
bah ca va vite se faire hacker comme ca les "gens" pouront l'utiliser dans les divx nan ?


---------------
LoD 4 ever && PWC spirit|Le topak de l'iMP-450|inDATOUNEwe trust
mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  1967  1968  1969  ..  10241  10242  10243  10244  10245  10246

Aller à :
Ajouter une réponse
 

Sujets relatifs
Radio OSA[blabla] les vendeurs de la fnac
Et vous, sur OSA vous contribuez comment à ce que vous revendiquez ...[Ravioly] Nombre d'intervenants sur OSA
[ satisfaction ] le cote de OSAOSA C NUL ON FERME TOUS LES TOPICS INTELLIGENT
TROLL : OSA le forum des super doués ..venez les meilleurs sont la !!!BLABLA @ OSA
BLABLA @ OSA 
Plus de sujets relatifs à : blabla@osa, FREE TEH TRUE RIOT §§§


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