Slashback: HETE, HP, Regression
The computing equivalent of Area 51? A short while back HP closed its calculator division. Many have thought HP's calculator department was unprofitable. This was not the case. Many have thought they had no innovation. This was not the case. Turns out that management had 4% workforce to kill and they were part of the cut.
This article explains more. It turns out they had designed several Linux based PDA's ready to produce that were killed by management. Sounds interesting? Go check it out.
The biggest expense was the 12 gross of Estes D engines ... Satellite Designer writes: "The topic of low cost satellites having been mooted here recently, I though I'd alert readers to another such project. The HETE-2 satellite recently located a cosmic gamma-ray burst precisely enough that (with a lot of help from friends) an afterglow was detected, identifying its source. HETE-2 cost $26 million, only 1/3 of what a 'small' scientific satellite normally costs.A lot of commercial 'off the shelf' technology went into HETE. Nothing from Radio Shack, but there are quite a few parts from Digi-Key onboard. You can't save money by using cheap parts (but you *can* save money by using easily obtainable parts), and you can't achieve reliability by using expensive parts (but you *can* help reliability by using the parts best suited for your application). The radical thing about HETE's parts selection was that it considered parts in the application context (as one would do in a normal engineering process), rather than restricting selection to a QPL assembled to meet irrelevant requirements.
The real trick to keeping costs down is to do the job with as small a team as possible in the minimum time possible. Rather than employing a large team of specialists, HETE's scientific investigators did much of the engineering and technical work. A small, carefully selected engineering team filled in the knowledge gaps."
Quitting isn't easy, and why bother? dmarsh writes: "This new article from C|Net seems to be a total contradiction to last week's "Dump Broadband, Dig Out Your Modem!" thread's article. I guess the important difference being that this one is backed up by an actual survey by the National Cable and Telecommunications Association."
Goes to show, in a large group of people you can probably find at least some who fit nearly any premise. As always, question the source ;)
.. because I had to. My line provider went bankrupt. How often has that happened lately?
I wonder whether (1) this many people signed up for the service during the period, or (2) this many people finally received their hardware/installation. Everybody knows that the pool of broadband installers is vastly outnumbered by the pool of broadband salespeople. No flamebait here, just wondering if the mass sign-up occurred in 2Q or 3Q...
Also, consider the source of the statistics ("Our research shows that our product is 100% safe...")
My broadband provider starting sticking extra fees into my bill earlier this year. It's only $6/month, but it's still lame as hell. I'm revolting by dusting off my ol' 56K USR at home & taking advantage of that T-1 at work. BellSouth can rip off someone else.
wow, I hadn't heard about HP closing off its calculators division, it's such a shame, as a (still) proud owner of an HP 48sx I'm really saddened by this turn of event.
Maybe some slashdotters don't know it, but before the current palm-craze, HP's calculators were *the* portable thing to program for (at least in my university, I remember being amazed that somebody got pacman working on the HP).
To think that a whole division like that, with great products and a great vision was axed just to get the stock price a few bucks up in the short term seems really backwards, but I guess that's what's happening far too often in this period of stock-price-driven management.
:(
The other difference between the two articles is that the latter one is talking about Cable in particular, rather than "broadband" (i.e. both Cable and DSL).
I used to have DSL. When I moved, I tried a Cable Modem instead. I found the quality of my connection was better, and the service technicians were far more knowledgeable. Of course, that reflects more on the individual companies (Verizon for DSL vs. Charter for Cable) than it does on DSL vs. Cable, but considering the number of people I know who gave up on DSL because of technical problems, I wouldn't be surprised if DSL is losing business to Cable.
Here in Pasadena, Cable is cheaper and they can come install it within a day or two of your order. When I got DSL, I had to wait six weeks for the first visit, and it took them quite a few tries to get it working.
this [survey] is backed up by an actual survey by the National Cable and Telecommunications Association.
;)
-Slashback
Goes to show, in a large group of people you can probably find at least some who fit nearly any premise. As always, question the source
-Timothy
Well, OK, let's question the source. the National Cable & Telecommmunications Assosciation is "is the principal trade association of the cable television industry in the United States". So basically, they're the RIAA of the cable industry. And they just published a survey that says that consumers are subscribing to broadband in mass quantitites.
Ok, I question the source. This is like Shell Oil publishing a study that concludes that burning gasoline provides valuable fertilizer for wetlands. Why give PR machines free press?
If guns kill people, then CmdrTaco's keyboard misspells words.
You saw Windows XP at Fry's? I'm assuming you mean you saw a demo computer running XP, and not that you merely saw the box sitting on a shelf. By your logic, I could say "I saw Linux at my friend's house and was not impressed. It was nothing but text and stuff."
I shouldn't have to tell you that the interface isn't the OS. If everyone judged Linux by its interface and nothing else (which, unfortunately, is often the case), people would have an absurdly skewed view of Linux. Think about how many different window managers and themes there are for Linux. Just because one of them looks like shit doesn't mean the underlying OS kernel sucks.
The same holds true for Windows. Sure, the interface may be full of goofy alpha blending and unnecessary menu fade-ins and mouse pointer shadows and other things, but when you replace explorer.exe with a third-party shell (or merely disable the extra eye candy via the Control Panel), all that stuff goes away and you're left with what is without a doubt the most stable version of Windows I've ever seen.
I'm not saying any of those technologies are in XP, I don't know, I have it (via MSDN) but have no intention of installing it on any machines, as you say, there simply isn't any real incentive.
Comment removed based on user account deletion
In the last couple years, HP's philosophy has been to concentrate on a few areas. It was the reason that they spun off their test and measurement division as Agilent Technologies. HP currently wants to concentrate on computers and the internet. I guess the calculators did not fit into their vision of a computer and internet world.
Personally, I think they should have given the calculator division to Agilent when it was spun off. It seems to line up with Agilent's mission of making specialized electronic devices.
2. "Goes to show, in a large group of people you can probably find at least some who fit nearly any premise. As always, question the source
q='echo "q=$s$q$s;s=$b$s;b=$b$b;$q"';s=\';b=\\;echo "q=$s$q$s;s=$b$s;b=$b$b;$q"
Ahem... but most library calls themselves invoke system calls to get the job done. I doubt pthread semaphores and mutexes are implemented without some help from the system (access to shared memory, putting threads into wait queues, etc.)
Furthermore, any library function that does the same thing as a system function will undoubtedly call the system function (fopen calls open, fork calls clone, etc.).
Perhaps this just reflects that the implementation of IPC in Linux, while complete, is not as fast or optimized as it should be. This is probably because everyone uses sockets, mmaps and stuff to do the same things, all of which are already fast, so nobody bitches enough about it to prompt someone to rework it.
Note that I make this statement purely from an observational standpoint; most code to apps I see forgo IPC for other methods. Would somebody care to give an example of some common Linux app that uses IPC heavily?
Black holes are where the Matrix raised SIGFPE
Empty <a> blocks aren't terribly useful...
I have to admit, I've considered getting away from cable.
Reason: downloads could hit 400+K/s uploads could hit 200K/s (not bits, bytes).
After a year, down ~= 200+K/s upload capped at 128K/s. Ok, fine and dandy.
Insult to injury came when dowload rate varied (no biggie) but a second cap at 128kbits.
When questioning the provider and calling the corporate office I got "Oh, we meant 128kbits not Kbytes".
Uh, huh.
The sad part is no one noticed the drop off in cable revenues at, or shortly after 2 things:
Killing off the *.divx groups and 'capping people off at the knees' as far as uploads.
By capping off uploads and killing off the divx groups @home completely negated the purpose of broadband
Include the caving into the MPAA w/o so much as a defense of its own customers much less adhering to "innocent until proven guilty" therom.
If DSL could provide a 128Kbyte up/down rate and eliminate the install hassles and provide the service for 20 to 25 bucks a month...I'd jump on that in a heartbeat.
If the had a you want faster, you pay more scheme (which @home does not do...WTF?) I'd use it and I'd *recommend* other cable users do it as well.
I can not tell you how many ppl I've recommended cable to because I lost count.
Now I tell them DSL first, cable second if they don't mind "getting less" for the same amount of money.
"once bitten, twice shy"
Ok, in my case it was a nip first then a bite.
Now I am shying away from recommending cable as a first step. Second step getting away especially if the 'veeceedee' groups start disappearing.
Then a lot of us will have absolutely *NO* reasons for sticking with cable.
If it is not on fire, it is a software problem.
the article was about IPC (inter process communication). win critical sections do not provide inter-process facilities. in fact, they don't necessary even work efficiently on SMP systems either. 'nuff said?
Actually, critical sections are fast only if there is low contention for them. As soon as threads start contending for them, performance goes out the window. They also don't scale well with the number of threads, and they exhibit horrible performance degradations if the priority of the contending threads is not at a maximum. There is a great summary of the issues at http://world.std.com/~jmhart/csmutx.htm.
Its a shame.
I don't think I would ever have passed all the number crunching civil engineering classes and the dreaded EIT (engineer licencing test) without my trusty 32s.
I lothe regular calculators now...
When It got stolen with my bookbag (uggg) I got the 42s. even better! 2 lines of stack on the screen!!! I still use it. Durable too.
Maybe its not as big a deal now that calculators can enter equations with parens..
I was thinking of wipping up a desktop calculator that did rpm.... Maybe its time..
Then you ditch the connection. Just because they raise the price isn't a good reason to dump it.
Hell, my employer hasn't hired anyone or let anyone go from my group in the last year so just to make up for raises and what not our product will cost at least 7% more. If our customers thought like you, we'd be screwed (but so would our competitors).
Subscribe to external news sources - probably put you down $10/mo. Sure, that's ANOTHER $10 a month out of your pocket. But if you're feeling squirley, consider what that costs the provider.
The traffic used to have a set cost as defined by upkeep of the internal network - call it "internal cost". Now the same traffic has that internal cost as well as the cost associated with increased traffic from the upstream provider. Its possible that the cost of this external traffic is less than the cost of providing better usenet service. Its also very possible this same traffic now has considerably higher cost.
In any case - you get better usenet service.
In a truly competitive market, other companies would come in to fill the gap left by the departing ones. The problem is, the companies that currently dominate broadband come from industries that are used to having government imposed monopoly status: cable and telephone. The monopoly status is starting to go away in the cable industry, but is persisting for telephone, especially in regards to the "final mile."
Yeah, and in the best of all possible worlds...Monopoly status is not imposed by the government in the sense that the government forbids competition; by and large what they do is amelioration of the effects of an existing monopoly (price controls, etc.) Government does not impose monopoly status so much as it acknowledges an existing reality. You seem to forget that it was government "interference" that opened telephone lines up to DSL competitors in the first place, but that's inconvenient, so we'll just forget that, right? Of course, the RBOCs' incentive for doing so was access to long-distance markets they couldn't get into after the AT&T breakup. One of the many woes that introduced to the average consumer was no longer having to hide extra telephones when the repairman came by. Don't forget choosing your long distance carrier.
Cable was deregged under George I. Guess what? Prices went up. Natural gas prices in GA went up when they deregged last year. CA's electricity woes are partially due to a badly-planned dereg, but the consumers still had to take it up the ass. While competition is always good for the competitors (i.e., drive wholesale up by bidding because we're different companies and therefore not a monopoly,) it's not always good for consumers. Rather than parrot armchair libertarianism, maybe you should look at deregulation on a case-by-case basis and support it where it lowers costs to consumers and oppose it where it doesn't. Unless you have a financial stake in a company assraping consumers in the name of the "free market" you really shouldn't have a dog in this fight. If you do have a financial stake in such a company, you should say so up front so there's no confusion. If your interest is strictly ideological I can't see any explanation other than that you favor the concentration of wealth in the hands of a very few people even when that doesn't include you because you somehow find these people more accountable than politicians who can be voted out or recalled.
The first wave of DSL providers had tremendous problems getting the incumbent carriers (ILECs) to give them support when there were line problems. The ILECs didn't want them to succeed because they wanted to offer their own DSL but hadn't managed to get their act together yet. They had no incentive to provide good service and every incentive to provide bad service. Result: bad service
Who's going to provide those incentives to good service? The Tooth Fairy, the Easter Bunny, Santa Claus, or the government? Remember it took legislation just to get the cable companies to answer the phone.
So what you're really talking about is a government "solution" to a problem that was created by government in the first place. No thanks.
In a truly free market you could be bought and ground up for pet food. Never forget that.
--
Freeper Logic