Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Education > Math Undergrad > Re: Programming...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 37 of 175 Topic 5182 of 5610
Post > Topic >>

Re: Programming skills required by mathematicians?

by Marshall <marshall.spight@[EMAIL PROTECTED] > Jun 26, 2008 at 11:01 PM

On Jun 26, 8:03 pm, rAgAv <ragav.pa...@[EMAIL PROTECTED]
> wrote:
> > You did, actually: the existence of other languages that are better
> > at those things.
>
> What might those be?
>
> List them...

As a prolog, let me just quote Stroustrup himself:

"Language comparisons are rarely meaningful and even less often fair.
A good comparison of major programming languages requires more
effort than most people are willing to spend, experience in a wide
range
of application areas, a rigid maintenance of a detached and impartial
point of view, and a sense of fairness."

Anything I can manage to cram into a few paragraphs of usenet post
will be woefully incomplete. That said, while I admire Stroustrup
and also Stepanov, and believe their work should be studied, I
consider C++ to have some serious shortcomings. There are
few projects I would use it on, and none of them are applications.

The big, obvious gripe with C++ is that it is so closely wedded
to its C heritage. This certainly enabled market acceptance,
but it also puts a real damper on innovation. C is a low
level programming language, even by the standards of its day.
By maintaining compatibility, C++ is necessarily also riddled
with low-level features. These low level features make C++ a
good choice if one is writing low level code; device drivers
for example. These same features make C++ a bad choice for
pretty much anything that isn't low level.

Grandparent poster mentioned the combination of performance
and the ability to manage complexity. Rather than try to compare
specifically against some weighted average of attributes, I'll instead
look at those things individually. For performance, C++ is certainly
good, but if performance is your top criterion, then you certainly
cannot pick C++, but must rather use some language designed
for high-performance and having the best tuned high performance
numeric libraries. I am speaking of course of Fortran. Some might
be appalled that I say so, but regardless, there are problem
domains in which C++ cannot compete with Fortran on
performance. Note that I did not say that Fortran is a
good language.

As far as getting performance on the cheap, the easiest way to
go is with the language that is, overall, almost at the level of C++,
and which will sometimes meet and exceed it, and which also has
an extraordinarily broad set of available libraries, and is, today,
more commercially popular that C++, and that is Java. The less
educated are now screaming the "Java is slow" mantra that dates
from 1997, when it was true. A lot of people reject the idea
out of hand, but the fact is the static compilation model that is
the usual one with C++ is unable to take advantage of a class of
optimizations that a HotSpot style VM can, and the reverse is not
true.

