Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Regulation can be good. (Score 1) 339

They are not mutually exclusive. Regulation can in fact spurn innovation by forcing people to rethink how they have always done things and trying to invent new technologies to replace it. Regulation can in fact force out old technology which is only in place due to inertia and open a niche for real innovation. Example, smog regulations can spur research into electric cars or better mass transit, or labor regulations can spur interest in more efficient industrial processes.

I predict I will be moderated 'troll' for this post as it is not politically correct.

Comment Re:"A hangar in Mojave" (Score 3, Informative) 38

That's actually what it's like at "Mojave Spaceport". Hangers of small aviation practicioners and their junk. Gary Hudson, Burt Rutan, etc. Old aircraft and parts strewn about. Left-over facilities from Rotary Rocket used by flight schools. A medium-sized facility for Orbital. Some big facilities for BAE, etc. An aircraft graveyard next door.

Comment Re:give this one a pass (Score 1) 153

Well....sort of. The CMB is modified by galaxies that are too faint to see, though I don't know by how much. It's filtered by intervening dust clouds moving WRT both us and the "origin of the signals". Etc. I normally assume that this is taken account of as best we can, but it's not unmodified signal. If you look at the raw (uncorrected) observations, I don't know how much noise is present, but clearly that are signals too weak to be recognized even though detected.

OTOH, I am not a cosmologist. But I do recognize that error bars are important, and that they tend to get left out of popular articles.

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

Yes. There are numerous reasons to "not fight city hall". But that doesn't mean you can't do it for a good enough reason. E.g., I use tab spacing at the start of Python lines. This causes formatting problems if I use idle, but to me its worth the cost. And I've occasionally had reasons to use a length terminated string in C...though I usually also zero terminate it. (IIRC the reason was that I needed to include 0 valued bytes in the string.)

Similarly you can use zero delimited strings in Pascal, but you need to write the support routines that you would need, and since current Pascal has a string type that isn't limited to 255 chars it they would appear to be rarely needed.

Comment Re:Discussion is outdated (Score 1) 492

No.
Python is an open source project. Ruby is an open source project. Squeak is an open source project. D is an open source project. Racket (scheme) is an open source project. ALL have decent language documentation. And that was just a list off the top of my head. Being an open source project is not an excuse for lousy documentation.

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 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.

Slashdot Top Deals

The only possible interpretation of any research whatever in the `social sciences' is: some do, some don't. -- Ernest Rutherford

Working...