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

 



Forgot your password?
typodupeerror
×

Comment Re:Careful! (Score 1) 137

Your summary still might help some others.

It's a cable modem and regular Vimeo works just fine. It's only the VOD stuff that shows this off behavior (because it loads the video in 40 MB pieces to circumvent most download tools and fails to stitch them back into seamless output).

Comment Re:Careful! (Score 1) 137

Won't work in this case, but thanks for the good intention.

Unlike regular Vimeo, where it's easy to work around the basic methods, the VOD site loads parts of the video in 40 MB or so pieces, tries to stitch them together again and in my case it failed miserably at doing so (despite a proven and more than sufficient downlink),

Comment Re:Careful! (Score 1) 137

Unless you actually know what was going on, shove your assumptions where the sun don't shine.

This was the first bad HD streaming experience in years and the connection has performed without problems throughout the long easter weekend as well (over here that was an extended weekend from Friday to Monday). HD streams by other sites didn't cause any problems either, the problem was reproducible across tabs and browsers and using the web developer tools you could practically watch the stream arrive too late, piece by piece and with not nearly enough overlap to provide seamless playback.

If it looks like a duck, walks like a duck, quacks like a duck, ...

Comment Careful! (Score 4, Informative) 137

The movie was worth the five bucks to watch it on Vimeo, but their Flash-based player (no quick way to switch to an HTML5 version) resulted in such a choppy playback that the constant pauses and buffer attempts added another half hour to the whole thing.

Since it's a 95 minute movie we're talking about a quarter of the time being spent on just waiting for the fucking site to do its job again.
Before anyone asks: The 100MBit connection has never been a problem before and the necessary software was up to date as well.

Hope you'll have more luck. Except for the predictable end it's quite a nice movie.

Comment Re:It's really annoying (Score 1) 303

What languages is L4 written in?

The more relevant questions are "what is the size of the codebase of L4 written in an unmanaged language" and "is that unmanaged codebase small enough to mathematically prove its correctness" .

There is a reason why we layer systems on top of each other, and not just because we like cake.

Comment Re:Yet again C bites us in the ass (Score 1) 303

What does managed code do that good C doesn't???

Managed code does one very important thing: it guarantees that elusive quality you've just named 'goodness'. (With respect to memory access, at least).

Goodness or otherwise of arbitrary unmanaged C code is a Turing-complete quality that, we've painfully discovered, cannot be reliably detected by either a compiler, a testing regime, or the entire planet's worth of expert C programmers given unlimited access to the code and up to two years time. That's how many coder-years? A lot.

Goodness of managed code? It has that quality. Period. And we can go on with our lives solving instead of creating problems.

Comment Re:Gee, that's worse than no encryption isn't it? (Score 1) 303

If only they had written OpenSSL in Java instead of C!

Arguably all the recent security holes in Java are exactly because they wrote extensions and libraries in C/C++ and not in Java.

A real language - like, say, UCSD Pascal in 1978 can compile itself to its own virtual machine just fine...

But admittedly the resource requirements to host a system like that that are pretty steep - you'd need at least 128K of RAM. Still, I like to dream that one day....

Slashdot Top Deals

There are two ways to write error-free programs; only the third one works.

Working...