For ability to manage complexity, I'd give C++ a poor grade; almost
any language one can name does at least as good; even Java's
impoverished module system is better. People who only know
a few languages in the Algol family and some OOPLs tend to think
that OOP is a great tool for managing complexity. It's better
than nothing, but it's a poor substitute for a decent module
system, especially a parameterizable module system. It is
astoni****ng just how many design patterns (esp. "Dependency
Injection" and its many variations) are simply efforts to make up
for the lack of a decent module system. Also see Peter Norvig's
analysis on the how many design patterns are simpler or even
go away completely in functional languages.

For a good industrial-grade PL with actual modern language
design behind it, I'd point anyone at OCaml.

For the OP's question, namely for someone intending a math
education, it strikes me that there are only two good answers,
SML and Haskell, and I'm astonished that no one has mentioned
either one yet. (Although whoever it was who mentioned CASs
was obviously right on the mark, and these are more directly
relevant than the two I just named. But CASs aren't what we
usually think of as PLs.)

Anyone interested in math ought to have a good grounding in
logic, and anyone interested in logic ought to be at least a bit
familiar with Prolog, or possibly instead some more modern
logic language. (Mercury?)

Anyone interested in set theory ought to be at least a bit
familiar with SQL. It has the reputation of being only for
boring accounting-type jobs, but that reputation is entirely
bogus; SQL has some amazingly advanced features not
found anywhere else, and is enough of a completely different
take on computing that it can be quite broadening. Oh,
and more job postings mention SQL than any other
language, the last several times I've checked; more
than C++, more than Java.

And anyone interested in distributed computing ought to
read about Erlang, at least.

In general, a lot of the languages comparisons or language
wars I see are between some absolutely minuscule set of
languages, none of which have anything in them the least
bit interesting from a PL research point of view. The
conversation is usually limited to discussing C++, Java,
Ruby, Python, and occasionally Perl. These languages
represent just about the tiniest wedge imaginable of the
design space. They are all fundamentally Algol descendants,
all imperative, and have little or nothing in the way of a
formal semantics, virtually nothing in the way of language
features that were invented more recently than 1968.


Marshall
 




 175 Posts in Topic:
Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 01:40:27 
Re: Programming skills required by mathematicians?
"Nasser Abbasi"  2008-06-25 02:40:34 
Re: Programming skills required by mathematicians?
"David N. Williams&q  2008-06-25 10:18:44 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-25 13:20:06 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-25 12:40:45 
Re: Programming skills required by mathematicians?
translogi <wilemien@[E  2008-06-25 05:05:32 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-25 15:23:41 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 08:34:42 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 16:11:45 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-30 09:30:56 
Re: Programming skills required by mathematicians?
"Peter Webb" &l  2008-06-26 01:45:26 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-25 12:09:40 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-26 11:49:51 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:14:18 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-26 11:51:57 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:16:59 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 10:46:51 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-25 22:06:56 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 11:12:08 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 22:04:08 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-26 22:05:59 
Re: Programming skills required by mathematicians?
toni.lassila@[EMAIL PROTE  2008-06-26 03:57:20 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 14:59:09 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 16:25:36 
Re: Programming skills required by mathematicians?
"evw@[EMAIL PROTECTE  2008-06-26 04:45:02 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 15:04:58 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:15:43 
Re: Programming skills required by mathematicians?
"evw@[EMAIL PROTECTE  2008-06-26 08:39:07 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 16:28:41 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 23:35:04 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-26 20:03:32 
Re: Programming skills required by mathematicians?
rjf <fateman@[EMAIL PR  2008-06-26 21:27:20 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 00:55:33 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 22:59:16 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 10:46:00 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 11:55:01 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 23:01:35 
Re: Programming skills required by mathematicians?
Aatu Koskensilta <aatu  2008-06-28 18:59:17 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-27 09:46:01 
Re: Programming skills required by mathematicians?
Aatu Koskensilta <aatu  2008-06-28 18:24:07 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-28 03:38:06 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-28 12:01:11 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 08:41:54 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 09:08:27 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 14:34:21 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 21:16:42 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-30 09:39:34 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-01 10:40:34 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 21:12:28 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-06-29 19:25:22 
Re: Programming skills required by mathematicians?
rjf <fateman@[EMAIL PR  2008-06-29 19:54:22 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-30 00:14:00 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-06-30 05:14:33 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-01 08:55:11 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-01 12:16:01 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-02 10:35:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-01 10:46:20 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-02 10:49:24 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-07-04 12:50:25 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-04 11:55:41 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-02 16:50:01 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:47:04 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-07 12:03:38 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-01 13:27:07 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-02 18:01:52 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:54:12 
Re: Programming skills required by mathematicians?
Aleksej Saushev <asau@  2008-08-03 15:08:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-02 08:35:38 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:07:30 
Re: Programming skills required by mathematicians?
"zzbunker@[EMAIL PRO  2008-07-03 04:30:34 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-03 08:26:31 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-03 09:33:37 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-03 11:25:12 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 12:24:16 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 12:34:24 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 13:16:21 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 13:50:04 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 14:08:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 17:18:10 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 17:58:26 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 19:03:33 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 19:46:53 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 20:02:52 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 20:28:18 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-07 10:06:24 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 20:38:23 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-05 15:27:04 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-10 09:27:43 
Re: Programming skills required by mathematicians?
Nick <Nick.Spam@[EMAIL  2008-07-10 16:41:51 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-11 09:30:32 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-11 18:50:21 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-12 11:24:16 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 20:37:52 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-13 04:53:33 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 09:11:19 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-14 04:21:30 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-14 10:20:05 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 16:45:02 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 10:08:15 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-14 10:13:52 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-11 16:54:59 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-16 16:30:32 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-11 17:04:27 
Re: Programming skills required by mathematicians?
Nick <Nick.Spam@[EMAIL  2008-07-12 11:18:26 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 10:56:02 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-16 16:53:45 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-12 08:56:47 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 19:54:14 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 10:14:10 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-12 09:23:01 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-12 17:17:55 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 21:15:01 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 17:31:39 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 17:45:05 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 18:10:44 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 18:24:05 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 09:09:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-13 08:17:13 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 13:18:57 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-13 08:29:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-13 12:04:31 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-14 02:31:46 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-14 09:54:26 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 10:17:59 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 14:33:52 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:35:27 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-18 07:59:03 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:41:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:41:38 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:55:35 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:03:57 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-14 11:20:24 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-15 09:31:24 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:46:16 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:50:37 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-17 09:02:27 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-17 10:01:08 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-17 12:31:55 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-18 09:34:15 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 12:23:41 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:30:31 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 13:24:52 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 16:41:43 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 18:03:47 
Re: Programming skills required by mathematicians?
"zzbunker@[EMAIL PRO  2008-07-14 18:41:10 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-15 01:08:55 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 17:54:40 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-15 01:20:04 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-15 03:41:15 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-07-15 15:20:53 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-15 09:08:07 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-15 09:16:36 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:16:58 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-15 10:48:49 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:26:32 
Re: Programming skills required by mathematicians?
herbzet <herbzet@[EMAI  2008-07-16 01:33:43 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:53:25 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-16 09:02:38 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-17 09:33:50 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-16 09:19:54 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-17 09:41:59 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-17 09:51:01 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-17 09:56:07 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 06:09:43 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 06:14:23 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-18 10:01:51 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 07:25:55 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-18 10:05:35 
Re: Programming skills required by mathematicians?
Herman Jurjus <hjurjus  2008-07-18 19:37:25 
Re: Programming skills required by mathematicians?
Antoine Hersen <antoin  2008-07-18 10:31:26 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-19 09:46:26 
Re: Programming skills required by mathematicians?
umumenu@[EMAIL PROTECTED]  2008-07-19 14:09:51 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-20 07:45:07 
Re: Programming skills required by mathematicians?
umumenu@[EMAIL PROTECTED]  2008-07-21 04:26:52 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-21 08:21:07 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Dec 5 11:02:52 CST 2008.