Comment: Decimals (Score 1) 217
Comment: Re:It will be an uphill struggle (Score 2) 53
Comment: Re:It will be an uphill struggle (Score 2) 53
Comment: Re:Bloat (Score 4, Insightful) 466
If everything has no dependencies, then all of the dependencies must be included in the install. I wounder how many copies of each low level program would be on a given machine.
And, especially, good luck installing a security update on *all* your copies of a core library.
Comment: Re:Words Handed Down (Score 1) 323
Comment: Re:The brightest minds of a generation (Score 5, Insightful) 39
Comment: Re:Forcing strong passwords in the first place. (Score 1) 211
Comment: Re:Forcing strong passwords in the first place. (Score 1) 211
Comment: Re:Sounds like a cool idea. (Score 1) 49
Comment: Next generation parents (Score 5, Funny) 292
Comment: Re:Fiat Currency (Score 1) 692
What what exactly is the value of the US dollar?
Exactly one cheeseburger at McDonald's.
Comment: Re:Excel error? (Score 1) 476
Comment: Re:mixed feelings (Score 1) 300
* multiple ways of doing things. should i use \begin{center} or {\centering text text tex}. probably they both work fine, but each of them breaks something else in some obscure case.
Use \centering inside an environment that already handles its own spacing, such as a figure. Rule of thumb: if you need to put curly braces manually around \centering, you're probably using the wrong one.
why are some things \command{text text text}, some {\command text text text} and some \begin{command}
Most {\command text} (such as \bf, \tt, \it) are deprecated. Forget about them and you'll be happier. \begin{command}...\end{command} is mainly meant for things that can contain newlines, but I agree with you that there is some inconsistency here.
* the interactive mode when it hits an error. i am sure there is nothing productive i can do in that shell. why is it so hard to get out of. why is -halt-on-error not default?
Press x, enter. Took me a lot of time to figure out, too.
* can the output be cleaned up? when i run pdflatex i get several screen-fulls of messages. really it should be showing me errors and optionally warnings. * why do i have to run pdflatex twice? why can't it figure out if a reference has changed? latexmk (or a good makefile) helps, but it took me years to find it.
+1 --- I'd love it to be a bit more third-millennium, too.