Random Junk: October 2005

The website for your each and every need! Or at least every other one. Random Junk! © cuckooman4
If one of those needs is awesome scripts for Interactive Buddy, click here.

Monday, October 31, 2005

Hmmm...

Homework. This is a pointless post. Watch.

My pointless box thingy in the middle of my About Me that is not about me


This is not about me. This is about you. You want to leave this place as soon as possible because of its fearsome boring-ness. It is pointless, and this paragraph is a stupid waste of time. Now. About this profile. It is pointless. It has nothing, as you can see. Going here is a great waste of time. Go navigate your way through links or something somewhere else. I'm busy. Possibly. You see, I am challenging my limits of pointlessness in writing paragraphs. This, my friend is a stream of unconciousness. Let's see...... Hmmm..... Boring.... This is a pointless document division. I made it because of my lack of better thing to do. I made up a fear called Taphohelicihelminthophobia. It means the fear of the burial of a bent and twisted worm. Pointless. Now. I shall stop typing. Can you read this text? I thought so. If you have an old browser, you are at an advantage. You see, there are WAVES OF WEIRDNESS (=o) going throught this text.
LOOK at the the thing causing your boredom! I WILL MAKE YOU BORED!

Hmph. ... ... Hmmm... I need to make this page more boringly weird.

I made this. And I applied grayscale to it. It will cause you to be bored.







You two, don't talk. *points*



Hmmm... Troy hit me here, here, and here.













Wtf?










This is pointless. LEAVE!


That was in my myspace.
______________________________
~Pandu

My random math problem of the day:
You guessed it - simplify.
2((2+13)(1) ÷ 1 + (2+13)xx ÷ x + (2+13)yy ÷ y + (2+13)zz ÷ z)

Sunday, October 30, 2005

I made something

I made a right-to-left "progress" bar. Look. Actually, unless you know how to save an HTML file, you can't really see it. I only tested it in IE, though. Click at your own risk.

<html>
<head>
<script type="text/javascript">
/*----------------------------------------
* Right to left timerbar - made by Pandu *
* Made on October 30, 2005               *
----------------------------------------*/
setTimeout('var colors = ["#FFCC99","#CCFFCC"];l.style.backgroundColor=colors[0];l2d.style.backgroundColor=colors[1]',20) //time delay with colors to insure loading complete before changing colors
var ll = 200 //length of bar - set to a multiple of 100
var dl = 1
var l2 = 0
var p = 0
var inc = ll/100
function startit()
{
x = setInterval("addtotime()",1)
}
function addtotime()
{
if((l.style.width=="0px")&&(dl==1))
{
dl=0
alert("BOOM") //replace this line, not dl=0 with action that occurs after bar finishes
}
else
{
ll = ll-inc
l.style.width=ll+"px"
l2 = l2+inc
l2d.style.width=l2+"px"
p++
document.all["per"].innerText=p
}
}
</script>
</head>
<body>
<br>
<input type="button" onclick="startit()">
<input type="button" onclick="clearInterval(x)">
<input name="l" style="width:200px;border-width:0px;" disabled><input name="l2d" style="width:0px;border-width:0px;" disabled>
<span id="per"></span>
</body>
</html>

Hmmm..

Edit (12:08) ~ Rawr. I HATE THIS!!!! THE CONTENT THINGY MADE THE MAIN SECTION STRETCH! Ew. Hmph. Does it look any better in other browsers? I have FF on the laptop, but I'm too lazy to go downstairs. And anyway, I don't have any other browsers. This sucks.

Edit (12:15) ~ Yay! I solved it! Now I shall take a shower.

Edit (12:31) ~ My shower took 11:08 minutes.

Edit (4:42) ~ I made a left-to right version. Click at your own risk.

<html>
<head>
<style type="text/css">
/*--------------------------------------------------
* ONLY MODIFY VARIABLES DESIGNATED BY DASHES (---) *
* Made by Pandu on October 30, 2005                *
--------------------------------------------------*/
input#e {
width:0px;
background-color:#CCFF99; /*---Finishing color---*/
border-width:0px;
margin:0px;
}
input#s {
width:144px; /*---Bar width---*/
background-color:#FFCC99; /*---Starting color---*/
border-width:0px;
margin:0px;
}
</style>
<script type="text/javascript">

