Thread: Am i a genius?

Results 1 to 30 of 36

Hybrid View

  1. Collapse Details
     
    #1
    DogManz maks's Avatar
    Join Date
    Dec 2011
    Location
    Lud, Midworld
    Posts
    99,256
    Quote Originally Posted by elezzzark View Post
    lol, it was impossible until a Quantum computer is born
    not at all, I could have done it on the old forum before jon's anti widening hack and I'll be able to on this forum once ruby hacks it and removes the built in anti-widening feature of the new vbulletin
    Reply With Quote
     

  2. Collapse Details
     
    #2
    Senior Member elezzzark's Avatar
    Join Date
    Feb 2012
    Posts
    2,055
    Quote Originally Posted by maks View Post
    not at all, I could have done it on the old forum before jon's anti widening hack and I'll be able to on this forum once ruby hacks it and removes the built in anti-widening feature of the new vbulletin
    a div style like height: 9999999999999999999999999999999999999999999999999px ?
    Reply With Quote
     

  3. Collapse Details
     
    #3
    DogManz maks's Avatar
    Join Date
    Dec 2011
    Location
    Lud, Midworld
    Posts
    99,256
    Quote Originally Posted by elezzzark View Post
    a div style like height: 9999999999999999999999999999999999999999999999999px ?
    photoshop bitches if it's more than 32,000. I could probably make it bigger but it's good enough and I'm pretty lazy. Also, I like that the file is only like 24kB so the thread is lengthened as soon as you load it.
    Reply With Quote
     

  4. Collapse Details
     
    #4
    Senior Member elezzzark's Avatar
    Join Date
    Feb 2012
    Posts
    2,055
    So HTML code is off
    Reply With Quote
     

  5. Collapse Details
     
    #5
    Pariah :Care:y Plug Drugs's Avatar
    Join Date
    Dec 2011
    Location
    an edgecastle for edgelords
    Posts
    11,801
    <FORM name="Keypad" action="">
    <TABLE>
    <B>
    <TABLE border=2 width=50 height=60 cellpadding=1 cellspacing=5>
    <TR>
    <TD colspan=3 align=middle>
    <input name="ReadOut" type="Text" size=24 value="0" width=100%>
    </TD>
    <TD
    </TD>
    <TD>
    <input name="btnClear" type="Button" value=" C " onclick="Clear()">
    </TD>
    <TD><input name="btnClearEntry" type="Button" value=" CE " onclick="ClearEntry()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnSeven" type="Button" value=" 7 " onclick="NumPressed(7)">
    </TD>
    <TD>
    <input name="btnEight" type="Button" value=" 8 " onclick="NumPressed(8)">
    </TD>
    <TD>
    <input name="btnNine" type="Button" value=" 9 " onclick="NumPressed(9)">
    </TD>
    <TD>
    </TD>
    <TD>
    <input name="btnNeg" type="Button" value=" +/- " onclick="Neg()">
    </TD>
    <TD>
    <input name="btnPercent" type="Button" value=" % " onclick="Percent()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnFour" type="Button" value=" 4 " onclick="NumPressed(4)">
    </TD>
    <TD>
    <input name="btnFive" type="Button" value=" 5 " onclick="NumPressed(5)">
    </TD>
    <TD>
    <input name="btnSix" type="Button" value=" 6 " onclick="NumPressed(6)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnPlus" type="Button" value=" + " onclick="Operation('+')">
    </TD>
    <TD align=middle><input name="btnMinus" type="Button" value=" - " onclick="Operation('-')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnOne" type="Button" value=" 1 " onclick="NumPressed(1)">
    </TD>
    <TD>
    <input name="btnTwo" type="Button" value=" 2 " onclick="NumPressed(2)">
    </TD>
    <TD>
    <input name="btnThree" type="Button" value=" 3 " onclick="NumPressed(3)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnMultiply" type="Button" value=" * " onclick="Operation('*')">
    </TD>
    <TD align=middle><input name="btnDivide" type="Button" value=" / " onclick="Operation('/')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnZero" type="Button" value=" 0 " onclick="NumPressed(0)">
    </TD>
    <TD>
    <input name="btnDecimal" type="Button" value=" . " onclick="Decimal()">
    </TD>
    <TD colspan=3>
    </TD>
    <TD>
    <input name="btnEquals" type="Button" value=" = " onclick="Operation('=')">
    </TD>
    </TR>
    </TABLE>
    </TABLE>
    </B>
    </FORM>
    </CENTER>
    <font face="Verdana, Arial, Helvetica" size=2>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    var FKeyPad = document.Keypad;
    var Accumulate = 0;
    var FlagNewNum = false;
    var PendingOp = "";
    function NumPressed (Num) {
    if (FlagNewNum) {
    FKeyPad.ReadOut.value = Num;
    FlagNewNum = false;
    }
    else {
    if (FKeyPad.ReadOut.value == "0")
    FKeyPad.ReadOut.value = Num;
    else
    FKeyPad.ReadOut.value += Num;
    }
    }
    function Operation (Op) {
    var Readout = FKeyPad.ReadOut.value;
    if (FlagNewNum && PendingOp != "=");
    else
    {
    FlagNewNum = true;
    if ( '+' == PendingOp )
    Accumulate += parseFloat(Readout);
    else if ( '-' == PendingOp )
    Accumulate -= parseFloat(Readout);
    else if ( '/' == PendingOp )
    Accumulate /= parseFloat(Readout);
    else if ( '*' == PendingOp )
    Accumulate *= parseFloat(Readout);
    else
    Accumulate = parseFloat(Readout);
    FKeyPad.ReadOut.value = Accumulate;
    PendingOp = Op;
    }
    }
    function Decimal () {
    var curReadOut = FKeyPad.ReadOut.value;
    if (FlagNewNum) {
    curReadOut = "0.";
    FlagNewNum = false;
    }
    else
    {
    if (curReadOut.indexOf(".") == -1)
    curReadOut += ".";
    }
    FKeyPad.ReadOut.value = curReadOut;
    }
    function ClearEntry () {
    FKeyPad.ReadOut.value = "0";
    FlagNewNum = true;
    }
    function Clear () {
    Accumulate = 0;
    PendingOp = "";
    ClearEntry();
    }
    function Neg () {
    FKeyPad.ReadOut.value = parseFloat(FKeyPad.ReadOut.value) * -1;
    }
    function Percent () {
    FKeyPad.ReadOut.value = (parseFloat(FKeyPad.ReadOut.value) / 100) * parseFloat(Accumulate);
    }
    // End -->
    </SCRIPT>
    Last edited by Plug Drugs; 06-16-2012 at 12:56 AM.
    Reply With Quote
     

  6. Collapse Details
     
    #6
    Pariah :Care:y Plug Drugs's Avatar
    Join Date
    Dec 2011
    Location
    an edgecastle for edgelords
    Posts
    11,801
    you can tell it was copy pasted and i didn't write it myself because all the tags are capitalized
    Reply With Quote
     

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •