Domain: azillionmonkeys.com
Stories and comments across the archive that link to azillionmonkeys.com.
Comments · 35
-
Re:Because it was written in Seastar or C++
Here you go man, this guy says it much better than I do.
-
Re:Yes, he was wrong...C++ and C can obviously be as fast as each other, but once you start taking advantage of the C++ features (smart pointers, lists instead of arrays, rtti, exceptions, objects), you lose efficiency. C++ ironically was not designed to be efficient. Effective use of cache (i.e., aligning objects correctly in memory), branch prediction, and loop hoisting are the main techniques of efficiency on modern processors, whereas C++ design decisions seem to be aimed at counting instructions, which is drastically misleading (as the section entitled "Performance optimization is achieved primarily by counting the cycles of the assembly code" in the previous link explains).
At that point, you'll find that the STL libraries make C++ a little better.
I wouldn't assert that without timing it (if you did time it, please let me know, I want to hear it). The exact implementation of the library function is what matters (i.e., Microsoft's C++ sort function could be slower than GCC's C function which could be slower than G++'s C function which could be slower than Microsoft's C function. Unless you time it, you don't know).
Someone a couple months ago on Slashdot asserted that they had timed the C++ STL algorithms and they were slower than the Java algorithms. I haven't had time to test it, but it's not surprising. Yeah, it's cool that the STL can automatically generate code to sort an array of shorts, but there are many other considerations that make an an implementation of an algorithm quick or slow, as of course you know. -
Re:Let's get C99 right first
Unfortunately, many programs have to care about MSVC. Usually, you end up writing compatibility implementations of things they're lacking (yay pstdint.h http://www.azillionmonkeys.com/qed/pstdint.h) and turn them on/off at need.
I really wish Microsoft would bundle clang with Visual Studio - as far as I know there would be no license issues with doing so, and why pay to develop cl.exe when clang already exists - but I rather doubt Microsoft is institutionally capable of the notion of contributing to the clang project instead of developing their own compiler.
-
Re:Devs can now be more lazy
Performance hits for closing files is extremely minimal. By far the slowest part of writing a file is the time it takes to transfer it to disks. It is in fact often on the order of a million times slower than any other part. Worrying about the performance hit of a few extra instructions to close a file is silly in that context. There is a law related to this point, but I can't find it right now. It is described under The General Task of Code Optimization.
-
Re:As a C programmer
Also, you might want to learn about efficiency, real efficiency, not just counting clock cycles. Check out Paul Hsieh's site.
Basically, your first focus should be good design. After that, you can focus on speeding things up by figuring out where your bottlenecks are. If you randomly try to speed things up, you will probably waste time. If you focus on optimization from the beginning, you will make your program both inefficient and inflexible. -
Re:Duh?
The problem is you, and many other proponents of of multi-threading is that you only consider processing time as a resource. The fact is there are other problems: shared resources, caching, IO, disk access times; check out this discussion on the LKML. Notice how Alan Cox mentions that "as you add threads you generally decrease cache effectiveness."
If you are blocking on IO, it doesn't matter how many threads you are running, you're still blocked. In that case, there is no point in adding more threads, it will only add complexity to your program, without any real benefit. Given that the vast majority of real-world programs are interactive and spend the vast majority of their time waiting on IO (if you don't believe me check your processor usage right now...I'll bet it's below 10%), it is safe to say that the vast majority of real-world programs will experience no boost from being multi-threaded.
Sometimes threads just slow things down. To test this, just last month for work I wrote a server using a threaded model (because it was easier) and then the exact same server using a single threaded model (because my coworker complained that threads are too slow). My purpose was to show that threads are fast enough that if it's easier, you should program that way. I tested them both on a quad-core system, and the single threaded server was indeed faster (but the threaded model handled 10,000 simultaneous connections no problem....go Linux Pthreads!). Also, I am not the only one who has seen this effect.
Use threads when they're useful. Don't use them when they're not. But if you are still under the idea that parallel processing is the magic bullet, you need to learn more about optimization. -
Re:tea leaves and biz speakIt's pretty simple, really. How many jobs have you applied for? Two? Three? If you are serious, you will probably have applied for ten or more. If everyone is applying for ten or more, then every employer will receive a lot of applications, but there will be a lot of duplicates. Three applications is not very many.
As for why you weren't picked, there are a couple possibilities:
- You are just not very good. In this case, the solution is simple (if not easy). Join an open source project, start your own, or do whatever it takes to get better. Maybe just reading through some guides like a zillion monkeys or even Joel. Programming is a skill, and can be developed.
- Someone else who applied was better. Whatever, it happens no matter how good you are. Move on, apply somewhere else.
- You have bad interview skills. It happens. Read What Color is Your Parachute
-
It may in part be related to something I did ...
Here's an old version of one of my webpages:
http://web.archive.org/web/19990210111728/www.geoc ities.com/SiliconValley/9498/sqroot.html
And here's an updated version of the same page:
http://www.azillionmonkeys.com/qed/sqroot.html
It isn't an exact rendering of the code in question, but it explains enough for any skilled hacker to 1) understand what's going on and 2) modify the code to create the resulting code that's in the Quake 3 source. Furthermore this web page has existed since about 1997 (archive.org doesn't go back that far for some reason.)
Now *IF* in fact the code origin comes from someone who took ideas from my site, I should point out that *I* am not the originator of the idea either (though I did write the relevant code). Bruce Holloway (who I credit on the page) was the first person to point out this technique to me at around the 1997 timeframe (prior to this, I created my own method which is similar, but not really as fast). (Vesa Karvonen informed by of the technique (through a code snippet with no explanation) at roughly the same time as well.) It was a technique well known to hard core 3D accelerator and CPU implementors, and follows an intentional design idea from the IEEE-754 specification.
Prof. William Kahan, one of the key people who specified the IEEE-754 standard (the standard for floating point the many CPUs use, starting with Intel's 8087 coprocessor) apparently presented this idea, and is the source for where Bruce Holloway got the idea. The IEEE-754 standard came out around the 1982 time frame. Though, its very likely that these ideas originate from even earlier in computing history. -
Re:DirectX: vendor-lock-in and avoid paying to SGI
Love the 'personal' theories...
I do too -- and yours are better than most.
Microsoft did not even have an alternative to OpenGL in development when Microsoft pulled out of OpenGL.
Microsoft was a member of the ARB until early 2003. Offhand, I don't recall whether DirectX 9 was truly "released" by then, but it had been available at least to developers for quite a while at that point.
Microsoft pressed for OpenGL to enhance low level hardware support with intention of doing more than cad/engineering and supporting 3D rendering environment conducive to gaming and directly access video card hardware for gaming.
What sorts of things that games needed did the ARB (supposedly) tell Microsoft they wouldn't support? I seem to remember going through situations like this Usenet thread discusses.
If you look really carefully, you can find a few points in time at which DirectX has supported something that was slightly more difficult with OpenGL -- just for one example, rendering to a bitmap (instead of the frame buffer). None of these, however, was anything that the ARB told MS (or nVidia, ATI, et al) to pound sand on or anything like it. Quite the contrary -- OpenGL has always had a mechanism for extensions that let people integrate new capabilities into the existing framework. In addition, the ARB has moved reasonably quickly to provide (usually cleaner versions of) those capabilities in the core of newer versions as well.
Microsoft started stringing together a set of technologies that were called WinG, mainly a 2D form of rendering with plans for a new model that was a 3D rendering solution with direct video access on par of what the current DOS based games were used to, but in the Windows environment.
Well, you're at least partly right. WinG was certainly 2D in nature -- in fact, its basic idea was only to allow fast display of device independent bitmaps (as opposed to the device dependent bitmaps they'd primarily supported previously). It was not, however, replaced by DirectX or OpenGL or anything similar. Its real replacement was CreateDIBSection, which is still part of GDI (and takes relatively little advantage of graphics hardware).
If you really want to look into the history of OpenGL vs. DirectX, I'd recommend going to Paul Hsieh's OpenGL Vs. DirectX page. This has blow-by-blow documentation of things that were really happening at the time, including references to other articles, Usenet threads, etc., making it pretty easy to track down things like dates, so you have an idea of when things happened in relation to each other (such as the fact that all of this happened long before MS quit the OpenGL ARB).
When DirectX first existed it was the only game in town for any standardized interface to video for accelerated graphics in gaming. Now it is more than just Video...
This much is true -- OpenGL has stuck to more or less the UNIX philosophy -- do one thing, and do it well. Unsurprisingly, DirectX seems to follow the Microsoft philosophy much more, attempting to integrate everything. Unfortunately, (as usual) it only does the job halfway -- on one hand, DirectX has bits and pieces of almost everything, but on the other, the pieces aren't really very well integrated together. It's branded as a single "product", but it's really separate pieces with little real integration, and even with quite a few dissimilarities between the pieces that are entirely gratuitous.
-
Just write your own!
Surely you know exactly what you want. It shouldn't be too difficult to just throw something together. In fact, some of the languages nowadays are so easy to follow, it should be a breeze. I found a tutorial that should hopefully get you down the right path.
-
DirectX and id???
Since when was id a fan of DirectX, let alone Direct3D? (If this sentence doesn't make any sense, you didn't watch the video) An article from the time clearly show's id's lead engine developer, John Carmack in complete opposition to the Direct3D API. I haven't followed things after that, but let's assume the API hasn't gotten any simpler, especially with all the new shading specifications.
-
Re:Those are not the laws of optimization I learne
Those rules seem inflexible to me, and sound like rules a professor would tell his students when he is tired of reading their unreadable attempts at optimization. Optimization is really useful if you need your program to go faster. Of course, if you don't know how to optimize, you will have trouble. Here is a very good page by Paul Hsieh about optimization:
http://www.azillionmonkeys.com/qed/optimize.html -
Assembly is not slower....
Actually, odds are that hand written assembly will underperform compiled c these days. Hiring or training people that can write better assembler than a modern compiler is very very difficult.
Have you written much assembly? Modern assembly focuses a lot on memory access optimization (caching, etc), and parallel programming, and compilers tend to have trouble with that. On a webpage by Paul Hsieh you may find this quote:
Most assembly programmers are neither knowledgable or good, but those who are knowledgable and good have little trouble beating compilers.
http://www.azillionmonkeys.com/qed/optimize.html -
Re:Automate it
Well completely automating it is probable not the right answer. Often people will submit a link to a
.HTML page, which itself links to the larger file (like a movie) that causes their server to run out of bandwidth.
The Coral cache will only cache the top-most link -- and its actually left to the HTML author to coral cache the final contents. An example is a page I wrote here:
Thank you
The root html file is not cached at all, but its fairly small, so I'm not worried about it. All those pictures though? There ain't no way I would post such a link in slashdot if I had to pay for the bandwidth to serve up those pictures myself!
So this is really a message to HTML authors and slashdot story submitters. -
You mean like this?
-
Re:the whole thing makes me wonder market shares
Please read about Carmack's battle with D3D and Microsoft. The bottom line is that he's the main reason that we've still got OpenGL. This technology enables game developers to deploy 3D gaming engines to multiple platforms quite easily.
Make no bones about it - there is no substantial non-Windows gaming market. No sir. Carmack does this for two reasons - because he can and because it really throws mud in the eye of Microsoft.
As a side note, if you haven't purchased this game, then go out and do so... even if you won't use it. Without id software (and some other keys), gaming would be Windows-only right now. -
Re:until
- GCC is no slouch though [...]
- [...] and obviously Intel is performing some tricks that could also be implemented by GCC.
-
Mod parent down..and me up:
"Microsoft - like any other big company tending a big market - tries to please them, not piss them off!"
Paul Hsieh's OpenGL versus Direct3DLearn to link. While copypasteing is annoying enough, these anti-page-widening spaces
/. inserts make it unbearable. -
A tribute to the FCC.
-
Re:In a word, no
If we do have a logo, I think it should be a vector rendered shilouete of a fat, unwashed, unshaven hacker sitting in front of a PC.
Well how about a bitmapped one to start with? -
Re:5177 MFLOPS 288 MFLOPS
Someone please explain to me how 5177 MFLOPS and ~300 MFLOPS are even comparable.
Argh! Totally the wrong way to interpret the article.As the Mathematica guy said, the competition is no longer high-end PCs, it's now $10,000 UNIX workstations...and the G5 is still faster than any of them.
Single CPU scalar benchmark
P4 2.66 Ghz --> 255 MFLOPS
G5 2.00 Ghz --> 254 MFLOPS
Then the guy basically switches on the part of his code (developed on a G4) that use Altivec (Apples SIMD instruction/pipeline), and wammo, reasonably good MFLOPS numbers (2755 MFLOPS) ensue (any modern processor can get over 1000 MFLOPS with suitably written code).
This guys code is parallelized (nice), so with the 2nd processor on he gets more done, hence 5177 MFLOPS.
But there isn't a intel or AMD comparison for the vector tests, cos his code doesn't seem to have been written to use their SIMD instruction sets. The Intel and AMD pundits claim their SIMD architecture is superior to Apple's (e.g. see discussion in this article).
As the author of these benchmarks himself states
Based on an extrapolation of current P4 results, the 2GHz G5 would lag newly announced 3.2GHz P4 systems in Jet3D scalar floating point performance by about 20%, but this kind of comparison is best deferred until G5-aware compiler tools become available (since a 20% performance gain is well within the potential of compiler optimization).Finally, it is important to note that the current test does not factor machine cost or intended use into the picture, and that can have a large impact, especially in clustering applications.
I.e. a G5 is probably comparable to a top-end desktop 32bit PC for joe blogs applications once the small changes from G4-to-G5 specific optimizations take effect. A comparison of suitably SIMD-aware number crunching applications is still needed to evaluate absolute speed. Processor power per unit dollar cost is another issue that the author hints at, which is probably not in Apple's favor.
-
Re:Why do Microsoft reviewers always sound...
Rest of the gaming industry? From my viewpoint it was Carmack alone.
He certainly started it but many agreed, and continue to agree with him.
OpenGL certainly wasnt (and still isnt in many cases) faster on consumer level cards.
Speed wasn't the primary concern to him, it was the design and functionality of the two APIs.
An excellent chronology of that period (Christmas 96 to around October 97) can be found here.
By and large 3D gaming was being written for glide, and developers absolutely loved an open api specifically targetted for game development.
At first. But when 3dfx kept pushing our their GL drivers - and actively targeting with lawsuits any developers who dared to write wrappers - the time was ripe for a change, and it came with the TNT. -
Re:19" iMac
Spare us of your Apple-propaganda bullshit and go enlighten yourself here.
-
Hah! Speaking of a "switch" campaign that delivers
While Apple is certainly having a nice product in their hands, they often are too pushy with their adds, and have the tendency to skew the facts...
On the other hand, while Linux OS certainly has its own share of FUD zealotry, this kind of thing certainly brings a smile to my face:
1.1+ Million switchers in one day, try to beat that :-)!
P.S. For Apple zealots out there... you may insert your fav flame below this line: -
Re:Spare Cycles @ Work
I don't understand why companies don't include such things on new PCs as an option. Just include the
It's a good idea, but which ones do you choose? SETI? Folding@Home? Mersenne? There are tons of distributed computing projects - who do you include, and who do you leave out? I would imagine that AOL, Earthlink, and others have paid a set amount to put their icons on the desktop of new PCs. Giving away "desktop real-estate" on their new PC's might reduce the price they can command from other customers. .EXE file for Folding@Home (or one of the lesser projects :), a link on the desktop and an explanation of what the user can do with his/her idle CPU time. The number crunching power of millions upon millions of PCs wouldn't go to waste. :) -
integer square root
If you still need a decent integer square root algo, check out this page. I used the mborg_isqrt2 variant on that page as a starting point for writing my highly optimized Intellivision version for SDK-1600. My optimized version takes about 600 - 700 cycles for a 16-bit square root, on a machine where most operations take 6 to 8 cycles. (The version I was replacing took 4000 - 10000 cycles.)
This book looks like it might be interesting to me. Here at work, we had our own math expert, but he's retired (or semi-retired). We've contracted with him to do math libraries, and that works for now. But what about 10 years from now? There's a lot of subtlety in some of these algorithms (it's not always just as easy as whipping through a Taylor series expansion), so it's probably time someone in our group started learning.
--Joe :-) -
Re:3k or 3 PCs?
You mean like this?
-cscx (posting as an AC with no thanks to Fuck-O The Wonder Moderator, who decided to slaughter my karma... thanks for the communist IP ban, guys!) -
Re:Numerical FUD
FUD is a fact of life. As a hacker I don't like FUD, either, but it should be clear that you can't fight Microsoft FUD with conventional or even logical arguments. FUD, sadly, is the only way to go.
Microsoft is scared shitless about open source, and what it can do to its unethical monopoly. Calling Microsoft's FUD for what it is hasn't even made them flinch. The only thing that management listens to, after all, is FUD, so what reason should stop Open Source from making FUD arguments against the Evil Empire?
Let's face it, people in management and people who don't know better have only emotions to rely upon. I don't see anything particulary wrong with creating some FUD to cloud those emotions and make them look at the facts that Microsoft is run by a megalomaniac who wants to have legal authority to basically become the first global internet government, supported by taxes like renewable licensing.
-
Re:For those of us youngins...
Take a look at the Watcom C/C++ FAQ, here. Particularly the answers to questions 1, 2, 6, 10, and 12 should interest you.
-
Re:but we already have directx
Direct3D? You mean that horribly inefficient, overly complex, counterintutive API wrapper? Spend a day learning OpenGL, and a day learning Direct3D. By the end of the first day, you'll be creating whirling, swirling explosions of color and light with OpenGL, and you'll still be trying to figure out how to get Direct3D to display in 8-bit color. Not to mention, OpenGL makes much more efficient use of your processor. Go here for more information about this. OpenGL is THE API wrapper of choice if you want ease of use, power, flexibility, and compatibility. Try a game in Direct3D and a game in OpenGL on a GeForce-based card (all the other cards have crap OpenGL drivers, IMHO). OpenGL will not only run faster, but look smoother as well. Direct3D, while having been improved over the years, is still utter trash. Go here for a good source of information and history over the D3D vs. OpenGL debate.
-
Re:Um....yeah, volum also brought us x86
Nobody needs to prove that D3D (that's what we're really talking about, isn't it?) is crap. John Carmack has already done that for us.
-
Source can be obfuscated. [source is expressive]1. Why and how is a computer program expressive speech? What does it express? 2600's lawyers are entirely familiar with Touretzky's Gallery, so forget about those. Assume you have some C or perl staring at you, any random block of code in any random print-out. What does it express? Why should that code be protected expression?
Source code is obfuscatable. I found a tool called 'shroud' with a quick google search, there are probably other similar tools. According to this FAQ watcom provides it for customers that send in bug reports
If source would be purely functional, then obfuscating it before sending it to an untrusted third party would be meaningless
It's an argument from another point of view, it doesn't require any understanding of software at all
-
Finally... a story where this is *not* offtopic...and I'm asleep at the keyboard. Doh!
Oh well... here it is.
Add your own, and spread this far and wide:ftp://ftp.u.washington.edu/public/arobs
/css
ftp://sun.rl.odessa.ua/pub/decss
http://130.111.75.63:142
http://216.35.100.9/ma/kdawson/deecessess
http://24.114.168.235/public/css.htm
http://24.15.107.67/DeCSS
http://24.6.244.114/DeCSS
http://2600.dk/mirrors/css
http://334.se2600.org
http://DVDoutrage.Tripod.com
http://MSD.dyndns.org
http://alcor.concordia.ca/~sd_fort
http://amergeisaphreak.netfirms.com
http://andrewstern.freeservers.com/decss
http://artun.ee/~rommi/css
http://benyossef.com/freedom
http://bigpoppa.adsl.alpha1.net/decss
http://briefcase.yahoo.com/clcktwr
http://briefcase.yahoo.com/klflatt
http://budice.ancients.net/decss
http://budsmoker.com/sites/decss
http://bur-jud-118-039.rh.uchicago.edu/d vd
http://cant-stop-us-all.freehosting.net
http://chaz.fsgs.com/misc/DvD
http://chemlab.org/~dvd
http://cherryville.org/dvd
http://come.to/intelex
http://cs.unca.edu/~dillzc/decss
http://css.choppy.com/data
http://cssalgorithm.8m.com
http://cybertrippin.net
http://cymorg.bizland.com/index2.html
http://dB.org/dvd
http://dandruff.cs.unm.edu/~bap/DeCSS
http://darklord.darkthrone.com/users /smith/dvd
http://darkwing.uoregon.edu/~homeyd/DVD
http://dcwi.com/~wench/decss
http://debian.mps.krakow.pl/mirror/css http://decss.8m.com
http://decss.cx
http://decss.cyvoid.net
http://decss.fall0ut.com
http://decss.freeservers.com
http://decss.freeshell.org
http://decss.fzylogic.net
http://decss.htmlplanet.com
http://decss.netfirms.com
http://decss.z-man.org
http://decss_files.tripod.com
http://decssmirror.homestead.com
http://deelbeson.detour.net
http://dephile.hypermart.net
http://dephile.hypermart.net/dvdinfo.html
http://developer.dnepr.net/dvdcss
http://dialug.org/html/decss.html
http://dirtass.beyatch.net
http://dlsf.org
http://dogh ousepages.lycos.com/collecting/midnightrider/DVDEn crypt.html
http://donotsueme.freeservers.com
http://donotsueme.homepage.com
http://dosdemon.yi.org/decss
http://dsl129.drizzle.com:2001/downloa ds/DVD
http://dvd.coolpeople.dhs.org
http://dvd.k4dwi.net/dvd
http://dvd.loathe.com
http://dvdcopy.cjb.net
http://dvdcrack.homepage.com
http://dvdcss.newmail.ru
http://earendel.gt.ed.net/dvd
http://ebmedia.net/dvd
http://elknews.netpedia.net/dvd
http://fairuse.freeservers.com
http://freedecss.50megs.com
http://freemymind.homepage.com
http://freeshell.org/~simm
http://friko6.onet.pl/war/mkochano
http://ftp.yodanet.schwaebischhall. de/pub/DeCSS
http://ftso.org/decss
http://geocities.com/donquix0te
http://geocities.com/dontquit222
http://go.to/decss
http://go.to/nairos_dvd
http://hammer.prohosting.com/~deepbleu http://heavymusic.8m.com
http://heky.org/dc
http://home.att.net/ ~phreakonaleash/ccs_mirror--screw_the_feds
http://home.clara.net/bangor/DeCSS
http://home.cyberarmy.com/drj/DeCSS
http://home.cyberarmy.com/enac/dvden crypt.html
http://home.earthlink.net/~kaos_inc
http://home.earthlink.net/~rocketrob
http://home.earthlink.net/~snagnbytz
http://home.monet.no/~christel/dvd.html
http://home.onestop.net/lakitu/mirror
http://home.pacbell.net/pfconces
http://home.postnet.com/~wsl3/DeCSS
http://home.primus.com.au/ratzmilk
http://home.rmci.net/bert/dvd
http://home.rmci.net/bert/fuckthelawyers
http://home.sol.no/~craphead/DVD
http://home.worldonline.dk/~loadfree/CSS
http://homepage.dtn.ntl.com/paul.chan
http://homepages.ihug.co.nz/~cbunton
http://imezok.tripod.com/Untitled.txt
http://imprint.uwaterloo.ca/dvd
http://inferno.tusculum.edu/~neil/decss
http://internettrash.com/users/linuxdvd
http://intfreedom.homepage.com
http://io.spaceports.com/~decss
http://isupport2600.8m.com
http://jackvalenti-ismyhoe.tripod.com
http://jadin.virtualave.net
http://jump.to/decss
http://jupiter.spaceports.com/~decss
http://kb5kjn.karco.org/~alpine/DVD
http://kesagatame.tripod.com
http://kevins.ne.mediaone.net/~kevins/dvd
http://killer.radom.net/~shoggoth/dvd.ht ml
http://linux.uci.agh.edu.pl/~outlaw/ decss.html
http://loogham.2y.net/decss
http://magic.hurrah.com/~fireball/dvd
http://mail.sirak.org
http://matt.frogspace.net/css
http://members.aol.com/_ht_a/jwhite80 55/DeCSS
http://members.home.net/dgweb
http://members.hometown. aol.com/_ht_a/MysticJTY/myhomepage
http://members.theglobe.com/Greed yMan/greedy.html
http://members.tripod.co.uk/SneakyBat
http://members.tripod.com/donotsueme
http://members.tripod.com/donquix0te
http://members.tripod.com/ny2600
http://members.tripod.com/r-sobin/dvd
http://members.tripod.com/~Denney/DeCSS
http://members.tripod.com/~baloney97/dvd
http://members.tripod.com/~lucvdb/decs s.html
http://members.tripod.com/~sk8or311
http://members.xoom.com/CaitSith16/DeC SS.htm
http://members.xoom.com/LinuxDVD
http://members.xoom.com/NiKeX
http://members.xoom.com/amateursoft
http://members.xoom.com/arjicle
http://members.xoom.com/chapter3/Mamma No.htm
http://members.xoom.com/freedvdinfo
http://members.xoom.com/get_decss
http://members.xoom.com/iamkeenan/master
http://members.xoom.com/iox
http://members.xoom.com/maud123/Home/C SS.htm
http://members.xoom.com/mogreen/decss
http://members.xoom.com/nyc2600
http://members.xoom.com/phireproof
http://members.xoom.com/s_o_sam/help.html
http://members1.chello.nl/~o.seibert/DeC SS
http://merlinjim.freeservers.com/dvd
http://mikedotd.penguinpowered.com/deccs
http://mikedotd.penguinpowered.com/decss
http://mikepark.org
http://mpaasucks.homepage.com
http://natara.freeservers.com/decss/ decss.html
http://ndez.bizland.com/css-auth
http://neil.gotlinux.org
http://netmanor.iboost.com/zachgoss/s imm.html
http://nomoredvd.tripod.com
http://ny2600.iwarp.com
http://nycsoftware.com/MirrorList.asp
http://osiris.978.org/~brianr/css
http://pages.hotbot.com/arts/weknow
http://pages.hotbot.com/edu/silex/mir ror.html
http://pcmania.bg/9-99/mortyr/_vti_ cnf/_vti_pvt
http://people.mn.mediaone.net/bojay/sl ashdot
http://people.mn.mediaone.net/si mulacrum/decss.htm
http://people.ne.mediaone.net/cy berwave/DeCSS.html
http://people.ne.mediaone.net/dantepsn http://personalweb.smcvt.edu/wtaylo r/decss.html
http://planeta.clix.pt/DJ_AmAzInG/DVD
http://primate.net/DVD
http://pyrrhic.8m.com/DeCSS
http://quintessenz.at/q
http://rha.housing.niu.edu/~davebb/css- auth
http://rlk.ch.utoledo.edu/DVD
http://sadennes.is.dreaming.org/hanadu http://saturate.org/decss.asp
http://saturn.spaceports.com/~brainz/DVD
http://screw_MPAA.tripod.com
http://sektor1.dhs.org/decss.html
http://sites.onlinemac.com/beback
http://sites.uol.com.br/decss
http://smokering.org
http://st-bart.net
http://strange.8k.com
http://stunman.iwarp.com
http://stuweb.ee.mtu.edu/~krcalh oo/DeCSS/DeCSS.htm
http://sweet.as/decss
http://tatooine.fortunecity.com/moorco ck/337
http://telnet.stealth.kirenet.com/~star /dvd
http://the.wiretapped.net/wt/dvd
http://theannux.homestead.com/decss.html
http://thesanitarium.n3.net
http://ts1.online.fr/dvd
http://underground.pl/dvd
http://users.1st.net/roundhere/decss
http://users.1st.net/roundhere/decss /index.htm
http://users.bigpond.net.au/nf/dvd
http://users.pandora.be/glenn.plas/dvd http://vandenborre.org
http://vedaa.tripod.com/decss.html
http://w1.1634.telia.com/~u163400190
http://wakeupthe.net/dvd
http://warpedreality.members.easyspace.c om
http://website.lineone.net/~kellypink/D eCSS
http://werewolf12.cjb.net
http://wildsurge.a2000.nu/decss
http://wiw.org/~drz/css
http://wusn-members.xoom.com/ambisagrus
http://www.19f.org/dvd.html
http://www.2600.org.au/dvd.html
http://www.UnderTheStairs.com
http://www.adulation.net/css
http://www.agybby.com/dvd
http://www.algonet.se/~skeleton/other.ht ml
http://www.alltel.net/~ledwards/css.htm
http://www.amerisuk.com/~carbon/css.html
http://www.angelfire.com/biz5/revblack http://www.angelfire.com/electronic/drug me
http://www.angelfire.com/ga3/acidlocke http://www.angelfire.com/hiphop/rawkus http://www.angelfire.com/in/sight
http://www.angelfire.com/mb/DVDoutrage http://www.angelfire.com/movies/DeCss
http://www.angelfire.com/movies/dvdiss http://www.angelfire.com/movies/mpaasucks
http://www.angelfire.com/nh/panzah
http://www.angelfire.com/ny3/ny2600
http://www.angelfire.com/or2/buzzkill
http://www.angelfire.com/pe/sh3/deccs
http://www.angelfire.com/pokemon/decss http://www.angelfire.com/punk/DeCSS/DeCSS
http://www.angelfire.com/punk/freedom
http://www.angelfire.com/scifi/dblagbro
http://www.angelfire.com/sk2/braindamage
http://www.angelfire.com/tx3/winger s/decss.html
http://www.angelfire.com/vt/bigbrother http://www.angelfire .com/wa2/phederalphelony/breakingnews.html
http://www.angelfire.com/wy/leggosfun /dvd.htm
http://www.angelfire.com/yt/mpaasucks
http://www.angelfire.com/zine/DeCSS
http://www.artnotart.com/anne/decss.html
http://www.asleep.net/dvd
http://www.asylum.webprovider.com
http://www.auntfloyd.com/DeCSS
http://www.auracom.com/~rhomac/dvd
http://www.azillionmonkeys.c om/qed/recess_for_css.html
http://www.best.com/~drumz/decss
http://www.bugbbq.org/decss
http://www.capital.net/~mazzic
http://www.charm.net/~dutch
http://www.chello.nl/~f.vanwaveren
http://www.cognitronics-tech.com
http://www.conspiracynow.com/theories/d ecss
http://www.constant.demon.co.uk
http://www.copkiller.org
http://www.corecomm.net/~davebb/css-auth
http://www.corova.com/dvd
http://www.cpinternet.com/~jhanson
http://www.crosswinds.net/oakland/~ahrendt/Lawyers _are_scu m-sucking_pigs [...]
http://www.crosswinds.net/~dvdcrack
http://www.cs.cmu.edu/~dst/DeCSS
http://www.cs.tu-berlin.de/~feise/DeCSS
http://www.csd.net/~cgadd/dvd.htm
http://www.csl.mtu.edu/~pdl athro/filez/DeCSS/DeCSS.html
http://www.ct2600.org/2600-DVD.html
http://www.cybertrippin.net
http://www.cyperspace.org/~multicom
http://www.december.ndo.co.uk
http://www.deforest.org/CSS
http://www.deprecated.org
http://www.dgw3.com/dvd
http://www.discountwebhost.com/decss
http://www.divisionbyzero.com/decss
http://www.dodgenet.com/~nickz/decss
http://www.ductape.net/~alpha/decss
http://www.duffbrew.com/decss
http://www.execpc.com/~unicorn/dvdmirr or.htm
http://www.firstlight.net/~clarka/decss
http://www.flypop.com
http://www.fortunecity.com/skyscrap er/coax/1107
http://www.fortunecit y.com/skyscraper/motorola/1415/decss.htm
http://www.fortunecity.com/vic torian/parkwood/95/DVD
http://www.frankw.net/decss
http://www.free-dvd.org.lu
http://www.freebox.com/zcedri
http://www.freeyellow.com/members8/mpa aidiot
http://www.fsp.com
http://www.futureone.com/~damaged
http://www.geekbits.com/decss
http://www.geocities.com /CollegePark/3807/2600Tribute.html
http://www.geocities.com/Ongakka/rebel. html
http://www.geocities.com/Pipeline /Curb/1232/DeCSS
http://www.geocities.com/Res earchTriangle/Station/2819
http://www.geocities.com/Shapierian
http://www.geocities.com/Silic onValley/Hardware/6188
http://www.geocities.com/SiliconV alley/Modem/4192
http://www.geocities .com/SiliconValley/Ridge/3727/2600/dvd.htm
http://www.geocities.com/Silic onValley/Software/3971
http://www.geocities.com/Silic onValley/Software/8762
http://www.geocities.com/SoHo/5258/de css.html
http://www.geocities.com/SoHo/Exhi bit/5771/decss
http://www.geocities.com/ SunsetStrip/Underground/3587/dvd
http://www.geocities.com/Ti mesSquare/Dome/4021/dvd.html
http://www.geocities.com/cold_dvd
http://www.geocities.com/corporatemin dcontrol
http://www.geocities.com/dba3297
http://www.geocities.com/decss2
http://www.geocities.com/decss_2000
http://www.geocities.com/decss_forever http://www.geocities.com/decss_mirror
http://www.geocities.com/djph3ad/decss http://www.geocities.com/donquix0te
http://www.geocities.com/duck_ohm
http://www.geocities.com/dvdcracked
http://www.geocities.com/dvdfightback
http://www.geocities.com/dvdrevolution http://www.geocities.com/dvdsuit/dvd
http://www.geocities.com/dvdthings
http://www.geocities.com/epoxy_css
http://www.geocities.com/fairusedecss
http://www.geocities.com/fr33dvd
http://www.geocities.com/getyourdvd
http://www.geocities.com/ghaniali
http://www.geocities.com/iwantdvd
http://www.geocities.com/k4dwi/dvd
http://www.geocities.com/k4wi/dvd
http://www.geocities.com/ma dasian2000/decss_mirror.html
http://www.geocities.com/mastaflame
http://www.geocities.com/meluchwj
http://www.geocities.com/mydefiance
http://www.geocities.com/necready433
http://www.geocities.com/necready433/dvd
http://www.geocities.com/neurosis_dvd
http://www.geocities.com/opendvdecss
http://www.geocities. com/siliconvalley/computer/2303/DVD.html
http://www.geocities.com/soho/studios/67 52
http://www.geocities.com/solidex
http://www.geocities.com/verruktesten
http://www.geocities.com/warrdragon_2000
http://www.geocities.com/watice2
http://www.geocities.com/whackmol
http://www.geocities.com/xtridzz
http://www.gl.umbc.edu/~awirth1/decss
http://www.glue.umd.edu/~castongj
http://www.hackunlimited.com/dvd
http://www.hakor.com/DVD
http://www.hellnet.org.uk/decss.htm
http://www.hobbiton.org/~tpm
http://www.hote.qc.ca/dvd
http://www.hotsoupmedia.com/decss
http://www.idrive.com/decss/web
http://www.iinet.net.au/~matlhdam/DeCSS
http://www.image.dk/~mbp
http://www.imsoelite.com/dvd
http://www.infa.abo.fi/~raine/pub/ software/DeCSS
http://www.ironbrick.com/decss
http://www.ismokecrack.com
http://www.jabberwocky.eyep.net/decss.ht ml
http://www.k4dwi.net/dvd
http://www.kentroad.demon.co.uk/decss
http://www.kiss.uni-lj.si/~k4ef1890/css
http://www.kki.net.pl/~rsr66/css
http://www.koek.net/dvd
http://www.krackdown.com/decss
http://www.lemuria.org/DeCSS
http://www.lifesolo.com/bin
http://www.linuxnerd.net/decss
http://www.linuxstart.com/~kv ance/projects/decss.html
http://www.linuxstart.com/~sys_admin
http://www.lockpicking.nl/decss
http://www.mafkees.com/dvd
http://www.mayday2000.org.uk/decss.htm http://www.members.tripod.com/dkdecss
http://www.mindspring.com/~coueys
http://www.mindspring.com/~stonethrower
http://www.multimania.com/sxpert/decss http://www.mykle.com/DVD
http://www.myshed.net/dvd
http://www.nacs.net/~vodak/dvd
http://www.netby.net/Oest/Hva lfiskegade/jana/css.html
http://www.netspace.net.au/~gromit
http://www.networksplus.net/blogg
http://www.neurosis.org/dvd
http://www.nsnva.pvt.k12.va.us/~abc
http://www.ntsmedia.com/decss
http://www.nvhs.nl/decss
http://www.nwu.edu/people/ldb/decss.html
http://www.oblivion.net/~amar/css
http ://www.oksanen.net/ville/this_is/under/Finnish/jur isdiction/otherstuff.htm
http://www.olen.net/deCSS
http://www.oz.net/~tvaughan
http://www.pages.drexel.edu/~jer24
http://www.penismightier.com/weisha upt/dvd.html
http://www.pepper-land.net
http://www.philter.com/DVD
http://www.pippy.itgo.com
http://www.posexperts.com.pl/people /wrobell/css
http://www.projectbullshit.com/decss.html
http://www.projectgamma.com/deccs
http://www.qix.net/~pheonix/decss.html http://www.ratol.fi/~asiipola
http://www.reapers.org
http://www.redgnatt.homestead.com
http://www.redrival.com/chimx/computer s.html
http://www.robotslave.net
http://www.rpi.edu/~jettea/dvd.html
http://www.rz.uni-frankfurt.de/~marsie http://www.scwc.net/DeCSS
http://www.sealteamsix.com/phagan
http://www.sk3tch.com/freedecss
http://www.smackfu.com/decss
http://www.spin.ch/~rca/decss
http://www.stanford.edu/~drumz/decss
http://www.stupendous.org
http://www.subcor.com
http://www.swcp.com/~ampere
http://www.tar.hu/decss
http://www.teamnismo.com/2600
http://www.underwhelm.org/decss
http://www.users.on.net/johnm/DeCSS
http://www.uwm.edu/~zachkarp
http://www.vent-soft.com/dvd
http://www.vexed.net/CSS
http://www.visi.com/~adept/liberty
http://www.vulgar.net/dvd
http://www.warren-wilson.edu/~echerry/dvd
http://www.webnx.com/tuna
http://www.webzsite.com/decss
http://www.wizardworkshop.com
http://www.wolfpaw.net/~decss
http://www.worldcity.nl/~frank/dvd
http://www.wwcn.org/~grit/free
http://www.xs4all.nl/~oracle/dvd
http://www.xs4all.nl/~rasch/dvd
http://www.zeal.net/~pyro/DeCSS
http://www.zip.com.au/~zzz/dvd
http://www.zone.ee/DeCSS
http://www3.50megs.com/dvd4freeThis announcement brought to you by the DeCSS Polar Bear.
-
Time for Slashdot to take a stand...
The following is a list of all the mirrors from the 2600 site.
Slashdot has long been one of the best true forums for free speech in the world. Link to this comment. Post that link on your website and everywhere. CmdrTaco archives these comments indefinitely, right? Lets see the MPAA take on Slashdot, Andover, and the ACLU (who I'm assuming would back you guys up) BTW: When I click the "Post Anonymously" button, is there any way to retrieve my IP address, or my login info? I sure as hell hope not. Big risk I'm taking here for the sake of free speech... but we gotta do what we gotta do. Right?
ftp://ftp.u.washington.edu/public/arobs /css
ftp://sun.rl.odessa.ua/pub/decss
http://130.111.75.63:142
http://216.35.100.9/ma/kdawson/deecessess
http://24.114.168.235/public/css.htm
http://24.15.107.67/DeCSS
http://24.6.244.114/DeCSS
http://2600.dk/mirrors/css
http://334.se2600.org
http://DVDoutrage.Tripod.com
http://MSD.dyndns.org
http://Winmac.tripod.com/DECSS/decss.zip
http://alcor.concordia.ca/~sd_fort
http://alsscan.webjump.com/DeCSS.zip
http://alsscan.webjump.com/DeCSS.zip
http://amergeisaphreak.netfirms.com
http://andrewstern.freeservers.com/decss
http://artun.ee/~rommi/css
http://benyossef.com/freedom
http://bigpoppa.adsl.alpha1.net/decss
http://briefcase.yahoo.com/clcktwr
http://briefcase.yahoo.com/klflatt
http://budice.ancients.net/decss
http://budsmoker.com/sites/decss
http://bur-jud-118-039.rh.uchicago.edu/d vd
http://cant-stop-us-all.freehosting.net
http://chaz.fsgs.com/misc/DvD
http://chemlab.org/~dvd
http://cherryville.org/dvd
http://come.to/intelex
http://cs.unca.edu/~dillzc/decss
http://css.choppy.com/data
http://cssalgorithm.8m.com
http://cybertrippin.net
http://cymorg.bizland.com/index2.html
http://dB.org/dvd
http://dandruff.cs.unm.edu/~bap/DeCSS
http://darklord.darkthrone.com/users /smith/dvd
http://darkwing.uoregon.edu/~homeyd/DVD
http://dbzauctions.tripod.com/decss.zip
http://dcwi.com/~wench/decss
http://debian.mps.krakow.pl/mirror/css
http://decss.8m.com
http://decss.cx
http://decss.cyvoid.net
http://decss.fall0ut.com
http://decss.freeservers.com
http://decss.freeshell.org
http://decss.fzylogic.net
http://decss.htmlplanet.com
http://decss.netfirms.com
http://decss.z-man.org
http://decss_files.tripod.com
http://decssmirror.homestead.com
http://deelbeson.detour.net
http://dephile.hypermart.net
http://dephile.hypermart.net/dvdinfo.html
http://developer.dnepr.net/dvdcss
http://dialug.org/html/decss.html
http://dirtass.beyatch.net
http://dlsf.org
http://dogh ousepages.lycos.com/collecting/midnightrider/DVDEn crypt.html
http://donotsueme.freeservers.com
http://donotsueme.homepage.com
http://dosdemon.yi.org/decss
http://dsl129.drizzle.com:2001/downloa ds/DVD
http://dvd.coolpeople.dhs.org
http://dvd.k4dwi.net/dvd
http://dvd.loathe.com
http://dvdcopy.cjb.net
http://dvdcrack.homepage.com
http://dvdcss.newmail.ru
http://earendel.gt.ed.net/dvd
http://ebmedia.net/dvd
http://elknews.netpedia.net/dvd
http://fairuse.freeservers.com
http://freedecss.50megs.com
http://freemymind.homepage.com
http://freeshell.org/~simm
http://friko6.onet.pl/war/mkochano
http://ftp.yodanet.schwaebischhall. de/pub/DeCSS
http://ftso.org/decss
http://geocities.com/donquix0te
http://geocities.com/dontquit222
http://go.to/decss
http://go.to/nairos_dvd
http://hammer.prohosting.com/~deepbleu
http://heavymusic.8m.com
http://heky.org/dc
http://home.att.net/ ~phreakonaleash/ccs_mirror--screw_the_feds
http://home.clara.net/bangor/DeCSS
http://home.cyberarmy.com/drj/DeCSS
http://home.cyberarmy.com/enac/dvden crypt.html
http://home.earthlink.net/~kaos_inc
http://home.earthlink.net/~rocketrob
http://home.earthlink.net/~snagnbytz
http://home.monet.no/~christel/dvd.html
http://home.onestop.net/lakitu/mirror
http://home.pacbell.net/pfconces
http://home.postnet.com/~wsl3/DeCSS
http://home.primus.com.au/ratzmilk
http://home.rmci.net/bert/dvd
http://home.rmci.net/bert/fuckthelawyers
http://home.sol.no/~craphead/DVD
http://home.worldonline.dk/~loadfree/CSS
http://homepage.dtn.ntl.com/paul.chan
http://homepage.interacces s.com/~mycroft/decss/DeCSS.zip
http://homepages.go.com/homepages /4/0/3/403_error
http://homepages.ihug.co.nz/~cbunton
http://imezok.tripod.com/Untitled.txt
http://imprint.uwaterloo.ca/dvd
http://inferno.tusculum.edu/~neil/decss
http://internettrash.com/users/linuxdvd
http://intfreedom.homepage.com
http://io.spaceports.com/~decss
http://isupport2600.8m.com
http://jackvalenti-ismyhoe.tripod.com
http://jadin.virtualave.net
http://jump.to/decss
http://jupiter.spaceports.com/~decss
http://kb5kjn.karco.org/~alpine/DVD
http://kesagatame.tripod.com
http://kevins.ne.mediaone.net/~kevins/dvd
http://killer.radom.net/~shoggoth/dvd.ht ml
http://leeroy.webjump.com/DeCSS.zip
http://linux.uci.agh.edu.pl/~outlaw/ decss.html
http://logical-solutions.com.au/DeCSS.zip
http://loogham.2y.net/decss
http://magic.hurrah.com/~fireball/dvd
http://mail.sirak.org
http://matt.frogspace.net/css
http://members.aol.com/_ht_a/jwhite80 55/DeCSS
http://members.home.net/dgweb
http://members.hometown. aol.com/_ht_a/MysticJTY/myhomepage
http://members.theglobe.com/Greed yMan/greedy.html
http://members.tripod.co.uk/SneakyBat
http://members.tripod.com/donotsueme
http://members.tripod.com/donquix0te
http://members.tripod.com/ny2600
http://members.tripod.com/r-sobin/dvd
http://members.tripod.com/~Denney/DeCSS
http://members.tripod.com/~baloney97/dvd
http://members.tripod.com/~lucvdb/decs s.html
http://members.tripod.com/~sk8or311
http://members.xoom.com/CaitSith16/DeC SS.htm
http://members.xoom.com/LinuxDVD
http://members.xoom.com/NiKeX
http://members.xoom.com/amateursoft
http://members.xoom.com/arjicle
http://members.xoom.com/chapter3/Mamma No.htm
http://members.xoom.com/freedvdinfo
http://members.xoom.com/get_decss
http://members.xoom.com/hairfro/DeCSS.zip
http://members.xoom.com/iamkeenan/master
http://members.xoom.com/iox
http://members.xoom.com/maud123/Home/C SS.htm
http://members.xoom.com/mogreen/decss
http://members.xoom.com/nyc2600
http://members.xoom.com/phireproof
http://members.xoom.com/s_o_sam/help.html
http://members1.chello.nl/~o.seibert/DeC SS
http://merlinjim.freeservers.com/dvd
http://mikedotd.penguinpowered.com/deccs
http://mikedotd.penguinpowered.com/decss
http://mikepark.org
http://mpaasucks.homepage.com
http://natara.freeservers.com/decss/ decss.html
http://ndez.bizland.com/css-auth
http://neil.gotlinux.org
http://netmanor.iboost.com/zachgoss/s imm.html
http://noc.res.cmu.edu
http://nomoredvd.tripod.com
http://ny2600.iwarp.com
http://nycsoftware.com/MirrorList.asp
http://osiris.978.org/~brianr/css
http://pages.hotbot.com/arts/weknow
http://pages.hotbot.com/edu/silex/mir ror.html
http://pcmania.bg/9-99/mortyr/_vti_ cnf/_vti_pvt
http://people.mn.mediaone.net/bojay/sl ashdot
http://people.mn.mediaone.net/si mulacrum/decss.htm
http://people.ne.mediaone.net/cy berwave/DeCSS.html
http://people.ne.mediaone.net/dantepsn
http://personalweb.smcvt.edu/wtaylo r/decss.html
http://planeta.clix.pt/DJ_AmAzInG/DVD
http://primate.net/DVD
http://pyrrhic.8m.com/DeCSS
http://quintessenz.at/q
http://rha.housing.niu.edu/~davebb/css- auth
http://rlk.ch.utoledo.edu/DVD
http://sadennes.is.dreaming.org/hanadu
http://saturate.org/decss.asp
http://saturn.spaceports.com/~brainz/DVD
http://screw_MPAA.tripod.com
http://sektor1.dhs.org/decss.html
http://sites.onlinemac.com/beback
http://sites.uol.com.br/decss
http://smokering.org
http://sophien.webjump.com/css-auth_tar. gz
http://st-bart.net
http://strange.8k.com
http://stunman.iwarp.com
http://stuweb.ee.mtu.edu/~krcalh oo/DeCSS/DeCSS.htm
http://sweet.as/decss
http://tatooine.fortunecity.com/moorco ck/337
http://telnet.stealth.kirenet.com/~star /dvd
http://the.wiretapped.net/wt/dvd
http://theannux.homestead.com/decss.html
http://thesanitarium.n3.net
http://ts1.online.fr/dvd
http://underground.pl/dvd
http://users.1st.net/roundhere/decss
http://users.1st.net/roundhere/decss /index.htm
http://users.bigpond.net.au/nf/dvd
http://users.pandora.be/glenn.plas/dvd
http://vandenborre.org
http://vedaa.tripod.com/decss.html
http://w1.1634.telia.com/~u163400190 /DeCSS.zip
http://wakeupthe.net/dvd
http://warpedreality.members.easyspace.c om
http://website.lineone.net/~kellypink/D eCSS
http://werewolf12.cjb.net
http://wildsurge.a2000.nu/decss
http://wiw.org/~drz/css
http://wusn-members.xoom.com/ambisagrus
http://www.19f.org/dvd.html
http://www.2600.org.au/dvd.html
http://www.UnderTheStairs.com
http://www.adulation.net/css
http://www.agybby.com/dvd
http://www.algonet.se/~skeleton/other.ht ml
http://www.alltel.net/~ledwards/css.htm
http://www.amerisuk.com/~carbon/css.html
http://www.angelfire.com/biz5/revblack
http://www.angelfire.com/electronic/drug me
http://www.angelfire.com/ga3/acidlocke
http://www.angelfire.com/hiphop/rawkus
http://www.angelfire.com/in/sight
http://www.angelfire.com/mb/DVDoutrage
http://www.angelfire.com/movies/DeCss
http://www.angelfire.com/movies/dvdiss
http://www.angelfire.com/movies/mpaasucks
http://www.angelfire.com/nh/panzah
http://www.angelfire.com/nh/panzah/DeC SS.zip
http://www.angelfire.com/ny3/ny2600
http://www.angelfire.com/or2/buzzkill
http://www.angelfire.com/pe/sh3/deccs
http://www.angelfire.com/pokemon/decss
http://www.angelfire.com/punk/DeCSS/DeCSS
http://www.angelfire.com/punk/freedom
http://www.angelfire.com/scifi/dblagbro
http://www.angelfire.com/sk2/braindamage
http://www.angelfire.com/tx3/winger s/decss.html
http://www.angelfire.com/vt/bigbrother
http://www.angelfire .com/wa2/phederalphelony/breakingnews.html
http://www.angelfire.com/wy/leggosfun /dvd.htm
http://www.angelfire.com/yt/mpaasucks
http://www.angelfire.com/zine/DeCSS
http://www.artnotart.com/anne/decss.html
http://www.asleep.net/dvd
http://www.asylum.webprovider.com
http://www.auntfloyd.com/DeCSS
http://www.auracom.com/~rhomac/dvd
http://www.azillionmonkeys.c om/qed/recess_for_css.html
http://www.best.com/~drumz/decss
http://www.bugbbq.org/decss
http://www.capital.net/~mazzic
http://www.charm.net/~dutch
http://www.chello.nl/~f.vanwaveren
http://www.cognitronics-tech.com
http://www.conspiracynow.com/theories/d ecss
http://www.constant.demon.co.uk
http://www.copkiller.org
http://www.corecomm.net/~davebb/css-auth
http://www.corova.com/dvd
http://www.cpinternet.com/~jhanson
http://www.crosswinds.net/oakland/~ahrendt/Lawyers _are_scu m-sucking_pigs [...]
http://www.crosswinds.net/~dvdcrack
http://www.cs.cmu.edu/~dst/DeCSS
http://www.cs.tu-berlin.de/~feise/DeCSS
http://www.csd.net/~cgadd/dvd.htm
http://www.csl.mtu.edu/~pdl athro/filez/DeCSS/DeCSS.html
http://www.ct2600.org/2600-DVD.html
http://www.cybertrippin.net
http://www.cyperspace.org/~multicom
http://www.darkkingz.com/DeCSS.zip
http://www.december.ndo.co.uk
http://www.deforest.org/CSS
http://www.deprecated.org
http://www.dgw3.com/dvd
http://www.discountwebhost.com/decss
http://www.divisionbyzero.com/decss
http://www.dodgenet.com/~nickz/decss
http://www.ductape.net/~alpha/decss
http://www.duffbrew.com/decss
http://www.execpc.com/~unicorn/dvdmirr or.htm
http://www.firstlight.net/~clarka/decss
http://www.flypop.com
http://www.fortunecity.com/skyscrap er/coax/1107
http://www.fortunecit y.com/skyscraper/motorola/1415/decss.htm
http://www.fortunecity.com/vic torian/parkwood/95/DVD
http://www.frankw.net/decss
http://www.free-dvd.org.lu
http://www.freebox.com/zcedri
http://www.freeyellow.com/members8/mpa aidiot
http://www.fsp.com
http://www.futureone.com/~damaged
http://www.geekbits.com/decss
http://www.geocities.com /CollegePark/3807/2600Tribute.html
http://www.geocities.com/Ongakka/rebel. html
http://www.geocities.com/Pipeline /Curb/1232/DeCSS
http://www.geocities.com/Res earchTriangle/Station/2819
http://www.geocities.com/Shapierian
http://www.geocities.com/Silic onValley/Hardware/6188
http://www.geocities.com/SiliconV alley/Modem/4192
http://www.geocities .com/SiliconValley/Ridge/3727/2600/dvd.htm
http://www.geocities.com/Silic onValley/Software/3971
http://www.geocities.com/Silic onValley/Software/8762
http://www.geocities.com/SoHo/5258/de css.html
http://www.geocities.com/SoHo/Exhi bit/5771/decss
http://www.geocities.com /SunsetStrip/Towers/1379/DeCSS.zip
http://www.geocities.com/ SunsetStrip/Underground/3587/dvd
http://www.geocities.com/Ti mesSquare/Dome/4021/dvd.html
http://www.geocities.com/cold_dvd
http://www.geocities.com/corporatemin dcontrol
http://www.geocities.com/dba3297
http://www.geocities.com/decss2
http://www.geocities.com/decss_2000
http://www.geocities.com/decss_forever
http://www.geocities.com/decss_mirror
http://www.geocities.com/djph3ad/decss
http://www.geocities.com/donquix0te
http://www.geocities.com/duck_ohm
http://www.geocities.com/dvdcracked
http://www.geocities.com/dvdfightback
http://www.geocities.com/dvdrevolution
http://www.geocities.com/dvdsuit/dvd
http://www.geocities.com/dvdthings
http://www.geocities.com/epoxy_css
http://www.geocities.com/fairusedecss
http://www.geocities.com/fr33dvd
http://www.geocities.com/getyourdvd
http://www.geocities.com/ghaniali
http://www.geocities.com/iwantdvd
http://www.geocities.com/k4dwi/dvd
http://www.geocities.com/k4wi/dvd
http://www.geocities.com/ma dasian2000/decss_mirror.html
http://www.geocities.com/mastaflame
http://www.geocities.com/mavic007/decss .zip
http://www.geocities.com/meluchwj
http://www.geocities.com/mydefiance
http://www.geocities.com/necready433
http://www.geocities.com/necready433/dvd
http://www.geocities.com/neurosis_dvd
http://www.geocities.com/opendvdecss
http://www.geocities. com/siliconvalley/computer/2303/DVD.html
http://www.geocities.com/soho/studios/67 52
http://www.geocities.com/solidex
http://www.geocities.com/verruktesten
http://www.geocities.com/warrdragon_2000
http://www.geocities.com/watice2
http://www.geocities.com/whackmol
http://www.geocities.com/xtridzz
http://www.gl.umbc.edu/~awirth1/decss
http://www.glue.umd.edu/~castongj
http://www.hackunlimited.com/dvd
http://www.hakor.com/DVD
http://www.hellnet.org.uk/decss.htm
http://www.hobbiton.org/~tpm
http://www.hote.qc.ca/dvd
http://www.hotsoupmedia.com/decss
http://www.idrive.com/decss/web
http://www.iinet.net.au/~matlhdam/DeCSS
http://www.illiterate.net/DeCSS.zip
http://www.image.dk/~mbp
http://www.imsoelite.com/dvd
http://www.infa.abo.fi/~raine/pub/ software/DeCSS
http://www.ironbrick.com/decss
http://www.ismokecrack.com
http://www.jabberwocky.eyep.net/decss.ht ml
http://www.k4dwi.net/dvd
http://www.kentroad.demon.co.uk/decss
http://www.kiss.uni-lj.si/~k4ef1890/css
http://www.kki.net.pl/~rsr66/css
http://www.koek.net/dvd
http://www.krackdown.com/decss
http://www.lemuria.org/DeCSS
http://www.lifesolo.com/bin
http://www.linuxnerd.net/decss
http://www.linuxstart.com/~kv ance/projects/decss.html
http://www.linuxstart.com/~sys_admin
http://www.lockpicking.nl/decss
http://www.mafkees.com/dvd
http://www.mayday2000.org.uk/decss.htm
http://www.members.tripod.com/dkdecss
http://www.mindspring.com/~coueys
http://www.mindspring.com/~stonethrower
http://www.multimania.com/sxpert/decss
http://www.mykle.com/DVD
http://www.myshed.net/dvd
http://www.nacs.net/~vodak/dvd
http://www.netby.net/Oest/Hva lfiskegade/jana/css.html
http://www.netspace.net.au/~gromit
http://www.networksplus.net/blogg
http://www.neurosis.org/dvd
http://www.nsnva.pvt.k12.va.us/~abc
http://www.ntsmedia.com/decss
http://www.nvhs.nl/decss
http://www.nwu.edu/people/ldb/decss.html
http://www.oblivion.net/~amar/css
http ://www.oksanen.net/ville/this_is/under/Finnish/jur isdiction/otherstuff.htm
http://www.olen.net/deCSS
http://www.oz.net/~tvaughan
http://www.pages.drexel.edu/~jer24
http://www.penismightier.com/weisha upt/dvd.html
http://www.pepper-land.net
http://www.philter.com/DVD
http://www.pippy.itgo.com
http://www.posexperts.com.pl/people /wrobell/css
http://www.projectbullshit.com/decss.html
http://www.projectgamma.com/deccs
http://www.qix.net/~pheonix/decss.html
http://www.ratol.fi/~asiipola
http://www.reapers.org
http://www.redgnatt.homestead.com
http://www.redrival.com/chimx/computer s.html
http://www.robotslave.net
http://www.rpi.edu/~jettea/dvd.html
http://www.rz.uni-frankfurt.de/~marsie
http://www.scwc.net/DeCSS
http://www.sealteamsix.com/phagan
http://www.sent.freeserve.co.uk/css -auth.tar.gz
http://www.sk3tch.com/freedecss
http://www.smackfu.com/decss
http://www.spin.ch/~rca/decss
http://www.stanford.edu/~drumz/decss
http://www.stupendous.org
http://www.subcor.com
http://www.subnetsystems.com/decss/dec ss.zip
http://www.swcp.com/~ampere
http://www.tar.hu/decss
http://www.teamnismo.com/2600
http://www.underwhelm.org/decss
http://www.users.bigpond.net.au/ree ds/decss.zip
http://www.users.on.net/johnm/DeCSS
http://www.uwm.edu/~zachkarp
http://www.vent-soft.com/dvd
http://www.vexed.net/CSS
http://www.visi.com/~adept/liberty
http://www.vulgar.net/dvd
http://www.warren-wilson.edu/~echerry/dvd
http://www.webnx.com/tuna
http://www.webzsite.com/decss
http://www.wizardworkshop.com
http://www.wolfpaw.net/~decss
http://www.worldcity.nl/~frank/dvd
http://www.wwcn.org/~grit/free
http://www.xs4all.nl/~oracle/dvd
http://www.xs4all.nl/~rasch/dvd
http://www.zeal.net/~pyro/DeCSS
http://www.zip.com.au/~zzz/dvd
http://www.zone.ee/DeCSS
http://www3.50megs.com/dvd4free -
Mirror from 2600 - probably will be gone soonMirrors
http://www.multimania.com/sxpert/decss/
http://www.posexperts.com.pl/peopl e/wrobell/css/
http://logical-solutions.com.au/DeCSS.zip
http://www.sarahandcasey.com/decss/
http://www.warren-wilson.edu/~echerry/dvd
http://people.mn.mediaone.net/bojay/s lashdot/
http://members.tripod.com/donotsueme/
http://donotsueme.homepage.com
http://donotsueme.freeservers.com/
http://www.rz.uni-frankfurt.de/~marsie/
http://www.capital.net/~mazzic
http://danger-island.com/~dav/any.lawyer.who [...]
http://www.fortunecity.com/vi ctorian/parkwood/95/DVD/
http://www.geocit ies.com/ResearchTriangle/Station/2819/index.html
http://www.execpc.com/~unicorn/dvdmirr or.htm
http://members.xoom.com/chapter3/Mamma No.htm
http://www.twistedlogic.com/archive/dvd
http://merlinjim.freeservers.com/dvd/
http://www.visi.com/~adept/liberty
http://mikedotd.penguinpowered.com/deccs
http://www.ct2600.org/2600-DVD.html
http://magic.hurrah.com/~fireball/dvd/
http://homepages.together.net/~ib nzahid/DeCSS.zip
http://people.ne.mediaone.net/dantepsn/
http://mikedotd.penguinpowered.com/decss
http://members.xoom.com/mxpxguy/dvd/
http://vedaa.tripod.com/decss.html
http://www.hackunlimited.com/dvd/
http://hem.fyristorg.com/police/css.htm
http://elknews.netpedia.net/dvd/
http://www.idrive.com/decss/web
http://www.chello.nl/~f.vanwaveren
http://www.clug.com/~vodak/dvd/
http://www.nacs.net/~vodak/dvd/
http://www.wpi.edu/~nassar/dvd/
http://www.glue.umd.edu/~castongj
http://www.geocities.com/cold_dvd/
http://www.projectgamma.com/deccs/
http://members.xoom.com/mogreen/decss/
http://thrash.webjump.com/decss.zip
http://www.angelfire.com/de2/decss/dec ss.htm
http://www.krackdown.com/decss
http://www.fortunecit y.com/skyscraper/motorola/1415/decss.htm
http://chaz.fsgs.com/misc/DvD/
http://www.linuxstart.com/~kv ance/projects/decss.html
http://www.darkkingz.com/DeCSS.zip
http://www.geocities.com/decss_forever/
http://revolution.3-cities.com/~spack/dv d/
http://www.geocities.com/Sili conValley/Software/8762/
http://members.xoom.com/s_o_sam/help.html
http://www.sent.freeserve.co.uk/css -auth.tar.gz
http://home.rmci.net/bert/fuckthelawyers
http://thrash.webjump.com/decss.zip
http://linux.uci.agh.edu.pl/~outlaw/ decss.html
http://debian.mps.krakow.pl/mirror/css/
http://www.mindspring.com/~stonethrower
http://www.geocitie s.com/SiliconValley/Hardware/6188/index.html
http://matt.frogspace.net/css/
ftp://www.spamshack.net/pub/dcss/
http://imezok.tripod.com/Untitled.txt
http://warpedreality.members.easyspace. com/
http://w1.1634.telia.com/~u163400190
/DeCSS.ziphttp://homepages.go.com/homepage s/4/0/3/403_error/
http://members.xoom.com/maud123/Home/C SS.htm
http://hackingdvd.homestead.com
http://www.geocities.com/soho
/studios/6752/index.htmlhttp://www.geocities.com/corporatemin dcontrol
http://darklord.darkthrone.com/user s/smith/dvd/
http://thrash.webjump.com/decss.zip
http://www.twistedlogic.com/archive/dvd
http://www.divisionbyzero.com/decss/
http://kevins.ne.mediaone.net/~kevins/dv d/
http://friko6.onet.pl/war/mkochano/
http://planeta.clix.pt/DJ_AmAzInG/DVD/
http://www.kiss.uni-lj.si/~k4ef1890/css/
http://hackingdvd.homestead.com
http://www.uwm.edu/~zachkarp/index.html
http://www.angelfire.com/punk/freedom/
http://www.worldcity.nl/~frank/dvd
http://members.xoom.com/iamkeenan/master/
http://homepage.interacces s.com/~mycroft/decss/DeCSS.zip
http://members.xoom.com/nyc2600
http://zerosoft.hypermart.net/warez/ DVDcrK.txt
http://members.xoom.com/freedvdinfo/
http://www.geocities.com/Sili conValley/Software/3971/
http://24.114.168.235/public/css.htm
http://fairuse.freeservers.com/
http://jupiter.spaceports.com/~decss
http://www.crosswinds.net/oakland/~ahrendt/Lawyer
s _are_scu m-sucking_pigs [...]http://www.duffbrew.com/decss/
http://www.oblivion.net/~amar/css
http://members.tripod.com/ny2600/
http://www.angelfire.com/ny3/ny2600/
http://www.angelfire.com/electronic/decs s/
http://www.csd.net/~cgadd/dvd.htm
http://theannux.homestead.com/decss.html
http://members.aol.com/elktonstalkers/CS S/
http://pages.hotbot.com/edu/silex/mir ror.html
http://budsmoker.com/sites/decss/
http://www.geocities.com/watice2/
http://home.att.net
/~phreakonaleash/ccs_mirror--screw_the_feds/http://www.azillionmonkeys.c om/qed/recess_for_css.html
http://www.cs.cmu.edu/~dst/DeCSS
http://supportyourlocal2600.homestead.co m/
http://www.angelfire.com/pe/sh3/deccs/
http://www.angelfire.com/el ectronic/icebandits/dvd.html
http://killer.radom.net/~shoggoth/dvd.ht ml
http://www3.50megs.com/dvd4free/