Slashdot Mirror


User: bear_phillips

bear_phillips's activity in the archive.

Stories
0
Comments
226
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 226

  1. Re:Nice idea, but won't work on Copyright Claimed on Telephone Tones · · Score: 1

    True it won't work in the end, but if you file a copyright on something it forces the burden of proof on the other guy to say they thought it up earlier or independently.

  2. Bill Gates to Apologize? on Code Red III · · Score: 1

    Rember those ads that had Ford CEO Jacques Nasser saying "We are doing everything possible to fix this tire situation". Wouldn't it be cool if Bill Gates would do the same thing? Might be good for his PR.

  3. Re:Road Runner on Broadband Crackdown · · Score: 1

    I believe this is the road runner "acceptable use" policy. It doesn't say anything about not being able to run a web server.
    Is there some other "terms of service" agreement that disallows personal web servers?

  4. Re:There is another way... on Fight Virus With Virus? · · Score: 1

    Here is a simple script to parse out the offending IPs and timestamp on linux/apache systems. It removes dupes too. This may be easier to read

    #!/usr/bin/perl

    # open the log file
    open(LOG,"/usr/local/apache/logs/access_log");

    while ($line = <LOG>) {
    #Get the code red log lines
    if ($line =~ /default.ida/) {
    # Split out just the IP and time
    ($validstuff,$junk) = split(/\"GET/,$line);
    ($ip,$time) = split(/- -/,$validstuff);
    $ip =~ s/ //g;
    #Put them in a hash to get rid of dupe IPs
    $ips{$ip} = $time;
    }
    }

    # Print it back to the screen
    @keys = keys %ips;
    foreach $tmp(@keys) {
    print "$tmp $ips{$tmp} \n";
    }

  5. Re:There is another way... on Fight Virus With Virus? · · Score: 1

    Here is a simple script to parse out the offending IPs and timestamp on linux/apache systems. It removes dupes too. #!/usr/bin/perl # open the log file open(LOG,"/usr/local/apache/logs/access_log"); while ($line = ) { #Get the code red log lines if ($line =~ /default.ida/) { # Split out just the IP and time ($validstuff,$junk) = split(/\"GET/,$line); ($ip,$time) = split(/- -/,$validstuff); $ip =~ s/ //g; #Put them in a hash to get rid of dupe IPs $ips{$ip} = $time; } } # Print it back to the screen @keys = keys %ips; foreach $tmp(@keys) { print "$tmp $ips{$tmp} \n"; }

  6. Do most infected IIS sites also host email? on Fight Virus With Virus? · · Score: 1

    I know many linux guys have some type of email server running at home. How about on IIS? Would it do any good to send emails to postmaster@xxx.xxx.xxx.cablemodem.com or root@xxx.xxx.xx.cablemodem.com ?

  7. Can we use the ip to warn those infected on Fight Virus With Virus? · · Score: 1

    Do any of the ISPs accept lists of infected ips and then send a warning email to those users? I looked through my logs, and saw code red hits from a local smalltime website. I emailed the sysadmin and he patched his site and thanked me for the info. But most of the hits are from xxxx.rr.com .
    I would love to be able to forward a list of ips back to the ISP and have them send out the emails.

  8. When does the patent expire? on Who'll Be Using Ogg Vorbis Instead Of MP3? · · Score: 1

    Does anyone know what patents are used by MP3 and when they expire?

  9. Re:What's the household penetration? on Digital TV Restrictions Coming Soon · · Score: 1

    Where does the post say that the AHRA was mainly about TV broadcasts? The AHRA is about making home recordings. The AHRA codifies part of the Sony case by allowing home recordings. Yes, home recording for personal use was legal before the AHRA. Sony was a split decision, the split may have went the other way with a few new justices, so it didn't hurt to have that part written into law. It says nothing about "its ok to hack the encryption used by DirectTV." But it does prevent breaking copy protection to make multiple copies. Subchapter B 1002. Incorporation of copying controls. Rather than just spouting off, why don't you back up your words with some facts.

  10. Re:What's the household penetration? on Digital TV Restrictions Coming Soon · · Score: 2

    The Audio Home Recording Act of 1992, does not say that you have the RIGHT to record over the air programs. Instead it says that such recording is legal for home use. This does not mean that content providers can not put in copy protection, just that if they broadcast in the "free and clear" they can't sue you because you recorded it. It also states that you can't hack the copy protection. Audio Home Recording Act of 1992

  11. Re:Cleared up on Judge Sues ISP for Poor Service · · Score: 1

    This depends on the consumer laws of the state. Under your rent theory, the law in Texas is that if the leased property is not habitable you can file a complaint with the landlord. The landlord has I believe one week to fix the problem or you can get out of the lease, get your deposit back etc. . Many states have consumer laws that protect people from unfair business practices.

  12. Why did she quit? on Slashdot Back Online · · Score: 3

    Can you give us any info on why she quit? From the short blurb, I can only think that she came in, didn't know exactly what to do, got chewed out, then ran out of the place crying. Hopefully I am wrong. This would make a great ask slashdot "how much leeway do you give a tech employee." I know when I started, I could do anything given enough time, but my employeer stuck with me. Granted in this case, there wasn't any time to waste.

  13. Re:did you read? on Judge Sues ISP for Poor Service · · Score: 2

    Sorry, you are wrong. When you "subscribe" to a service you are entering into a contract. The company agrees to provide a service and you agree to pay for that service. Unless the contract has a clause that states "you must still pay even if we do not provide the service" she had every right not to pay her bill. At least in the U.S. there are a ton of consumer protection Rogers was the first to breach the contract so she had no obligation to pay. Here is a link explaining contract law. Under your theory, I could lease you a house, have the house blown up, kick you out on the street and you would still have to pay me rent.

  14. isn't this just one crack! on Themes.org Cracked · · Score: 1

    Ok,
    If the guy cracked one system and then snooped the users on that box to get passwords, didn't he only crack one box?

    Is it really apache.org's etc... fault if a trojan ssh on another isp's box was able to capture a password? or did I totally misread everything?

  15. x10 camera and motion detector on Using Webcams as Remote Security? · · Score: 1

    Get a camera and motion detector from X10.com . You can probably right a small program that will dial out when the motion detector goes off and have it email you a picture. Look here

  16. Re:What about the big picture? on Soybean Powered Harley · · Score: 1

    Alot of the people using biodiesel get there cooking oil from used cooking oil. Used cooking oil is considered a waste product and many times ends up in a landfill. So if you use cooking oil that would only end up in the garbage dump, should you even considered the resources that were required to make it?

  17. Re:How does it work? on Soybean Powered Harley · · Score: 1

    A diesel engine works different than a gas engine. In a gas engine, the spark plug ignites the fuel. In a diesel engine there are no spark plugs. The pistons compress the fuel, and the compression causes the fuel to ignite. A diesel engine has a compression ration about twice that of a gasoline engine. Soybean oil will work just fine in a diesel engine. From what I have read, soybeans have a longer hydrocarbon chain than diesel, that can make the engne a little harder to start on soybean oil.

  18. Re:No, it is pure on Soybean Powered Harley · · Score: 2

    Remember he is using a diesel engine. The soybean oil does combust,but it combusts under great pressure not by a spark plug. Diesel fuel is not very combustible (compared to gasoline that is). A diesel engine has a compression ration about twice that of a gasoline engine. If you look at the specs on a military diesel engine they will run on just about any type of liquid hydro carbon. (diesel, motor oil, kerosene, Wesson cooking oil)

  19. Was this an ACTUAL question on Wave/Sea Power - What Are the Dangers? · · Score: 1

    Was this question made up? If someone REALLY asked "will wave power cause the moon to crash", now that WOULD be funny.

  20. Posted MS Source == MS excuse for extortion on Microsoft Cracked · · Score: 1

    Lets see, if Microsofts source code is posted all over the web, Microsoft would start a massive campaign to protect its intellectual property. 1. MS goes through StarOffice, KOffice, AbiWord code. 2. MS states that your "search and replace" code looks just like our "search and replace" code, you must have used our stolen code. Please remove it now. 3. MS gets a judge to believe that other closed source programs contain stolen MS code. Judge allow MS to view the closed source code. MS uses that info for all kinds of bad stuff.

  21. Don't do on What Pitfalls Exist When Outsourcing Code? · · Score: 1

    My experience has been that the consultants come in, talk big, have alot of meetings , make lots of promises, throw out some code and leave. Then the in house folks have to go back and clean up the mess.

  22. How can law students help on Ask The DeCSS Legal Team · · Score: 1

    I am computer programmer full time and go to law school part time. In your opinion what is the best way for law students or attorneys to help with legal issues that effect the open source world?

  23. Fuel you car on free McDonalds fryer grease on What Does the Future Hold for Low Emission Vehicles? · · Score: 1

    Vegetable oil is a great source of renewable energy. It is easy too make vegetable oil into diesel fuel. Much easier and much more effiecient to use vegetable oil (even old fryer grease) than using corn to make ethanol. Check out these sites http://www.greasecar.com/ http://www.veggievan.org/ I hope to make my own greasecar soon.

  24. But is it Binding? on Corinthians.com Taken Away, Given To Soccer Team · · Score: 2

    Here is a link to a FAQ at the WIPO http://arbiter.wipo.int/information/faq/index.html It looks like they try and handle things by mediation. They also do arbitration, but both parties have to agree to the arbitration. I can't find anywhere on there site that says they have actual enforment power? It looks like the bible guy and soccer team choose to use the WIPO because it was cheaper than going to court.

  25. Link to make your own Bio-Diesel on Why Do We Still Use Gasoline? · · Score: 1

    How about bio diesel? It can be made from used vegetable oil from you local McDonalds and can be run in any diesel car/truck with only a few modifications and can still burn regular diesel too. http://www.kelseyville.com/biodsl/