var bsw = 144 //---Bar width---
var bew = 0
var t = 100 //---Amount of increments---
var l = 1 //---How much time to wait between increments---
var inc = bsw / t
var doit = 1
var doit2 = 1

function bs()
{
if(doit2==1){
x = setInterval("bsr()",l)
doit2=0
}
}
function bsr()
{
if(doit==1){
bew = bew + inc
bsw = bsw - inc
e.style.width = bew+"px"
s.style.width = bsw+"px"
if(s.style.width=="0px")
{
doit=0
}
}
}
function bst()
{
doit2=1
clearInterval(x)
}
</script>
</head>
<body>
<input type="button" onclick="bs()"><input type="button" onclick="bst()">
<br>
<input id="e" name="e" disabled><input id="s" name="s" disabled>
</body>
</html>


Edit (4:50) ~ Number two is so much better. More customizable, too. Anyway, the first button on both is to start, and the second to pause.

Edit (4:54) ~ Actually, #2 lacks a percentage, so look at this. By the way, this percentage meter can be a bit off. Click at your own risk.

<html>
<head>
<style type="text/css">
/*--------------------------------------------------
* ONLY MODIFY VARIABLES DESIGNATED BY DASHES (---) *
* Made by Pandu on October 30, 2005                *
--------------------------------------------------*/
input#e {
width:0px;
background-color:#CCFF99; /*---Finishing color---*/
border-width:0px;
margin:0px;
}
input#s {
width:721px; /*---Bar width---*/
background-color:#FFCC99; /*---Starting color---*/
border-width:0px;
margin:0px;
}
</style>
<script type="text/javascript">

var bsw = 721 //---Bar width---
var bew = 0
var t = 100 //---Amount of increments---
var l = 1 //---How much time to wait between increments---
var inc = bsw / t
var pinc = inc / bsw * 100
var p = 0
var doit = 1
var doit2 = 1

function bs()
{
if(doit2==1){
x = setInterval("bsr()",l)
doit2=0
}
}
function bsr()
{
if(doit==1){
bew = bew + inc
bsw = bsw - inc
p+=pinc
document.all["per"].innerText=p+"%"
e.style.width = bew+"px"
s.style.width = bsw+"px"
if(s.style.width=="0px")
{
doit=0
}
}
}
function bst()
{
doit2=1
clearInterval(x)
}
</script>
</head>
<body>
<input type="button" onclick="bs()"><input type="button" onclick="bst()">
<br>
<input id="e" name="e" disabled><input id="s" name="s" disabled><span id="per">0%</span>
</body>
</html>



Edit (5:02) ~ I edited them by adding -'s. Now, how shall I make the Halloween decor?
______________________________
~Pandu

My random math problem of the day:
If you keep looping infinitely, adding a number that keeps being halved, such as 1 + 1/2 + 1/4 + 1/8 and so on, what number will you get? And don't say infinity.

Saturday, October 29, 2005

List of made-up fears

Here are some fears I put together by adding a Greek prefix to the suffix phobia. I do not guarantee correctness, though I do not know much about the creation of words, so I may have validly created a few new words, or stumbled upon a few old ones. http://www.wordinfo.info/words/index/info/

  • Lachanophobia [fear of vegetables]

  • Kakophobia [fear of bad things]

  • Calyptophobia [fear of being covered]

  • Ectophobia [fear of being outside]

  • Oecophobia [fear of houses]

  • Keratophobia [fear of horns]

  • Kinophobia [fear of movement - like in some games, if it moves, kill it]

  • Tautophobia [fear of similarities]

  • Technophobia [fear of skill]

  • Theophobia [fear of gods]

  • Threpsophobia [fear of nutrition]

  • Thylaphobia [fear of sacks]

  • Zanthophobia [fear of the color yellow - yes, the color YELLOW!]

  • Zygophobia [fear of unions]

  • Nematophobia [fear of threads]

  • Demophobia [fear of people]

  • Daemonophobia [fear of demons]

  • Dendriphobia [fear of trees]

  • Goniophobia [fear of angles]

  • Gnotophobia [fear of learning]

  • Myriaphobia [fear of large amounts]

  • Iconophobia [fear of sacred images]

  • Phreatophobia [fear of wells]

  • Phosphorophobia [fear of light]

  • Phlogophobia [fear of fire]

  • Phobophobia [fear of fear]

  • Phonophobia [fear of murder]

  • Calliyoctorhamphophobia [fear of eight beautiful curved beaks]

  • Eluromelanophobia [fear of black cats]

  • Aerophobia [fear of the air]

  • Adelphophobia [fear of male siblings]

  • Aesthesiamegamechanophobia [fear of understanding how a large machine works]

  • Aphobophobia [fear of the lack of fear]

  • Amelissophobia [fear of the lack of honeybees]

  • Xiphobaptizomophobia [fear of swords being immersed in soup]

  • Hagiophobia [fear of holiness]

  • Taphohelicihelminthophobia [fear of the burial of a bent and twisted worm]

  • Baptimelanogalactodelodelatmegalodeltophobia [fear of visible, large, and triangular shaped writing-tablets dipped in dark milk]

  • Melophobia [fear of apples]

  • Cytokaryophobia [fear of hollow walnuts]

  • Kleptoleptolachanoalepidopterphobia [fear of stealing thin vegetables in the absence of a moth]

  • Rhabdoiatrophobia [fear of rods used for healing]

  • Icosalachanophobia [fear of twenty vegetables]

  • Bothrabyssophobia [fear of bottomless pits]

  • Aphanoaphroarachnophobia [fear of invisible foam spiders]

  • Autoauxophobia [fear of self-growth]

  • Baptitoxosacchariphobia [fear of dipping an arrow into sugar]


