All the doctors from my youth and the tests I took seem to think so... And now I woul like to personally address boobz and his mean bullshit to me over the past two years.. What the FUCK manevery post I make you are there to tell me how I don't feel emotion or some bullshit it's getting overwhelmingly frustrTing because I know u are right but I'm too cool and smart to agree with you! Stop it!!! This goes for anyone else that has something shitty to say to me too. Let it go
Sent via iPhone 1.0
Thread: Am i a genius?
Results 1 to 30 of 36
-
06-14-2012
-
06-14-2012
If you'd done more stuff like this a few years ago the girl gimmick would have been way more believable
-
-
- Join Date
- Dec 2011
- Location
- I've earned my spot in the ytmnsfw crew i don't need to vote on some :lizard: bullshit
- Posts
- 5,479
06-14-2012
-
sex with dead peopleking steveyos06-14-2012
If genius is short for gender bending faggot, then I guess you could be called a genius.
-
-
-
-
06-14-2012
fucking new vbulletin version prevents thread widening I consider this censorship and oppression and tyranny and it is stifling my creativity
-
06-14-2012
threadshort
**This account has been officially hacked and the original user is not liable for any future posts**
-
-
06-15-2012
imagine a thread that is 32,000px wide and 499*32,000px long... my god it would be glorious.
-
-
-
06-16-2012
Such an image could be displayed using my CPU.
-
06-16-2012
thanks to ruby threalong will soon be able to conquer the X dimension and it will change everything
-
-
-
-
06-16-2012
BB code is On
Smilies are On
[IMG] code is On
[VIDEO] code is On
HTML code is Off
-
-
06-16-2012
<sober> i'm going to get high first thing tomorrow morning </sober>
-
06-16-2012
I found this thread. Time to let go of your hate fanfare. You and I have never been friends. You destroyed Haylie Loftin's image and life. You are a soulless shill of a human being. You are constantly angry and anxious that you just don't feel anything anymore. This is something we can work through together. When I see your eyes I see nothing but a shallow depth of an artistically devoid mind. I don't hate you. I just want you to wake up.
-
06-16-2012
<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.
-
06-16-2012
you can tell it was copy pasted and i didn't write it myself because all the tags are capitalized
-
06-16-2012
hillarious random bullshit from fapfare
good job man
-
06-16-2012
just found this and thought it apropos
-
- Join Date
- Dec 2011
- Location
- I've earned my spot in the ytmnsfw crew i don't need to vote on some :lizard: bullshit
- Posts
- 5,479
06-16-2012haylie loftin did not age well, unlike you monde you just get more and more handsome as you get into your late 50's
-
-
06-16-2012
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)