Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:I'd pay for Hulu... (Score 1) 234

That is essentially it, as long as the value proposition (works like a DVR, commercials don't run longer than skipping through commercials on a DVR take, the price is the cost of internet access instead of internet + TV) then migration will happen;

Let say a reasonable HTPC w/ 1080p display costs $1500 and cable with a DVR costs $60 a month, hulu pays for your HTPC w/ new HDTV in about 2 years; Add to that a $5 a month fee for what used to be $15 a month HBO and hulu charging for premium content: Hulu w/ service, after the second year, saves the consumer ~ $850 a year

Comment Re:Without Copyright the GPL woudn't be necessary. (Score 3, Interesting) 944

I've reverse-engineered a lot of code from stripped object back to source. It got more difficult to do manually with some of the odd flows that RISC processors do and progressively more optimizing compilers, but it's hardly impossible. And there are fine tools to support it now.

Once you get to uncommented source for something where you roughly understand the program's function it's usually pretty easy to figure out what the author intended. Then you can comment it.

The fun part is finding errors. (I recall one where I was reverse-engineering a Unix driver and identified a place where the programmer had written (approximately) "if (a=b)" when he meant "if (a==b)". It was doubly fun to feed this back to a guy in the OS group - especially when I walked him through the code to the statement and he asked about a nearby assertion which had been conditionally not-compiled into the object that I was working from. He hadn't really internalized that I'd decompiled to source until I pointed out that I couldn't see the assertion. B-) )

Comment Re:none of that will matter (Score 1, Funny) 76

Wow. I think I may have said something that could possibly be taken out of context in my previous reply. Having been unaware of the originations and meaning of that particular southern saying, which I just recently became educated about... I would like to retract my statement.

You see I thought you were referring to Sin you make at home.. when you know.. nobody else is around. Just yourself.

Umm yeah..... I think I am going to look up sayings before I reply to posts now....

Comment Re:The Moon (Score 4, Interesting) 703

You may well struggle to get any tcp-based communication, as this comment from
/usr/src/linux/net/ipv4/tcp_timer.c shows:

/* Increase the timeout each time we retransmit. Note that
* we do not increase the rtt estimate. rto is initialized
* from rtt, but increases here. Jacobson (SIGCOMM 88) suggests
* that doubling rto each time is the least we can get away with.
* In KA9Q, Karn uses this for the first few times, and then
* goes to quadratic. netBSD doubles, but only goes up to *64,
* and clamps at 1 to 64 sec afterwards. Note that 120 sec is
* defined in the protocol as the maximum possible RTT. I guess
* we'll have to use something other than TCP to talk to the
* University of Mars.
*
* PAWS allows us longer timeouts and large windows, so once
* implemented ftp to mars will work nicely. We will have to fix
* the 120 second clamps though!
*/

(I know this has been around for donkeys years, but I just checked on Slackware 13 and it's still in there.)

Comment hmmm... (Score 1) 119

I'll hold off my judgment until I try it, but so far such attempts to "bridge the gap" have all failed. Although most of those attempts start with the hardcore side and water it down (Empire Earth 3 anyone?). IMO, it seems best just to let hardcore gamers have their hardcore games, and casual gamers have their casual games, and those who want a mix, can get some of each. But I hope they pleasantly surprise me.

Comment Students don't need to think at internet scale (Score 2, Insightful) 98

They just need to think. That's what they study for (ideally). Thinking people with open minds can tackle anything, including the "scale of the internet".

When I was in high school, I used a slide rule. When I entered university, I got me a calculator. Did maths or problem solving abilities change or improve because of the calculator? no. Student today can jolly well learn about networking on small LANs, or learn to manage small datasets on aging university computers, so long as what they learn is good, they'll be able to transpose their knowledge on a vaster scale, or invent the next Big Thing. I don't see the problem.

Comment Detecting CPU consumption (Score 1) 216

The article isn't loading for me, but: can't they simply measure the amount of CPU used during the benchmark and use that information in the benchmark? I don't think it's basically evil to perform that kind of offloading (except in this case when the rules of 3DMark forbid using empirical data on it to optimize performance; but then again, I would imagine many other pieces of software also get this treatment without bad effects on quality or game experience), but dynamically detecting the situation would definitely be complicated; and it might even sometimes give the wrong answer.

One pretty useful heuristic for this kind of optimization would however be "is the CPU usage high without offloading GPU work to CPU: if so, don't do it". Hey, maybe the drivers could have a 'profiling'-mode, which would perhaps slow the performance but figure out the optimal parameters for running the program.

Comment Re:New to what power? (Score 1) 206

What ever you call it, the causes are disturbingly familar. THe great depression, S&L banking crisis and many others were caused by artificial bubbles in the banking system just like the ones you noted in your post. The only difference being that today's bubbles are often hailed as a paradigm in the economy where prosperity never seen before will reign; but it is just as I said; they're a bubble, nothing more.

Comment Re:must buy (Score 2, Funny) 413

Oblig Red Dwarf:

Lister: What d'ya think of Betty?
Cat: Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.
Lister: This is crazy. Why are we talking about going to bed with Wilma Flintstone?
Cat: You're right. We're nuts. This is an insane conversation.
Lister: She'll never leave Fred, and we know it.

Comment Has nothing to do with tech or IT (Score 1) 304

This has everything to do business planning of funding and timely rollout of redundancy and backup systems (including staff). The tech, tools, good IT staff hires, procedures, and strategies are out there and are pretty well known. I don't have to know about their infrastructure or staffing to tell you that they didn't invest in the infrastructure and/or training for staff to prevent exactly this sort of disaster.

I can think of three possible reasons why they didn't have such an infrastructure in place:

1) When M$ bought Danger, they scaled back to maximize profits

2) The risk/cost analysis (odds of failure, cost, and cost to prevent) of such a disaster was out of date, incorrect, or simply accepted

3) Funding was available but rollout of redundancy/backup was taking longer than expected

I doubt #3 since Danger has been around for a while and their customer base probably isn't growing exceedingly quickly. #2 is mildly possible, IMHO, if they simply accepted the risk. But, a class-action after a disaster like this has to be really expensive unless they think they can dodge the legal obligation of backing up user data. #1 is fairly typical of take overs, especially if profit is more important than safeguarding user data.

Slashdot Top Deals

Everything should be made as simple as possible, but not simpler. -- Albert Einstein

Working...