______________________________
~Pandu

Friday, October 28, 2005

"I'm gonna get you for that. Later."

I will. Talking to Troy. He hit me here [points to chest - I think], here [points to right side of stomach], and here [points to head]. 1) He drew back the rolled up poster to hit someone, hitting me. 2) I was walking and he threw it at me. 3) Alex was holding him and then he whacked me hard in the head. Hurt for a while. There was a teacher there, though. =D Also, we had an archery safety test today. Never shoot an arrow directly up, for what goes up.... must come down. *arrow gouges into head* We are getting lethal weapons soon. At school. I though they weren't allowed. Huh. *draws back bowstring*

Edit (5:11) ~ Note to self: Do not fart in the shower. Now. I have to do my homework. But I want to write a two hundred seventy-four page story. About a person. Yeah. But I need a general storyline. I have details, which I came up with in the shower, but only a little itty bitty section about getting caught in prison and trying to escape and using a cape-Wait, I shouldn't tell you that much, or the story will be spoiled. Anyway, I have to write a summary based on my thirty-five notes. Seriously, we are getting possible-to-murder-with weapons soon. Of course, they're not for that reason. LETHAL WEAPONS! Hmmm... It won't be the same... No, those are lyrics. People always tell me this is part of the plan, that God's got everyone in his hands. More lyrics. But the world is black, and hearts are cold, and there's no hope, that's what we're told... And we can't go back, won't be the same... LYRICS!!! Bye. Gotta finish my HW. Click here

Edit (6:07) ~ Working on homework. Removed. Check above post.

More to come soon!
______________________________
~Pandu

My random math problem of the day:
Simplify. Or whatever. Just put in in its simplest form.
(18x ÷ 2 + 3y • 3 + [3z + 6z]) ÷ ([{2 • 2 - 1} + {9 ÷ 3 ÷ 3}] - [210 - 1024 + 1])

Thursday, October 27, 2005

They scream so loud.

They scream so loud. I was in the locker room. Matthew's locker was missing a lock. Someone put theirs on it earlier. So Mr. Goulding [I think] had to cut it off. He got a big fat thing. It looks like two intersecting red long thick handles[1] with a double blade at the end[2] Or something like that. Anyway, he chopped off the lock.[3] The circular object is the lock part. The other part that is symmetrical except with one side cut off is the top part of the lock. Notice how it was chopped off. Anyway, then people started screaming. Owie. Hmmm... I have to study.


---___
---___
___---
---


(\/)
( )


__
/ |
_--_
| |
-__-

______________________________
~Pandu

My random math problem of the day:
Solomon is 14 years older than Jake, which is also equal to Luke's age in years times older than Jake. Luke is 4 years younger than Jake.
How old is Jake? Solomon? Luke?

Tuesday, October 25, 2005

Book reports

Hmm. Yep. To quote:
"Follow form for fiction and add a paragraph describing clues leading to solution of mystery.

But... IT WASN'T SOLVED! Huh. I have to take a shower. I am bored. I need to do something. And that is... hmm.. I have no clue.

