Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
The Military

Was America's Top Rocketeer a Communist Spy? The FBI Thought So 165

New submitter IMissAlexChilton (3748631) writes Frank Malina masterfully led the World War II effort to build U.S. rockets for jet-assisted takeoff and guided missiles. As described in IEEE Spectrum, Malina's motley crew of engineers and enthusiasts (including occultist Jack Parsons) founded the Jet Propulsion Lab and made critical breakthroughs in solid fuels, hypergolics, and high-altitude sounding rockets, laying the groundwork for NASA's future successes. And yet, under suspicion by the Feds at the war's end, Malina gave up his research career, and his team's efforts sank into obscurity. Taking his place: the former Nazi Wernher von Braun. Read "Frank Malina: America's Forgotten Rocketeer". Includes cool vintage footage of early JPL rocket tests.

Comment Re:This is one of those (Score 1) 32

I'm not sure. I suspect that this is going to largely be "an invention looking for an application" for a decade...just like the laser was.

The problem is we've never been able to create alloys as a tightly controlled gradient of multiple metals before. Now if it could print a sharp disjunction between the materials, and especially if it could also print an insulating layer, then the applications would be obvious, but this is a very different thing. Different metals, e.g., conduct both heat and electricity differently. What will the effects be is one can print a gradient that oscillates between two different metals? How well can alloy crystal properties be predicted?

I think this is something that has a LOT of potential, but what those potetials actually are may well take quite awhile to figure out.

Comment Re:well.... (Score 1) 45

Yeah, but either could just sell that part of their business, or even just decide it wasn't worth the effort and shut it down without warning.

FWIW, I seem to recall approx. that already having happened, though I can't give a specific reference. The only real answer is to make backups BEFORE you put the data out to the cloud, and keep the backups (and test them periodically).

Trusting a(nother) company to guard your data has a long history of failures. But so does relying on local backups. You need both.

Comment Re:Low grade code monkeys don't need to know (Score 1) 213

