Slashdot Mirror


User: aznel

aznel's activity in the archive.

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

Comments · 5

  1. Re:Bad Summary. on Amazon Erases Orders To Cover Up Pricing Mistake · · Score: 1, Insightful

    Ok, who let the 1L out of their cage?

  2. Re:Can't revoke if he had the right to distribute on Author of ATSC Capture and Edit Tool Tries to Revoke GPL · · Score: 0

    Your statement is correct as to the future licenses, but might be a little off with respect to the right to terminate. A license is simply a contract. Since you do not have to pay take a license under the GPL, one could argue that there was no consideration for the rights received under the GPL. A one sided contract (one with no consideration) is generally unenforceable, except if a party has detrimentally relied on the contract. So, you might be able to "terminate" the license under the GPL if the person receiving the license has not relied on it.

    IAAL. This is not legal advice.

  3. Re:Some things better left unsolved on 3D Microfluid Computers Used To Solve NP Problems · · Score: 1

    Godel showed that in any consistent proof system, there are true statements that the system cannot prove. Take for example the statement: "This proof system cannot prove this statement."

    This has nothing to do with undecidability, which deals with functions (or sets), not statements. An undecidable function one that no machine can be built to calculate (an undeciable set one which has no decidable function that determines membership of the set).

    Also, you forget when trying to prove a statement, there are more options than proving it it true or proving it is false. You can also prove that it can't be proven either way. This has not been done with the P=NP problem.

  4. Re:If it doesn't get said... on Mir: Rest in Pieces · · Score: 1

    Actually, Pepsico spunoff their resturants off a few years ago. Now they are owned by "TriCon"

    But I don't know what you are talking about... Cheetos rule, Tostitos rule, Sun Chips rule and god knows Pepsi rules. Therefore Pepsico rules.

    -Lenza

  5. Re:bounds checking in C = halting problem on Are Buffer Overflow Sploits Intel's Fault? · · Score: 1

    Define the problem rigidly and I will give you a reduction to the halting problem, easily.

    What you are forgeting is that the halting problem is partially solvable. You can easily make a procedure that says "Yes, this program terminates on this input" for any program that does terminate. It would go something like this:

    #!/bin/csh
    #run using: halt file.c input
    gcc $1 -o program
    ./program $2
    echo "Yes, this program terminates on this input"

    You can even get more complex and create a procedure that can say things like "This program doesn't halt for a while (not for 100M cycles)" and even (for particular program/input combinations) "No, this program doesn't terminate on this input"

    This procedure would solve the halting problem that most normal (non-CS) people actually care about -- "Damn, I must have a bug in my tree lookup because it isn't halting"

    Similarly you can write a procedure that says "Yes this C program is safe" for most programs and "You might want to take a look at this part" for the others.