Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:The fuzzy line between hobby and job (Score 1) 216

Your entire elaborate argument is based on a false premise.

As I said, the road damage is exponential with the weight. It is proportional to the axle weight to the fourth power.

Fuel economy is roughly linear with weight, or even less than linear (big rigs get much better MPG per ton than smaller vehicles). Therefore, fuel taxes don't begin to recover the extra costs of heavier vehicles.

Who has made the stupidest argument you've ever heard now? You might look in the mirror.

Comment Re:Early fragmentation (Score 1) 492

Did you ever try to run C on the Apple ][? UCSD Pascal was available, and worked well. C required an add on z-80 chip, and it was still a subset implementation. (Check out "Lifeboat C", though I think that was a later, and more capable version.)

So the situation is more complicated than you are assuming. I didn't get a full C compiler until AFTER I had gotten an 8086...which means probably that the IBM PC was already around.

Comment Nice of Corporate Media to... (Score 1) 351

... provide an excuse for their buddies in the chemical, pesticide, and GMO industries that allows them to ridicule the American consumer as a bunch of no-nothings. "See... these rubes^Wpeople don't even know what they're talking about so why should we have to label food that contains man-modified genetic material or household chemicals that contain chemicals that nobody's been able to prove with 100% certainty cause cancer?"

Perhaps the paper was trying to indict the educational system but, more likely, that's not how this poll's result are going to be used.

Comment Re:Advantages are gone. (Score 1) 492

Sorry, but the length defined strings are optional, though common in Pascal. UCSD (and other early) Pascals usually buit that into the language, but I believe that now it's a part of a standard library, and alternates can be defined (though probably not with the same name). I'm not sure why you consider Pascal data structures more "well defined" than C structs.

P.S.: Strings in C can also be handled with a length byte. The zero terminated strings are purely a library convention, and can be overridden.

FWIW fpc Pascal has a string type in it's library that uses a length value longer than a byte.

Comment Re:a great first language to learn (Score 1) 492

FWIW, there's nothing intrinsically wrong with Pascal...or less than with C or C++. Java is worse, hobbled by 16-bit unicode, a horrible decision, which was justifiable at the time the decision was made. (Unicode should be either utf-8 or utf-32 [UCS-4]. I generally prefer utf-8, but that requires more complex library support.)

OTOH, the only real advantage of Pascal is fast compile times, and optimal execution times (which can easily be matched in C).

So, yes, its underrated, but there's probably no good reason to change to it.

Comment Re:Discussion is outdated (Score 2) 492

From my point of view, the problem is lack of documentation. I *think* that fpc Pascal can not properly handle utf8 strings, and determine the general character class of individual characters (something that Java struggles with), but the documentation is so bad that I'm not sure. And I didn't bother to test because I couldn't find any good samples to start from. Lazarus has a lot of good press, so i can accept that it is a powerful GUI development tool, but that's not what I'm doing.

FWIW, I've got a long series of desires for my programming language, and no language that I'm aware of satisfies all of them. But if its a lot different from languages that I already know, then I'm less willing to invest time learning. Pascal should have a clear bonus here, as I used to program in Object Pascall on the Mac II, but the documentation is so bad that I've tried radically different languages (e.g., Racket Scheme) and passed over fpc. (Mind you, a few years ago it was missing some needed features, but now I think that it has all the features I need, probably, but I can't be sure.)

Comment Re:The fuzzy line between hobby and job (Score 2) 216

Your hypotheses that road damage is caused solely by the pressure on the top few millimeters of the road is highly questionable. The Prius is not going to be pounding down through the structure of the concrete nearly as much as your super-duty pickup hauling a huge boat.

I do agree that big rigs should be paying drastically more in fees than they do. However, industry lobbyists will always trump common sense.

Comment Re:Insurance (Score 4, Informative) 216

That falls into statistically normal usage. Being a commercial driver absolutely does not. Statistically, a commercial driver drives way more than a noncommercial driver, and they're much more likely to be sued, and for more money. It's absurd to argue that they should be able to drive on insurance rates calculated for statistical norms of noncommercial drivers. If you allow that sort of ignoring of statistics then you might as well get rid of all statistical tables period and charge every last person the same rate for all types of insurance.

Slashdot Top Deals

Software production is assumed to be a line function, but it is run like a staff function. -- Paul Licker

Working...