Which is why they need to be searchable by Google. But multiply this by most of them can't write coherently. And many of them don't want to really spill their secrets, just to prove that they have them. (This is the basis of many companies, so don't laugh too hard at them. Also remember the astronomer who published a coded note when he first sighted Uranus, so that he could claim priority if someone else completed writing their paper on it before he did. That still happens, if not so blatantly.)

Comment Re:Complexity (Score 1) 213

I only ever found one of their journals of any value whatsoever (Computing Surveys). Their "collected algorithms" was lousy. If I were interested in representation of polynomial equations in Fortran it would sometimes be useful...but I haven't done that since college...decades ago.

Occasionally I'll follow a link that ends up in the ACM members only section. Sometimes it looks interesting, but back in the time I could follow it into the article only once was it really at all interesting, and that time it still wasn't useful.

If you've got a set of Knuth's books, then I don't think the ACM has anything to offer.

WRT ACM articles linked from Google: They are there, if only as indirect links [not sure], because every once in a while I end up on one of their "you can only read the abstract" pages. I never regret not being able to read further, because I *was* a member and *could* read the linked article for awhile. Every single one was worthless (for my purposes).

The only useful thing I've ever gotten out of the ACM site that I didn't find in Knuth was a date algorithm. And I already had most of it down. And their version still didn't deal with pre-Gregorian dates (except as if they had been Gregorian dates). (To be fair, Julian dates are rather different. Still...) Also it didn't properly handle dates BC, even in Gregorian terms.

Well, they guy that wrote the algorithm was still really tight on conserving RAM usage. It *was* a very concise algorithm. And it worked without problems (in Gregorian) back to 1AD. It was also (IIRC) nigh unintelligible because of embedded magic numbers. When unpacked it basically just said skip leap years for centuries unless the century divided by 400 is an integer. But he did it in one line of fortran.

Comment Re:Scala (Score 1) 315

Then you're dong it wrong. For the class of problems I'm interested in each process needs an input queue, and the ability to detect (somehow...there are several plausible means so I'm not choosing) what other processes are around and how to write to their input queues. And you need to be able to examine your input queue to tell whether there's a waiting message without blocking. All fairly straightforwards. You don't synchronize the processes, each one runs as far as it can with the inputs it has available and then waits for additional input. What is queued should be messages as short as possible, but that's true whenever you copy an array. And the queue should hold either a deep-copy of whatever is being exchanged or a reference to an immutable instance. No scheduling, per se, except that you might want to be able to adjust the priority at which the processes execute.

FWIW, I'm currently implementing something that operates in this way, and most of the tools I'm using to do this are excessively slow BECAUSE they are capable of a lot more than I'm asking them to do. I'm only planning on having around 8-16 processes because I've only got about 8 processors. I expect that most of the processes will keep busy all the time without needing new inputs. The messages that I'm planning on passing all have the form (action, key, value), and for my purposes key will always be either a string or an integer, and value will be an array of stuff. The kind of stuff will vary depending on what kind of process is receiving the input and what action is to be preformed. (Which is why I really don't want a static type.) Generally, however, it will begin with a few numbers, then a few (usually 4) arrays of structures(without internal pointers) and then possibly a string. This kind of thing is quite simple to handle in a language with dynamic types, and a real pain in languages with static types.

Do note that this means that most of the messages will be longer than is optimal, and that the length will not be consistent. It's the kind of thing that marshall, pickel, yaml, or json and handle trivially. No class serialization needed.

This means that each process totally controlls it's internal synchronization without external conflicts. Thread synchronization is not a problem. Scaling is trivial. Efficiency...well, I'm not so sure of that. I need to set things up so that most processing happens without IPC, and I'm not sure how possible that will be. I may need to go all out and find or build an even simpler IPC mechanism. (I think what I'm currently planning on has TCP/IP sockets burried within the implementation. I'm using localhost, so that probably gets translated into UNIX domain sockets, but even that may not be as fast as possible. OTOH, I don't want the input queues to be bounded by a pre-determined amount of RAM unless I must.)

Comment Re:If you want to earn big bucks... (Score 1) 315

The thing is, startups pay lousy money, but sometimes you get compensated in stock options, or even stock, and sometimes that stock turns out to be worth a lot later. Granted it's a crap shoot, but there's no safe way to make lots of money unless you already have lots of money, and even then it's not certain.

Comment Re:Scala (Score 2) 315

While there is a need for strongly typed languages, that doesn't imply that all languages should be strongly typed. More to the point, however, Scala appears to be staticly typed (I'm believing documentation here, I've no experience). Many problems are addressed only with difficulty via a staticly typed language.

Compatible with Java. OK. So is Jython, so is JRuby. Object-functional? Not quite sure what you mean, but I would guess that so are Jython and JRuby. Also Groovy.

This isn't really a response to the article, but rather to your comment. Unless you are in love with the Scala syntax, you don't seem to justify your point. Even Clojure would meet all the benefits that you list. (As well as several other languages.)

Personally, I dislike intensely Java's 16-bit char system. I much prefer either utf-8 or utf-32. Perfferable either chosen as needed. Alternatively the Python3 opaque string type with conversions to the desired representation also has its benefits. (My real preference is uft-8, but then most of what I work with is ASCII, and I only need occasional double or triple byte characters. But for that to work the language MUST have appropriate library support. As Python, Vala, D, etc. have. Ruby has it via an add-in gem. Java doesn't seem to really have it, and as a result neither do any of the languages that are symbiotes. C and C++ are, admittedly, as bad as Java. You need a large and clumsy external library. Racket Scheme has this aspect handled well, but there are other reasons that it's less than desireable.)

So. Which languages will you need in 10 years? It's one that isn't popular yet. Vala is a possibility. So is D. And prehaps there will be applications for which Swift is desireable. I'm really dubious about Java. C will probably still be necessary, but I'm not sure about C++. Some successor of the current Scheme versions would be desireable, but it MUST implement IPC much better than any current Scheme does. Some dataflow language would be highly desireable, but I don't know of any decent conderes. (The one's I'm aware of are too specialized...though one of them could grow out of that.)

The language really needed hasn't yet been written. It will be designed to be easy to write multi-process programs in. And it will be easy for processes to submit messages to each other's read queues. Erlang is almost right, but it concentrates too much on immutability, which works quite well for a certain subset of problems, and is terrible for many others. The reall concept needed is isolated mutability, where mutability is all "thread confined" (except that I mean process confined). I don't think that it should be possible to pass pointers between processes, but perhaps it could be done if the pointer only pointed to totally immutable data and it's recursive equivalents.

As I said, this language doesn't seem to exist yet, but various languages have implemented pieces of it, so I don't see any intrinsic difficulty in creating the language.

Comment Re:Arneson (Score 1) 183

Personally, I count the time that TSR took over D&D as the point at which the game started delcining and rigidifying. Prior to that is was much more creative and interesting.

OTOH, they did make it MUCH easier to mover characters from game to game.

Comment Re:Oe noes! A compiler bug! (Score 1) 739

The problem affecting the kernel appears to only be enabled with a specific set of optimizations, and only to matter for a specific class of programs.

Also, apparently the problem has actually been present for a number of iterations of the compiler, but a shift within the Linux kernel code has caused the compiler error to manifest. But the shift within the Linux kernel code was still valid C (C++?) code, so it was a compiler problem, even though it didn't affect most programs.

Comment Re:Oe noes! "Naughty" language! (Score 1) 739

I, personally, dislike swearing even when "sanitized".

OTOH, I do realize that this is my personal taste. I feel it makes the communication less clear.

OTTH, written communication lacks the richness of communication by speech. This means that there is no inherent channel corresponding to tone of voice. When someone uses swearing as a substitute for certain tones of speech, it's really hard to say there is a better option. The alternative work-arounds tend to be verbose. Also, swearing via the use of the term "shit" appears to be something we inherited from our common ancestor with chimpanzees, because if they are taught to sign they will automatically use the term "shit" to describe persons and situations that they dislike.

Comment Re:This is not a religious problem. (Score 1) 512

Theocratic is not fascist. The Muslim groups were originally theocratic, and that is what they appear to be headed towards again.

Just because it's vile and evil doesn't make it Fascist. Fascism involves commercial entities (usually corporations) having power over the government, and the government having power over the commercial entities, in such a tight bond that both do wha tthe other desires. In the original fascism this was the unification on Italy, and the creation of a powerful military so that nobody will laugh at it. (It did unify Italy, but the military wasn't all that great.)

Note that Fascism is not at all the same as nazism. I'm not even totally convinced that nazism is even a form that fascism can take. They did have certail similarities in methods of operation, but many of those are used by most governments, which makes them useless for categorization. Nazism seems to have been a combination of dictorship and theocracy, though I can't really say I understand it well enough to be sure.

Also not that just because I'm saying the Muslims are drifting towards theocracy doesn't mean I think they're heading towards nazism. I don't. What they *are* headed towards might, however, not be any more pleasant. They seem to be headed towards a "reestablishment of the Caliphate" whatever that means, but it seems to include a divine dictator at the center, with his sucessor chosen by a violent internal power struggle whose details are hidden. This seems calculated to pick the slimiest schemer as the successor. The one benefit is that he'll almost certainly be intelligent.

OTOH, just because they are currently drifting in a particular direction doesn't mean that they'll ever get there.

Slashdot Top Deals

UNIX is hot. It's more than hot. It's steaming. It's quicksilver lightning with a laserbeam kicker. -- Michael Jay Tucker

Working...