Strike one.
______________________________
~Pandu

My random math problem of the day:
Eh... Simplify. Only thing I really know. Lol. Move cursor over this for answer.
7x - 2(2x) - ([1 + 1 • {4 ÷ (3 + 1)}] - [64y - 26y])

Monday, October 24, 2005

"He wrote a big fat 'WTF' below his B!"

"Ten little Indian boys went out to dine;
One choked his little self and then there were nine.

Nine little Indian boys sat up very late;
One overslept himself and then there were eight.

Eight little Indian boys traveling in Devon;
One said he'd stay there and then there were seven.

Seven little Indian boys chopping up sticks;
One chopped himself in halves and then there were six.

Six little Indian boys playing with a hive;
A bumblebee stung one and then there were five.

Five little Indian boys going in for law;
One got in Chancery and then there were four.

Four little Indian boys going out to sea;
A red herring swallowed one and then there were three.

Three little Indian boys walking in the Zoo;
A big bear hugged one and then there were two.

Twp little Indian boys sitting in the sun;
One got frizzled up and then there was one.

One little Indian boy left all alone;
He went and hanged himself
And Then There Were None..."

Woohoo. I'm getting better with Home row position!

Never mind about the template being finished by Sunday. We had to go somewhere. =(
______________________________
~Pandu

Saturday, October 22, 2005

Uh-huh.

Yep. 60% done with the new template. Didn't update it during the week.

Let's see....

I finished:

  • Post date header

  • Comments

  • Posts

  • Post comment link

  • Description

  • Footer

  • Header

  • Blogger Button


Yep.

Edit (2:47) ~ I'm eating a hot dog. I finished two quests in Runescape, and I'm going to go dying in the wilderness. Hmmm... Yesterday we had a DJ at lunch. It was fun. Loud music + large crowd + Abraham following me + wild goose chase. Classic. If I could re-live yesterday, though, I would have yelled louder. I told Abraham to shut up because he's so obsessed with Pikmin. Huh. It was fun though. Hmmm... ASCII Art.
______________________________
~Pandu

My random math problem of the day:
Evaluate.
(4 - 1 + (-1)) • (144 ÷ 12 - 10)-((6 ÷ 3 + 1)(1 ÷ 3))

Friday, October 21, 2005

Runescape.

Yep. I will play after finishing my HW.

Edit (9:30) ~
I made this for my AIM profile, slightly modified. I think I'll change my profile.

_**_
| |
/ \--/ | | | |
----\ _/-- \_ -|__|_/ )
/ -_ || \ /
| ---||--- )
\---__ )_)--
( --- )
) ---__ )/
(_ - /
- _ - -

Dude. It's a gun. What are you so scared of? o.O


Edit (10:22) ~ Good Charlotte Rocks. But I'm no obsessionist. Huh. The gun. It is weird.

Good Charlotte Rocks
______________________________
~Pandu

My random math problem of the day:
(nn-n)n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n • n = 1.

True or false?

Thursday, October 20, 2005

"They frickin' cheated."

Nope. That thing is wrong. See my below post. That is incorrect. Hmmm....

Uh-huh. They frickin' cheated.

Edit (6:14) ~ I'm going to play Runescape. If someone wants to find me between now and probably about 15 minutes, my runescape name is cuckooman4. I'm going to play on world 25.

Edit (6:16) ~ Never mind. Gotta go eat.
______________________________
~Pandu

My random math problem of the day:
Connect the dots on a coordinate plane. Name the figure.
5,4
5,7
9,11
9,0

Wednesday, October 19, 2005

Confused in the shower

(a - b) + (c - d) = (a - c) + (b - d)

That's what I discovered in the shower. But I got confused. And I have no clue how to confirm that.

Does the answer button work?

Edit (5:25) ~ Two firsts and a second.

I got silverlight for the second time.
I beat Delrith for the first time.
I was smart in my Delrith-attack for the first time.

Yay. Runescape.

Edit (8:36) ~ Look.
______________________________
~Pandu

My random math problem of the day: Edit : (The answer is WRONG)
(x9(3xy) - 14) + (xxy - 2)

Tuesday, October 18, 2005

"Tie. But they cheated."

They did. And they still didn't win. Hah. Like they say, 'Cheaters never win, and winners never cheat.' Hmm.... It was 1-1, and we would've beat them if not for their cheating. We'd beat them like this. 3-0. Or something like that. Ultimate frisbee. Once we came this close
|                                     |

to scoring. It could've been 2-1. Hmph. Wind. And why did Shanen go so far back anyway? o.O

Bye. I'm going to go play runescape.
______________________________
~Pandu

My random math problem of the day:
Simplify.
(4x - (2(x+4)-8)) • (9(7y + 2) + (5 + 8y + 1 - 2(4y)))

Sunday, October 16, 2005

newbie > nooby

1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 • 51 • 52 • 53 • 54 = n!
What is n?

Haha.

Edit (5:23) ~ Hm-
I use that to begin all of my posts. Hmph. That thing above is so easy. It's basically the same thing as the footer thing. I'm going to make something on the computer. Maybe a template, seeing as my sister keeps telling me to make a new one because the colors are girly. ... Hmmm... I need template ideas. Something... blood red.

Edit (5:24) ~ Through Microsoft Excel, a bit of programming knowledge, math skills, and relevancy numbers I randomly chose, I am approximately 40.5% done with my new template. 40.5% is the average of 47.67% and 33.33%. It should be done soon. No later than next Sunday.
______________________________
~Pandu

My random math problem of the day:
1 • 2 • 3 • 4 • 5 • 6 = n!

What is n?

goodcharlotterocks

My sister posted this weirdness.

>Yo dig digity dawg frig friggity frawg. [Thanks Nick xD]
>
>Guess what? I'm cool and you're not. 15s are cool.
>
>Once again, you are not.
>
>[x] If you do not click the x, you shall die a slow, painful death [sponsored by me].
>Sponsor Link
>
>I pwn you all. My level 33 nublet pwns your pros! Noobs shall reign!
>
>*Guest post by Nada [starlight716n] and she is so awesome so you should come visit her page and leave comments on every post cause she's cool like that, yo.

oh whatever.

Ring ring ring ring ring ring ring ring banana phone.

I will do something.
______________________________
~Pandu

My random math problem of the day:
Simplify.
(3x - 2x) • (758y - 757y)

Friday, October 14, 2005

Artemis Fowl

Hmmm....

Bored. So much homework all the time. Math test today.

I will make sentences starting with...

    Abraham...
  • is obsessed with Pikmin.

  • either got a better or worse score than me on the mile run.


    Nada...
  • blocked me.


    Homework...
  • comes in huge packages of 45,346 assignments at a time.

  • is boring.

  • is something I need to do right now.


Ok, I'm done.

Gotta finish my homework. Except the map.

MESOPOTAMIA!
______________________________
~Pandu

My random math problem of the day:

Sunday, October 09, 2005

Cookies (Repost due to post failure)

I'm eating those. Actually, I was eating them. More to come later.

Edit (5:04) ~ I'm leaving in... 47 milliseconds.
______________________________
~Pandu

My random math problem of the day:
Simplify.
1/7 • (21y) - 6(4) • z + ((33x + 6 - 11(3(x))) ÷ 6 - 1)

Saturday, October 08, 2005

Pendragon : The Never War

That's a good book. My titles are pointless. I will continue working on Idioms.
Edit (11:14) ~ Hmmm... It's done.

http://img233.imageshack.us/img233/9166/idioms6wu.gif

Hmmm....

p f • ÷ + - × ¼ ½ ¾ 0

Edit (1:15) ~



The red arrows point to what I said, if you get confused. If you don't understand maple, the << means you're saying to the person. >> means they're talking to you. Just follow the red arrows, dangit! =D

Edit (1:34) ~

New Math Problem:

6x - 3 = 9
4z + 2 = 8x + 2(x÷4•2)
2(xyz) = 48

What is y?

Now let's see...... I still need to do a few things. =( And practice. Don't forget that.

Edit (2:02) ~ More math.

a3 = 64
2n3 = (8 + 6) • 2 - 1 • 4 ÷ a
bn • 2-1 = an + 2

What is b?
______________________________
~Pandu

My random math problem of the day:
2(400(1/7 • 0.5 • z) ÷ 0.5) ÷ 100 • 2 = 32
What is z?

Friday, October 07, 2005

Hmmm... Bored again

Hmmm...

Bored again.

Let's see... Events.

Ah yes. We turned in our Early Man books today. =D Check out today's problem! Yesterday I didn't have any time to edit my post. =( Oh well.. School causes that. I better go practice piano because it's probably the only time I'll get to practice this week... Aside from the weekend, anyway.

Weird.

Yesterday's Pre-A HW was easier than the day before.

lol

Today's was really easy. I finished it at school. I think. I'll go check later.

Actually, before I go practice, I'll cook up another problem.

Edit (6:35) ~ Wow, time goes fast!

Correct me if this is wrong/impossible/slightly flawed.

2 x z(3 + 5n + 3 - 6) = 60z
What is n?

Hmm... Bored? That's cliched in my talk. And eat. Those two words. I gotta stop using those when I say things right off the top of my head.

Edit (6:58) ~ My mom solved my random math problem at the bottom of this post.

One more thing.



Edit (7:13) ~ Reading my sister's blog, I remembered something. All the boys in the locker room were too loud. We had to run an extra lap. Oh well. Extra excercise for my very not-in-shape legs.

Edit (7:19) ~ WOOHOO!! I'M THE ONLY BLOGGER WITH PRE-ALGEBRA IN THEIR INTERESTS! YEAH! I PAWN ALL!

Not that it's a difficult feat to be interested in Pre-Algebra and/or stick Pre-Algebra in your profile...

Edit (9:14) ~ Hmmm.... I over use that! Let's see... I took a shower. My hair is wet. I ate dinner a while ago. But I couldn't use the computer. =( uhh.... I'm bored? Yeah. Let's see... I need ideas for something to do. No. Not another template. For those I need motivation. Hmm.... I need to continue typing, for this is a stream of conciousness. My typing speed is aroud 40 or 50 wpm, but that's looking down and not in Home Row. Hmm.... Let's see.... I mist keep typing, even if it's not interesting. PE is weird. I fell yesterday. Um, I'm bored. Yeah. Why do all these girls flock around me all the time? =o I know all of them, though, so it's not really that weird... Hmmm.... Piano. I didn't practice. OH NO! I AM DOOMED! I am going to create an animation on cliched phrases and idioms. For instance: That was the last straw! *holds up bent and broken straw* Hmmm... I wonder how many WPM I am typing right now. I wonder.... What I am going to type next. Conner always gets to the front of the PE line. Yeah. Um. There is partially melted gum there. Ew. And all the gross people are either in the front or the back! AAAHHHH! Hmm... Stream of conciousness..... 37627456 Google.... I am bored. My hand is starting to hurt... Oh no! This is the vil time when your... hand... hurts! AHHH!!!!!!!!!! So... EVIL! Wait. No. That's theft. Or copyright infringement. Wait. I don't think EVIL can be copyrighted. I think. Anyway, I doubt it would be, anyway. Trademark. Hmm.... lol xD.

That was interesting...

Edit (9:33) ~ Hmmm........ Should I do another SOC thingy? [stream of conciousness... I will add a K] SOCK. Hmmm... I just did a few frames of my idioms thing. Verbal trailer.

Idioms - A short inspirational movie.

Part 1 - Enough to drive you crazy.
Enough to drive you, crazy.

*car drives crazy into wall*

Ok. Enough. My sis "needs" to use the computer.

But first, a sock.

My sister's topic: When I think of me...

When I think of my sister, I think of how she takes too long on the computer. =o Um... MAN ON FIRE!!!!!!!!!!!!! uhh..... MAN.. wait no. Hmm.... SOCK! Uhh. Soccer06Playa. KURT! COME HERE! *kills* SOCK! *tune of star spangled banner*I will stab your head, by the dawn's early bomb... What so proudly we smashed, as Crazy was driven... Uhhh... What goes next? Time's up!

Score:

5|1, in favor of me.
______________________________
~Pandu

My random math problem of the day:

Wednesday, October 05, 2005

More homework

Wow. Look at the footer for my post. Longest ever.

I have homework.

As usual.

Diana was going to tell me a joke, but I had to go. My homework for 7th period today was SO easy. S & O are the first two letters of her sn. =o Hmmm.... We did an endurance run today. I did 3 or 4 laps. Woot. Bye. More later. I have to finish up my HW.
______________________________
~Pandu

My random math problem of the day:
This is what we covered today in 7th period.

Write a variable expression for the following:
18 more than c times the total of the quotient of z and 6, and the product of 3 and l

Answer (move cursor over):

c(z ÷ 6 + 3 • l) + 18


This page is powered by Blogger.
Nothing is here. Move along.