less than zero - Topic Profile
  Home FAQ Contact Sign in
 
Advanced search
POPULAR GROUPS

more...

Most active groups for topic
perl.cpan.testers 3363
alt.philosophy 568
comp.lang.fortran 151
comp.lang.forth 142
uk.transport 142
alt.seduction.fast 96
soc.culture.hongkong 78
alt.nuke.the.usa 74
alt.magick 55
sci.bio.evolution 43
Last week most active authors
No posts for a week
Last active threads
"Superstripper" "Britney Ireland" from Stripperweb is REBECCA VIGLIOTTI from Higley, Arizona
Started Ray Gordon, creator of the pivot · Date: Aug 23, 2008 05:19 · 8 post(s)
Taiwan's higher education, what a mess!!!
Started abianchen · Date: Jul 20, 2008 03:17 · 45 post(s)
FRONTLINE: Genocide of Darfur
Started Robert Cohen · Date: Jun 15, 2008 04:34 · 28 post(s)
20 mph limit for urban streets to cut road deaths.
Started Doug · Date: May 15, 2008 23:25 · 61 post(s)
variable length of integer
Started rudra · Date: Apr 26, 2008 11:03 · 18 post(s)
Fortran templates
Started relaxmike · Date: Apr 15, 2008 07:16 · 61 post(s)
oyster overdraft?
Date: Mar 11, 2008 04:50 · 9 post(s)
Wind turbines on central reservation?
Started Doug · Date: Mar 8, 2008 00:28 · 81 post(s)
Is it possible to invoke a Unix command within Fortran 90 source code?
Started hermitian · Date: Feb 7, 2008 03:02 · 30 post(s)
Global Warming is very Correct.
Started Sanny · Date: Jan 15, 2008 08:47 · 48 post(s)
Last week hot threads
No posts for a week
Latest posts
Re: "Superstripper" "Britney Ireland" from Stripperweb is REBECCA VIGLIOTTI from Higley, Arizona
Group: alt.seduction.fast · Group Profile · Search for less than zero in alt.seduction.fast
Author: JJTj
Date: Aug 23, 2008 15:49

Parker, if you spent 1/100th the time going outside instead of surfing the net for such complete bullshit that has less then zero to do with you, MAYBE..just maybe, you might talk to a real human, maybe even get laid, passing your STD to another..maybe another shemale? Who knows. But no, you just live and jerk off to the net.. ..oh well, at ...
Show full article (2.82Kb)
Re: Taiwan's higher education, what a mess!!!
Group: soc.culture.hongkong · Group Profile · Search for less than zero in soc.culture.hongkong
Author: abianchen
Date: Jul 20, 2008 15:04

... college eventually made something of themselves, but that doesn't mean that everyone who didn't make it to college will eventually be successful in something. Look at ITLee - a big fat zero in every way, trolling the net to get attention. LT Lee and abum_chump are less than zeros.
Show full article (0.55Kb)
Re: Taiwan's higher education, what a mess!!!
Group: soc.culture.hongkong · Group Profile · Search for less than zero in soc.culture.hongkong
Author: Bryson
Date: Jul 20, 2008 13:55

... that everyone who didn't make it to college will eventually be successful in something. Look at ITLee - a big fat zero in every way, trolling the net to get attention. LT Lee and abum_chump are less than zeros. Reading a few of their posts would immediately tell anyone that - they have nothing to offer. They are only garbage of our society.
Show full article (0.60Kb)
Re: Taiwan's higher education, what a mess!!!
Group: soc.culture.hongkong · Group Profile · Search for less than zero in soc.culture.hongkong
Author: rst0wxyz
Date: Jul 20, 2008 13:24

On Jul 20, 8:24 am, enterprise <Enterprise2...@gmail.com> wrote: Very few who couldn't make it to college eventually made something of themselves, but that doesn't mean that everyone who didn't make it to college will eventually be successful in something. Look at ITLee - a big fat zero in every way, trolling the net to get attention. LT Lee and abum_chump are less than zeros.
Show full article (0.39Kb)
Re: FRONTLINE: Genocide of Darfur
Group: alt.philosophy · Group Profile · Search for less than zero in alt.philosophy
Author: Day Brown
Date: Jun 30, 2008 14:12

... babies, but nobody does anything to stabilize the populations. This, in turn leads to over exploitation of the resource bases and the idea that it is a less than zero sum game in which the only thing to do is to butcher enuf people to make more available to the murderers. ---- Posted via Pronews.com - ...
Show full article (2.68Kb)
Re: FRONTLINE: Genocide of Darfur
Group: alt.philosophy · Group Profile · Search for less than zero in alt.philosophy
Author: Robert Cohen
Date: Jun 30, 2008 08:18

...starving babies, but nobody does anything to stabilize the populations. This, in turn leads to over exploitation of the resource bases and the idea that it is a less than zero sum game in which the only thing to do is to butcher enuf people to make more available to the murderers.        ---- Posted via Pronews....
Show full article (2.44Kb)
Re: FRONTLINE: Genocide of Darfur
Group: alt.philosophy · Group Profile · Search for less than zero in alt.philosophy
Author: Day Brown
Date: Jun 28, 2008 16:39

...starving babies, but nobody does anything to stabilize the populations. This, in turn leads to over exploitation of the resource bases and the idea that it is a less than zero sum game in which the only thing to do is to butcher enuf people to make more available to the murderers. ---- Posted via Pronews.com - Premium ...
Show full article (1.91Kb)
Re: 20 mph limit for urban streets to cut road deaths.
Group: uk.transport · Group Profile · Search for less than zero in uk.transport
Author: John Wright
Date: May 17, 2008 14:37

... on their behalf, Doug Bollen? I doubt that very much. If they allowed someone with no claimed identity to speak for them their credibility would fall to less than zero. -- John Wright "What would happen if you eliminated the autism genes from the gene pool? You would have a bunch of people standing around in a cave, ...
Show full article (0.66Kb)
Re: variable length of integer
Group: comp.lang.fortran · Group Profile · Search for less than zero in comp.lang.fortran
Author: jamesgiles
Date: Apr 29, 2008 13:59

...(i) integer :: i, LenOfInt integer :: val LenOfInt = 0 if (i<=0) LenOfInt=1 ! when I equals zero, the loop below won't go ! even once. Yet the result must have room for ! at least one character. ! when I is less than zero, the following loop ! will go at least once, the the string length ! will always be 2 or more. val = i do ...
Show full article (4.58Kb)
Re: Fortran templates
Group: comp.lang.fortran · Group Profile · Search for less than zero in comp.lang.fortran
Author: Charles Coldwell
Date: Apr 23, 2008 03:06

...) :: n ! the length of the implied array ! The compare function must return an integer that is ! greater than zero if element(i) element(j) ! equal to zero if element(i) = element(j) ! less than zero if element(i) < element(j) interface integer function compare(i,j) integer, intent(in) :: i, j end function compare end interface ! ...
Show full article (3.78Kb)