Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:the point, exactly? (Score 1) 191

Consider also that without such pioneers as Chuck Yeager we would not have transsonic or supersonic airliners.

Umm... we don't. That 1970s french/brit thingy crashed, and that was that. It just costs to damn much to fly an airliner past Mach-1. It's like commuting 30 miles to work every day in a Bugatti Veyron at 2 mpg.

Comment Re:Close to re-entry speed (Score 3, Informative) 191

And while they're busy doing that they often manage to put on one hell of a show:
* this effort
* the autonomous vehicle DARPA Challenge
* other random bits that we read about
* certainly other random bits we have no idea about, but I bet they're cool!
-nB

also..
* the fucking Internet

you kids these days need to learn your history

Comment Re:Wait, hang on (Score 1) 336

Yes, Israel has been at war with its neighbors, but only because it has been repeatedly attacked by those neighbors. Not that Israel plays especially nice these days - in fact they act like total dicks. I probably would act a bit dickish too if 90 million of my neighbors had vowed to wipe my people from the face of the Earth, and repeatedly attacked me with tanks and artillery to prove that they weren't just talking.

Comment Re:Be creative but have rules (Score 2) 429

You just gave away your inexperience there.

You really want to touch configuration files on hundreds/thousands of machines just because a server IP has changed? How do you migrate a server to new hardware without downtime?

There's this thing called a "DNS Resolver Cache", in every OS. And another thing called a "TTL" on a DNS record. They'll save you hours of scripting work the next time you need to do a service migration.

Comment Re:Sabu is unemployed - what a surprise (Score 1) 511

You do realize that by denying people access to employment after their jail term has ended, you're leaving them only one option: Criminal activity, correct?

He can dig ditches, mow lawns, shuck corn, whatever. That's gainful employment. What he cannot do is expect to ever be put in a position of trust by his employer. That's the way it works for convicted felons - it ruins your life, even after you are out of prison. It's been that way since Greece ruled the Mediterranean, and will likely always be that way.

Comment Re:What we need (Score 1) 209

Nginx 1.0+ supports backend keepalives with a patch and module, but they are still not in official release. But this code comes from the principal nginx author, so it will make it into release soon.

That said, your back-ends are usually very close network-wise to nginx proxies, and connections can be established and torn down in less than 1 ms. Since the back-ends are usually thread-based, this is a good idea anyway (which is why everybody has to turn off HTTP keepalives in Apache when they start to scale). Disabling HTTP keepalives SUCKS for the client's experience, especially if they are on wireless/mobile connections or on another continent.

I manage a medium-sized SaaS application with about 0.7M users, and we front dozens of honking physical JBoss/Tomcat boxes with a single-core linux VM running nginx with 1 GB of RAM (with a hot standby of course). Nginx is only proxying to back-ends, not serving static files (except for a small 512MB set of really hot files using proxy_cache which stays in the filesystem cache). Nginx itself uses only about 100 MB with 8 worker processes. This isn't surprising: even the biggest $50K F5 load balancers have very wimpy specifications for CPU and RAM, but like nginx they use an event-driven model to keep RAM usage and context-switching to a minimum.

One problem running nginx on Linux is that asynchronous IO on Linux is horribly broken by design, and only works for databases that use direct uncached IO. So we are looking at moving nginx to FreeBSD so we can take advantage of asynchronous disk IO as well as the default asynchronous network IO.

The one-thread/process-per-connection model of Apache really just doesn't cut it for web-scale workloads. We were able to re-purpose our dedicated Apache front-end boxes as application servers instead because of the RAM savings. So nginx saves us about $2k per month in colo costs.

Comment Re:I do the opposite (Score 1) 532

The brick and mortars need to focus on providing a better overall value, and that includes their employees being able to enumerate exactly WHAT that better value is.

^^THIS^^

You do nobody any good by "buying local" just because or buying an inferior product because it is made-in-the-USA. It just keeps inefficient/low-value-add operations alive in zombie mode and provides no incentive for the necessary change that will actually improve the economy long-term.

For example, I did a huge chunk of my Christmas shopping at Nordstrom. I paid probably 25-30% more than I would online or elsewhere. But I did so because they let me sit in a comfy chair, and got me coffee. Then the helpful salesperson went and picked out items for my wife, sisters, mom, etc. that I simply had no chance of choosing well on my own. That's value-add.

Comment Re:Or you can just... (Score 1) 108

Every...study has shown that the best available VP8 encoders require almost 2x the bitrate of the best H.264 high profile encoders.

Got links?

Sure... this is the most comprehensive qualitative test I've seen, using a huge varietry of sources and metrics. See conclusions section on page 93, which shows WebM requiring >2x the bits of x264 for the same quality.

A rigorous subjective comparison can be found here, using the Double Stimulus Continuous Quality Scale methdololgy.

Note in both subjective and objective comparisons, WebM takes 2x or more bits to achieve the same quality at web bitrates of ~500 kbps.

At much higher bitrates, the quality differences narrow. But high bitrates aren't valuable for Internet use cases, and in any case at 2.5 Mbps and SD resolution, even inefficient codecs like MPEG-2 or WMV8 look good.

Comment Re:Or you can just... (Score 1) 108

Under normal viewing conditions, WebM and H.264 are comparable.

No, they really aren't. Every rigorous quantitative and rigorous qualitative (large sample sizes and double-blind) study has shown that the best available VP8 encoders require almost 2x the bitrate of the best H.264 high profile encoders.

VP8 is basically useless, as it is very likely encumbered by patents (12 different companies have made claims, and Google will not offer indemnification for a reason). So it isn't free, it is extremely slow, and it requires twice as many bits. I operate a commercial video site, and guess what? Our H.264 licenses cost less than the extra storage and bandwidth WebM would require. And the WebM tool chain sucks.

Comment Re:Time to replace DNS (Score 1) 477

The root servers are already quite distributed, thank you. Are you suggesting the roots should contain differing data and somehow resolvers decide what to use by voting or reputation scoring or some shit like that? The PGP web of trust didn't take off. That model has been tried and doesn't work.

Comment Re:Whats this obsession for everything in Javascri (Score 1) 167

Javascript is the only language actually delivering on the promise of "write-once-run-anywhere." Well, "anywhere" that has a web browser, which is just about any device that does human interaction these days. All the other languages you mentioned have numerous environmental dependencies (separately installed run-times, OS specific conditionals, browser plug-ins, compiler specifics, etc.). Javascript sucks in many ways, but it sucks less than the alternatives for building an application quickly that can work just about anywhere.

Comment Re:Time to replace DNS (Score 4, Insightful) 477

I think this is a sign that DNS needs getting replaced with a non-centralized system.

Is there anybody working on such a thing?

Good luck with that. This is an industry that hasn't replaced IPv4 despite 15 years of warnings. An industry in which horrifyingly broken and insecure protocols such as SMTP and FTP are still ubiquitous. Once something is widely deployed, it basically cannot be changed, or only changed over the span of decades.

Slashdot Top Deals

To do nothing is to be nothing.

Working...