Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:Why optical? (Score 1) 122

This is true, and I think the main point is that such a parallel bus is made possible with the new serial technology. You will still need to sync up each bus, but it can be done at a higher granular level than individual bits as it was done in traditional parallel buses. For example, you can transmit packets of data through the serial bus, containing information to help the receiving end piece together the larger block of data. This isn't possible with single wires since a single bit can't hold this type of information ;)

Comment Re:That it's required for most employment these da (Score 1) 828

I somewhat disagree with this. Maybe these days, finding more information about your interest is easier because of the internet. But back when I was growing up, I really liked programming, but did not find any friends sharing the same interest nor older folks that could give me direction. School made those things accessible to me.

Comment Re:Why optical? (Score 4, Informative) 122

There is a reason that the industry have been trending towards serial and away from parallel buses.

It's been a while since I've done an transmission line and bus design work. Let me see if I can explain this in 'lay' terms:

To implement a parallel bus, you have to have each and every wire be within a certain variance. Your driving and receiving chips also need to be able to send and receive the data within a certain variance. This is because you typically send your data, say a 32-bit word over a 32 wire bus, across the bus at the same time. If the wires (and drivers and receivers) do not match up, your data will be scrambled on the other end of the bus.

The larger your chips (because you need all the drivers and receivers to send the parallel signals) or the more wires you have, the variance between the parts becomes harder and harder to control because of manufacturing limits. The trick is to design your entire system to tolerate the variances of each individual parts so that they will still work together.

But at the same time, you want to increase the speed of the bus (because having 20,000 wires is just not so practical). This is a force in conflict with what you're trying to achieve because an increase in speed translates to less tolerance in the system for parts variance.

At some point between increasing parallelness and higher and higher speed, the increase in variance will exceed the system's tolerance, and the parallel bus becomes impossible to implement or unreliable.

This is why bus designers have been trending towards serial interfaces, because that at least takes most of these variances out of the equation (it's still there but less influential).

The other trend is clock encoding. Instead of sending bits synchronously, or sending a strobe (a separate clock) signal along with the data. Now we 'encode' the clock into the data, using encoding such as the 8B/10B encoding. The receiving circuit can then 'retrieve' the clock from the data signal (it basically allow you to identify each set of data from each clock cycle, and detect problems). Serial interfaces are also usually accompanied by training sequences at start up (may be software implemented) to adjust various parameters to make the data transmission ideal for the environment.

Comment Take the update (Score 1) 750

I work on HP's high end servers that also contains millions lines of firmware.

I've heard of accounts where customers simply refuse to take new firmware because of their prior experience of "bricking" the boxes, and causing days of outage waiting for new blades to be shipped to them. But those usually turn out to be cases of real bad HW defects that the newer firmware has found. But they still insist on running years old firmware that contains tons of nasty bugs.

We all know that software has bugs, and we fix hundreds of them every month. This is not as mission critical as firmware in a car, but it's the same thing. Take the update dammit!

Comment Read the source! (Score 1) 532

Seriously... if there is a lack of documentation, then you just have to start reading the source code, starting at main(). Then look at each object and read its constructors.

And start documenting it. Add comments in the code, create inheritance diagrams and sequence diagrams.

It will be tedious but you will come out of it a better programmer.

Comment Productivity tradeoff (Score 1) 453

The person that the OP is describing is either:

1. A super genious (rare)
2. A senior person that just finished all their training
3. A super rich dude that's been in school (middle-aged)

Unless you're rich and/or don't have to worry about paying your bills, you can't really afford to put in the time and money to be trained in multiple disciplines. And if you're rich, why would you bother unless you're really curious.

Space

Submission + - Hubble repair mission at risk (wired.com)

MollyB writes: "

According to Wired,the recent collision of satellites may put the Atlantis shuttle mission to repair Hubble in the "unacceptable risk" status: "The spectacular collision between two satellites on Feb. 10 could make the shuttle mission to fix the Hubble Space Telescope too risky to attempt. Before the collision, space junk problems had already upped the Hubble mission's risk of a "catastrophic impact" beyond NASA's usual limits, Nature's Geoff Brumfiel reported today, and now the problem will be worse. Mark Matney, an orbital debris specialist at the Johnson Space Center in Houston, Texas told the publication that even before the collision, the risk of an impact was 1 in 185, which was "uncomfortably close to unacceptable levels" and the satellite collision "is only going to add on to that." "

"

Slashdot Top Deals

"Well, social relevance is a schtick, like mysteries, social relevance, science fiction..." -- Art Spiegelman

Working...