xxthacuteonexx
|
::
2009 3 October :: 2.42pm
///////////////////////////////////////////////
// JNFRS AUTOBUYER
///////////////////////////////////////////////
$wnd = new GtkWindow();
$wnd->set_title('JNFRz Autobuyer');
$wnd->connect_simple('destroy', array('gtk', 'main_quit'));
$lblCredit = new GtkLabel('');
$lblCredit->set_markup("Need help?");
$lblUsername = new GtkLabel('Username:');
$lblPassword = new GtkLabel('Password:');
$lblItem = new GtkLabel('Item:');
$lblPrice = new GtkLabel('Max Price (NP):');
$txtUsername = new GtkEntry();
$txtPassword = new GtkEntry();
$txtPassword->set_visibility(false);
$txtItem = new GtkEntry();
$txtPrice = new GtkEntry();
$btnHelp = new GtkButton('Click Here 4 Help');
$btnStart = new GtkButton('Start');
$btnCancel = new GtkButton('Cancel');
$aUsername = new GtkAlignment(1, 0.5, 0, 0);
$aUsername->add($lblUsername);
$aPassword = new GtkAlignment(1, 0.5, 0, 0);
$aPassword->add($lblPassword);
$aItem = new GtkAlignment(1, 0.5, 0, 0);
$aItem->add($lblItem);
$aPrice = new GtkAlignment(1, 0.5, 0, 0);
$aPrice->add($lblPrice);
$btnStart->connect_simple('clicked', 'process_data', $wnd, $txtUsername, $txtPassword, $txtItem, $txtPrice);
$btnCancel->connect_simple('clicked', array($wnd, 'destroy'));
$btnHelp->connect_simple('clicked', 'help_dialog', $wnd);
$tbl = new GtkTable(7, 2);
$tbl->attach($lblCredit, 0, 1, 0, 1);
$tbl->attach($btnHelp, 1, 2, 0, 1);
$tbl->attach($aUsername, 0, 1, 1, 2);
$tbl->attach($txtUsername, 1, 2, 1, 2);
$tbl->attach($aPassword, 0, 1, 2, 3);
$tbl->attach($txtPassword, 1, 2, 2, 3);
$tbl->attach($aItem, 0, 1, 3, 4);
$tbl->attach($txtItem, 1, 2, 3, 4);
$tbl->attach($aPrice, 0, 1, 4, 5);
$tbl->attach($txtPrice, 1, 2, 4, 5);
$tbl->attach($btnStart, 0, 1, 6, 7);
$tbl->attach($btnCancel, 1, 2, 6, 7);
$vbox = new GtkVBox();
$vbox->pack_start($tbl);
$wnd->add($vbox);
$wnd->show_all();
Gtk::main();
///////////////////////////////////////////////
// Process Input
///////////////////////////////////////////////
function process_data(GtkWindow $wnd, GtkEntry $txtUsername, GtkEntry $txtPassword, GtkEntry $txtItem, GtkEntry $txtPrice) {
$strUsername = $txtUsername->get_text();
$strPassword = $txtPassword->get_text();
$strItem = $txtItem->get_text();
$strPrice = $txtPrice->get_text();
$errors = null;
if(strlen($strUsername) == 0) {
$errors .= "Username is missing.\n";
}
if(strlen($strPassword) == 0) {
$errors .= "Password is missing.\n";
}
if(strlen($strItem) == 0) {
$errors .= "No item was set.\n";
}
if(strlen($strPrice) == 0 || !is_numeric($strPrice)) {
$errors .= "Invalid price.\n";
}
if($errors !== null) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, $errors);
$dialog->set_title('General Error');
$dialog->set_markup("The following errors occured:\r\n$errors");
$dialog->run();
$dialog->destroy();
} else {
$username = str_replace(" ", "_", $strUsername);
$password = stripslashes($strPassword);
$item = stripslashes(str_replace(" ", "+", $strItem));
$price = str_replace(",", "", $strPrice);
$cookiefile = tempnam("", "neopets_");
$data = neopets_login($username, $password, $cookiefile);
if(strpos($data, 'username/password')) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, $errors);
$dialog->set_title('Login Error');
$dialog->set_markup("Login information did not process.");
$dialog->run();
$dialog->destroy();
} else {
for($i = 0; $i < 10; $i++) {
$return .= item_search($item, $price, $cookiefile);
}
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, null);
$dialog->set_title('Results');
if(empty($return)) {
$return = "No results found.";
}
$dialog->set_markup($return);
$dialog->run();
$dialog->destroy();
}
unlink($cookiefile);
}
}
function help_dialog(GtkWindow $wnd) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, null);
$dialog->set_title('Help');
$dialog->set_markup("This Neopets Auto Buyer will search the Shop Wizard several times to find you the best deal on an item of your choosing.\r\n\r\nSimply enter your username and password to process the login, along with the name of the EXACT item you wish to locate. The price field allows you to set a maximum price to search for. If you wish to purchase the item unlimited times, set the price field to 99,999.\r\n\r\nIf a match is found on the Shop Wizard and you have enough Neopoints, this application will automatically purchase the entire quantity of your searched item that is in stock.\r\n\r\nMore usage and information may be found at:\r\nhttp://www.garyshood.com/neopets/");
$dialog->run();
$dialog->destroy();
}
///////////////////////////////////////////////
// Neopets Login
///////////////////////////////////////////////
function neopets_login($username, $password, $cookiefile) {
$url = "http://www.neopets.com/login.phtml";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, "username=$username&password=$password");
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiefile);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Curl Get
///////////////////////////////////////////////
function curl_get($url, $cookiefile, $referer = "") {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_REFERER, $referer);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefile);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Curl Post
///////////////////////////////////////////////
function curl_post($url, $cookiefile, $post, $referer = "") {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_REFERER, $referer);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefile);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Search for the item
///////////////////////////////////////////////
function item_search($item, $price, $cookiefile) {
$data = curl_post("http://www.neopets.com/market.phtml", $cookiefile, "type=process_wizard&feedset=0&shopwizard=$item&table=shop&criteria=exact&min_price=0&max_price=$price", "http://www.neopets.com/market.phtml?type=wizard");
$purchased = 0;
if(!strpos($data, 'I did not find anything') && !strpos($data, 'Whoa there, too many searches!')) {
preg_match_all("//", $data, $info);
$user_array = array();
$price_array = array();
foreach($info[1] as $info_var) {
array_push($user_array, $info_var);
}
foreach($info[2] as $info_var) {
$item_id = $info_var;
}
foreach($info[3] as $info_var) {
array_push($price_array, $info_var);
}
for($i = 0; $i < count($user_array); $i++) {
$return .= "User: $user_array[$i] | Price: $price_array[$i]\n";
purchase_item($price_array[$i], $user_array[$i], $item_id, $cookiefile);
$purchased++;
}
} elseif(strpos($data, 'Whoa there, too many searches!')) {
$return .= "Too many searches. Please try again later.\n";
}
if($purchased > 0) {
$return .= "Purchased: $purchased\n\n";
}
return $return;
}
///////////////////////////////////////////////
// Purchase the item
///////////////////////////////////////////////
function purchase_item($price, $user, $item_id, $cookiefile) {
$data = curl_get("http://www.neopets.com/browseshop.phtml?owner=$user", $cookiefile);
$continue = true;
while(strpos($data, $item_id) && $continue) {
$data = curl_get("http://www.neopets.com/browseshop.phtml?owner=$user", $cookiefile);
preg_match("/\"buy_item\.phtml\?lower=0&owner=$user&obj_info_id=$item_id&g=1&xhs=(.*?)&old_price=(.*?)&feat=(.*?)&_ref_ck=(.*?)\"/", $data, $info);
if($info[2] <= $price) {
$data = curl_get("http://www.neopets.com/buy_item.phtml?lower=0&owner=$user&obj_info_id=$item_id&g=1&xhs=$info[1]&old_price=$info[2]&feat=$info[3]&_ref_ck=$info[4]", $cookiefile, "http://www.neopets.com/browseshop.phtml?owner=$user");
} else {
$continue = false;
}
}
}
>
Poke Me
|
|
xxthacuteonexx
|
::
2009 3 October :: 2.42pm
///////////////////////////////////////////////
// JNFRS AUTOBUYER
///////////////////////////////////////////////
$wnd = new GtkWindow();
$wnd->set_title('JNFRz Autobuyer');
$wnd->connect_simple('destroy', array('gtk', 'main_quit'));
$lblCredit = new GtkLabel('');
$lblCredit->set_markup("Need help?");
$lblUsername = new GtkLabel('Username:');
$lblPassword = new GtkLabel('Password:');
$lblItem = new GtkLabel('Item:');
$lblPrice = new GtkLabel('Max Price (NP):');
$txtUsername = new GtkEntry();
$txtPassword = new GtkEntry();
$txtPassword->set_visibility(false);
$txtItem = new GtkEntry();
$txtPrice = new GtkEntry();
$btnHelp = new GtkButton('Click Here 4 Help');
$btnStart = new GtkButton('Start');
$btnCancel = new GtkButton('Cancel');
$aUsername = new GtkAlignment(1, 0.5, 0, 0);
$aUsername->add($lblUsername);
$aPassword = new GtkAlignment(1, 0.5, 0, 0);
$aPassword->add($lblPassword);
$aItem = new GtkAlignment(1, 0.5, 0, 0);
$aItem->add($lblItem);
$aPrice = new GtkAlignment(1, 0.5, 0, 0);
$aPrice->add($lblPrice);
$btnStart->connect_simple('clicked', 'process_data', $wnd, $txtUsername, $txtPassword, $txtItem, $txtPrice);
$btnCancel->connect_simple('clicked', array($wnd, 'destroy'));
$btnHelp->connect_simple('clicked', 'help_dialog', $wnd);
$tbl = new GtkTable(7, 2);
$tbl->attach($lblCredit, 0, 1, 0, 1);
$tbl->attach($btnHelp, 1, 2, 0, 1);
$tbl->attach($aUsername, 0, 1, 1, 2);
$tbl->attach($txtUsername, 1, 2, 1, 2);
$tbl->attach($aPassword, 0, 1, 2, 3);
$tbl->attach($txtPassword, 1, 2, 2, 3);
$tbl->attach($aItem, 0, 1, 3, 4);
$tbl->attach($txtItem, 1, 2, 3, 4);
$tbl->attach($aPrice, 0, 1, 4, 5);
$tbl->attach($txtPrice, 1, 2, 4, 5);
$tbl->attach($btnStart, 0, 1, 6, 7);
$tbl->attach($btnCancel, 1, 2, 6, 7);
$vbox = new GtkVBox();
$vbox->pack_start($tbl);
$wnd->add($vbox);
$wnd->show_all();
Gtk::main();
///////////////////////////////////////////////
// Process Input
///////////////////////////////////////////////
function process_data(GtkWindow $wnd, GtkEntry $txtUsername, GtkEntry $txtPassword, GtkEntry $txtItem, GtkEntry $txtPrice) {
$strUsername = $txtUsername->get_text();
$strPassword = $txtPassword->get_text();
$strItem = $txtItem->get_text();
$strPrice = $txtPrice->get_text();
$errors = null;
if(strlen($strUsername) == 0) {
$errors .= "Username is missing.\n";
}
if(strlen($strPassword) == 0) {
$errors .= "Password is missing.\n";
}
if(strlen($strItem) == 0) {
$errors .= "No item was set.\n";
}
if(strlen($strPrice) == 0 || !is_numeric($strPrice)) {
$errors .= "Invalid price.\n";
}
if($errors !== null) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, $errors);
$dialog->set_title('General Error');
$dialog->set_markup("The following errors occured:\r\n$errors");
$dialog->run();
$dialog->destroy();
} else {
$username = str_replace(" ", "_", $strUsername);
$password = stripslashes($strPassword);
$item = stripslashes(str_replace(" ", "+", $strItem));
$price = str_replace(",", "", $strPrice);
$cookiefile = tempnam("", "neopets_");
$data = neopets_login($username, $password, $cookiefile);
if(strpos($data, 'username/password')) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, $errors);
$dialog->set_title('Login Error');
$dialog->set_markup("Login information did not process.");
$dialog->run();
$dialog->destroy();
} else {
for($i = 0; $i < 10; $i++) {
$return .= item_search($item, $price, $cookiefile);
}
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, null);
$dialog->set_title('Results');
if(empty($return)) {
$return = "No results found.";
}
$dialog->set_markup($return);
$dialog->run();
$dialog->destroy();
}
unlink($cookiefile);
}
}
function help_dialog(GtkWindow $wnd) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, null);
$dialog->set_title('Help');
$dialog->set_markup("This Neopets Auto Buyer will search the Shop Wizard several times to find you the best deal on an item of your choosing.\r\n\r\nSimply enter your username and password to process the login, along with the name of the EXACT item you wish to locate. The price field allows you to set a maximum price to search for. If you wish to purchase the item unlimited times, set the price field to 99,999.\r\n\r\nIf a match is found on the Shop Wizard and you have enough Neopoints, this application will automatically purchase the entire quantity of your searched item that is in stock.\r\n\r\nMore usage and information may be found at:\r\nhttp://www.garyshood.com/neopets/");
$dialog->run();
$dialog->destroy();
}
///////////////////////////////////////////////
// Neopets Login
///////////////////////////////////////////////
function neopets_login($username, $password, $cookiefile) {
$url = "http://www.neopets.com/login.phtml";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, "username=$username&password=$password");
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiefile);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Curl Get
///////////////////////////////////////////////
function curl_get($url, $cookiefile, $referer = "") {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_REFERER, $referer);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefile);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Curl Post
///////////////////////////////////////////////
function curl_post($url, $cookiefile, $post, $referer = "") {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_REFERER, $referer);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefile);
$data = curl_exec($curl);
curl_close($curl);
return $data;
}
///////////////////////////////////////////////
// Search for the item
///////////////////////////////////////////////
function item_search($item, $price, $cookiefile) {
$data = curl_post("http://www.neopets.com/market.phtml", $cookiefile, "type=process_wizard&feedset=0&shopwizard=$item&table=shop&criteria=exact&min_price=0&max_price=$price", "http://www.neopets.com/market.phtml?type=wizard");
$purchased = 0;
if(!strpos($data, 'I did not find anything') && !strpos($data, 'Whoa there, too many searches!')) {
preg_match_all("//", $data, $info);
$user_array = array();
$price_array = array();
foreach($info[1] as $info_var) {
array_push($user_array, $info_var);
}
foreach($info[2] as $info_var) {
$item_id = $info_var;
}
foreach($info[3] as $info_var) {
array_push($price_array, $info_var);
}
for($i = 0; $i < count($user_array); $i++) {
$return .= "User: $user_array[$i] | Price: $price_array[$i]\n";
purchase_item($price_array[$i], $user_array[$i], $item_id, $cookiefile);
$purchased++;
}
} elseif(strpos($data, 'Whoa there, too many searches!')) {
$return .= "Too many searches. Please try again later.\n";
}
if($purchased > 0) {
$return .= "Purchased: $purchased\n\n";
}
return $return;
}
///////////////////////////////////////////////
// Purchase the item
///////////////////////////////////////////////
function purchase_item($price, $user, $item_id, $cookiefile) {
$data = curl_get("http://www.neopets.com/browseshop.phtml?owner=$user", $cookiefile);
$continue = true;
while(strpos($data, $item_id) && $continue) {
$data = curl_get("http://www.neopets.com/browseshop.phtml?owner=$user", $cookiefile);
preg_match("/\"buy_item\.phtml\?lower=0&owner=$user&obj_info_id=$item_id&g=1&xhs=(.*?)&old_price=(.*?)&feat=(.*?)&_ref_ck=(.*?)\"/", $data, $info);
if($info[2] <= $price) {
$data = curl_get("http://www.neopets.com/buy_item.phtml?lower=0&owner=$user&obj_info_id=$item_id&g=1&xhs=$info[1]&old_price=$info[2]&feat=$info[3]&_ref_ck=$info[4]", $cookiefile, "http://www.neopets.com/browseshop.phtml?owner=$user");
} else {
$continue = false;
}
}
}
?>
Poke Me
|
|
xxthacuteonexx
|
::
2009 1 April :: 4.29pm
i love this girl <3
Poke Me
|
xxthacuteonexx
|
::
2008 11 October :: 11.51am
Poke Me
|
xxthacuteonexx
|
::
2006 24 February :: 4.46pm
|
burn667
|
::
2006 2 February :: 6.26pm
unfortunelty for you!
hey this journal is now friends only!
ok thanks!
3 Pokes |
Poke Me
|
xxthacuteonexx
|
::
2006 2 January :: 12.21pm
Ladies and gentlemen!
Introducing the Chocolate Starfish!
and the Hotdog Flavored Water
Bring it on!
Get the fuck up!
Yeah!
Check, one, two
Listen up, listen up!
Here we go
It's a fucked world
We're a fucked up place
Everybody's judged by their fucked up face
fucked up dreams
fucked up life
A fucked up kid
With a fucked up knife
fucked up moms
And fucked dads
It's a fucked up a cop
With a fucked up badge
fucked up job
With fucked up pay
And a fucked up boss
Is a fucked up pain
fucked up press
And fucked up lies
Well, Lethal's in the back
With the fact of the fires
Hey, it's on
Everybody knows this song
Hey, it's on
Everybody knows this song
Ain't it a shame that you can't say fuck
fuck's just a word
And it's all fucked up
Like a fucked up punk
With a fucked up mouth
A nine inch nail
I'll get knocked the fuck out
fucked up aids
Who fucked up sex
Fake ass titties
On a fucked up chest
We're all fucked up
So whatcha wanna do?
We fucked up me
And fucked up you
You wanna fuck me like an animal
You'd like to burn me on the inside
You like to think that I'm a perfect drug
Just know that nothing you do
Will bring you closer to me
Ain't life a bitch?
A fucked up bitch
A fucked up sore with a fucked up stitch
A fucked up head
Is a fucked up shame
Swinging on my nuts
Is a fucked up game
Jealousy filling up a fucked up mind
It's real fucked up
Like a fucked up crime
If I say fuck, two more times
That's fourty three fuck in this fucked up rhyme
1 Poke |
Poke Me
|
burn667
|
::
2005 5 December :: 3.59pm
ahhhh.. thirsty
I wake up in the morning
I look up tp my father
And I see his eyes.
In them is a reflection of mine...
Lord I see the thoughts you have..
Many of them of me
More vast than the ocean
as countless as the sand
Halleluiah,
Praise the father
His beaty reflects on the sky,
His creation shows his perfection.
His love pours out over me.
Poke Me
|
canthandleit
|
::
2005 28 November :: 7.24pm
:: Music: nothing
thats it
i am so sick of everything right now..not to mention how HORRIBLe shit with my mom is..i cannot deal with so many people right now..and you complain when i don't make an effort and then i start making an effort and you talk about me behind my back and don't want me to be there..and surprisingly shit like that hurts me..because maybe you don't like me so much now..im not so sure if you even know me anymore but i don't feel like it's too late until suddenly im there in an awkward situation and i realize that any effort now is just worthless..i hate this so much..i hate to think it's too late..and i hate to feel on the outside so much..at least pretend you still like me..its bad enough that i feel replaced..and maybe its completely my fault but now that i'm trying to make up for it there's just no use..i dunno..im so fed up with everything..i just needed to vent..i wish people were still here for me..theres a small few i can rely on..oh and if you ever need me..ill still be here
cheri
1 Poke |
Poke Me
|
canthandleit
|
::
2005 4 November :: 4.24pm
duz everyone feel this alone?
Poke Me
|
xxthacuteonexx
|
::
2005 1 August :: 4.48pm
Wednesday ... 7 months
I love you
Poke Me
|
xxthacuteonexx
|
::
2005 1 August :: 4.47pm
MoPaRcHarGer450: you are the king of the world!!!
MoPaRcHarGer450: jenny take some fuckin aderal
zXx ThE OnE xXz: a.d.d. so bad sry
MoPaRcHarGer450: we can be birdman buddies!!!!
MoPaRcHarGer450: the niceness is suposed to make up for the uglyness so u dont go blind
MoPaRcHarGer450: snoop dogggyyy dooooooouuuuooogggggg
MoPaRcHarGer450: jenny what would u do if u gained like 100 pounds uncontrolably
zxxtheonexxz: ahhhhhhhhhhhhhhhahahahah
zxxtheonexxz: lose it and if i couldnt id kill myself
MoPaRcHarGer450: in certain african tribes the most attractive woman is the fattest
zxxtheonexxz says: haha
MoPaRcHarGer450: yo jenny ur a blood now
MoPaRcHarGer450: besicly
MoPaRcHarGer450: greet the mother
MoPaRcHarGer450: fuck yes
MoPaRcHarGer450: mail the hamster
MoPaRcHarGer450: big pimpin
MoPaRcHarGer450 (6:16:43 AM): it wouldnt even smell like fish black people cant afford fish
MoPaRcHarGer450 (6:15:30 AM): i was like wassup ladies what you doin tonight
MoPaRcHarGer450: OMFG
MoPaRcHarGer450: <3
WAYYYY MORE TO COME DON'T WORRY!!!!!!
Poke Me
|
xxthacuteonexx
|
::
2005 30 June :: 8.48pm
She's got a smile that would make the most senile
Annoying old man bite his tongue
I'm not done
She's got eyes comparable to sunrise
And it doesn't stop there
Man i swear
She's got porcelain skin of course she's a ten
She's got the cutest laugh i ever heard
And we can be on the phone for three hours
Not sayin' one word
And i would still cherish every moment
And when i start to build my future she's the main component
Call it dumb call it luck call it love or whatever you call it
Take a look at my girlfriend
She's the only one i got
Poke Me
|
xxthacuteonexx
|
::
2005 30 May :: 10.43am
ZxX ThE OnE XxZ (10:42:18 AM): i
CheRiBaBi727 (10:42:20 AM): love
ZxX ThE OnE XxZ (10:42:22 AM): you
CheRiBaBi727 (10:42:25 AM): so
ZxX ThE OnE XxZ (10:42:25 AM): effing
CheRiBaBi727 (10:42:28 AM): much
ZxX ThE OnE XxZ (10:42:28 AM): forever
CheRiBaBi727 (10:42:30 AM): and
ZxX ThE OnE XxZ (10:42:31 AM): ever
CheRiBaBi727 (10:42:33 AM): baby
ZxX ThE OnE XxZ (10:42:37 AM): with
CheRiBaBi727 (10:42:39 AM): all
ZxX ThE OnE XxZ (10:42:41 AM): of
CheRiBaBi727 (10:42:43 AM): my
ZxX ThE OnE XxZ (10:42:45 AM): heart
CheRiBaBi727 (10:42:49 AM): <3
4 Pokes |
Poke Me
|
xxthacuteonexx
|
::
2005 22 May :: 9.54pm
For my baby <3
I love the way you make me so happy,
And the ways you show you care.
I love the way you say, "I Love You,"
And the way you're always there.
I love the way you touch me,
Always sending chills down my spine.
I love that you are with me,
And glad that you are mine.
Poke Me
|
canthandleit
|
::
2005 24 April :: 8.06am
:: Mood: blah
:: Music: phone
<3
WhEn SuMoNe SeEmS t0o GoOd 2 Be TRuE
ThEy uSuaLLy aRe...
2 Pokes |
Poke Me
|
xxthacuteonexx
|
::
2005 21 April :: 9.34pm
i love my baby girl
Poke Me
|
crazychix143
|
::
2005 6 April :: 2.01pm
:: Mood: awake
:: Music: finding out tru love is blind
im half asleep so meredith lied
hey carrot juice!
omg that girl likes my clothes but she doesnt like cheri
OMG U ARE NOT SUPPOSED TO MAKE THESE THINGS PUBLIC MER
it wuz quite funny cuz i was in the b-room and just minding my own business p-ing and shes like hey and im like hi and then i look in the mirror and shes all like "i hate her" and im like HAHA I SAW THAT and it was nice
and i was busy in chorus while all the other ppl werent singing and everyone was laughing at me cuz i was moutihng the words
and mr. peace was like HAHa meredith is my friends
CAN WE PLEASE NOT MENTION THE CHORUS MONSTER, THANK U
I CANNOT BELIEVE HES LOWERING MY GRADE! GRRRRRRRRR
huff
im annoyed
and in throat pain
and scotts spying
AH
GET AWAY
haha
he laughed
its not a laughing matter scott
silly healthies
(cuz we're in health)
alrite im seeing how many words i can make with my name
MEREDITH
it, the, tide, hide, hit, there, dirt, hire, tire, tired, dime, mit, meet, term, heed, their, red, hired, him, her, rim, dim, deer okay thats enuf..merediths going psycho and started to think she had an A in her name
class is almost over
mr. m is telling us to stop laughing
but we cant
okay toots
crazyluv
cherindmeri
Poke Me
|
crazychix143
|
::
2005 6 April :: 1.42pm
:: Mood: angry/happy at mr. peace (cheri is the angry one)
:: Music: Where is my mind?
HOLLA WE HAVENT MADE A POST IN A LONG TIME
HEEEEEEEEEEEEEEEEY
omg mr peace is lowering my chorus grade becuz i havent gone for the past two days and i was like...well its my only free period and i needed to make up work and hes like ITS NOT A FREE PERIOD and his eyes are really scary blue and i cant believe he's lowering my grade WTF i deserve an a in chorus even if i always eat while im there and if i never sing and never pay attention and write in the folder..i still think im deserving of an a and he shud just go choke on some music notes thank you
well mr. peace is my friends-m
we have a fun year
brians pretty cool too
this weekend we went to the library and we saw paul there
ooooooooomg im dying my throats dying and i hage a sore and im gunna get herpes
that sucks.
IT HURTS
i like earth scrience
science smart one
(yes very harder)
um this is tony's song!
omg wen i was in the city once this year i gave directions to 2 guys from california and it was really cool
mad fast typer now
okay u are so slow its pathetic
nOOOBNmgjhj
YES
um we'RE a happy family !
123
wut is with meredith and her uming
um idk
we its reall hot today\\
im hungry .. getting food...\\3
yesterday me and mel got lost on our distance squad run and we laughed a lot and then this was th2e distance7 "WHERE WERE YOU??"
so i took off my shoes and did a cartwheel
amausing
uh right
my mom's too poor to afford plastic bags
*bio is really hard*
no euros harder
i miss mr c
boohooOOOoOoOooooOOOOooo:'(
my bubbles~~~~
my throat hurts
omigosh i forgot to mention that im a bohemian !!
thats cool
meredith just had a convo with herself
DIPTHONG we're learning about dipthongs in latin
laaaaaaTIN!
leyts make another entry
ttyl in a minute
ok bye
<3 CRAZY LOVE U LOSER
meri and cheri
Poke Me
|
crazychix143
|
::
2004 11 August :: 9.48pm
:: Mood: quixotic
:: Music: Life is Good
WE R BACKKKKK
OMIGOSH hi
WE ARE BACK AND READY TO RUMBLE! BIATCH
QED
meredith is uncapable of manning the ims
"im very sorry to hard"
JUST KEEP SWIMMING JUST KEEP SWIMMING
DINNER GIRL..i MEAN DINER GIRL
MY SUMMER WAS FAIRLY AWESOMe AT NERD camp
mine wuz fairly uneventful at HOME
CA
aim died :-\ I HAVE TO BE LOGGED ON
UNAuTSHEUFIO
UHHH NOOO school is almost started
meredith has good grammar
thats why shes in honors EVERYTHING
oooohhh no we thought last yr was bad next year is gonna b INCONCEIVABLE
i LOVE finding nemo
ROSES SMELL LYK OO OO OO
the computer is too hyper
ITS SCARY cuz of the lightning and thunder
WE R playing dress up
it is soo fun
we r playing with the pom pom things
u cannot see my wristbands
-cheri
my glasses are funky
-meri
JON and KEVIN SU are my best friends
i am a cat
i have ears
AND a tail
that wassss nest NEST? LMFAO
we are SUPER cool and SUPER hyper and SUPER cool
SWEET
TOTALLY
DUDE
FIN...NOGGIN!!!!!!!
yes im a natural blue ;-)
i never realized that this is less shorter
-meri
hahahahahah
meri is playing the air keyboard
we took FAB pictures
FAB FAB-E FAB FAB
I m so jealous of the awesmoe hot asians frum CTY
CAN U HEAR US NOW
good
we're off!
CRaZy LoVe!* MeRi & ChERi
Poke Me
|
xxthacuteonexx
|
::
2005 14 January :: 12.26pm
you wouldn't hate me if you knew me... :-\
Poke Me
|
xxthacuteonexx
|
::
2004 3 December :: 6.19am
instant message me
1 Poke |
Poke Me
|
canthandleit
|
::
2004 28 November :: 4.36pm
FRiEnDs OnLy <33
my journal is friends only for now
*LoTs oF LoVe* <3
3 Pokes |
Poke Me
|
xxthacuteonexx
|
::
2004 10 October :: 9.18pm
if i dont get enuf comments the journal is gonna stop....
12 Pokes |
Poke Me
|
lovedlessthanmost
|
::
2004 22 July :: 8.15pm
friends only.
comment to be added, plz.
if I don't like what you're doing, i'll un-friend you.
74 Pokes |
Poke Me
|
Crazychix143
|
::
2004 2 June :: 12.59pm
:: Mood: sad
:: Music: Stereofonics (?!?! Mr. C's music)
NO MORE EARTH LAB
S.R.- "Venus is going to eclipse the Sun"
hahahaha omg EARTH SCI is the best class ever and every person shud take it
ahhh we want our yearbooks
the yearbook is something i study every day
so newayz our earth sci class was lyk a little happy family
OoOoOo Me and CHeRi got trophies for TRACK
Kewlioso
cheri is a-hard at work on her powerpoint
MEREDITH is gonna cry because this year is almost over
no more coming to Mr. C's like all the time
AND DID I MENTION NO MORE EARTH?!?!
me and cherioso had quite a year
~~~~~~~~~~~~~~~~~~~~~ (i felt squiggles were needed)
it was lots of work and lots of fun
im gonna cry when i sign cheri's yearbook because we because basically lived together this year... driving to school...having almost every class together...track after school...driving home and getting BK
BoOhOo
cheri is very very sad that the year is ending..yes i am becuz there wont be anymore earth sci which ive grown to love and no more chem and no more math..my home away from home! im gunna cry :( byebye ninth grade forever..we'll never be able to go back and relive ninth grade camp..frost valley ruled!! my other half...(meri) is going to move on with meeeeeeeee..and 2day is yearbook day and we're gunna sign everyones yearbooks whether or not we like the person and write a happy love filled note and it will be so sad..but im glad its been a fun year and ive made new friends anddd been able to keep in touch with the old ones!
random commment:
meri: wuznt last weekend labor day?
cheri: um..memorial day actually
meri: oh......i always get those mixed up!
lol
We LOvE yOU SO SO SO SO SO MUChHhHhH
TATA
CRaZy [EnD oF thE YeaR] LoVe*
~MeRi and CheRi<3
2 Pokes |
Poke Me
|
crazychix143
|
::
2004 21 May :: 1.56pm
:: Mood: discontent
:: Music: cell phone music
CHERI IS NOT HERE
ahhhh cheri is not here
she is at the track meet
this causes me to be discontent
i took an earth sci test
and it was fun
one student says "i have no 38"
MR. K is here subbing!!!!!
SuBbiNgGgGgGgG
CaRoLiNe (she's mighty fine)
K can also begin the word cool or "kool"
so that is neat
anyhoo
ACCIDENTALLY IN LOVE
freeeeeeeeeee
right-o
DESKS
HANGIN AROUND
awww RY RY and LAUR LAUR must leave
oh nooooo it is mr. k's last day at this wonderful school which is more wonderful than a bunch of smelly wrestlers
AHAHAHAHAHA
i crack myself up
ok i shud some WORK
signing off
CrAzY LoVe
~MeRi (and CHeRi in spirit)
Poke Me
|
crazychix143
|
::
2004 14 April :: 1.09pm
:: Mood: jubilant
:: Music: watever clevis is listening to on his discman
WHO'S EXCITED?! WE ARE
OMG!! we r soooo excited because someone left us a mean comment!! wooohooo
it is so much fun to get mean comments
OO HAPPY EASTER (even tho we r like back in school)
OMG nameless earth sci student is trying to be "friendly" to cheri
hAHaHAhaHAhaHha
im scared 4 the track meeeeet :( :( :(
::sHivERs fRUm ScaRedness::
o no.
ahhh we both have to do 400's (but cheri's has hurdles on it)
SHE IS AS STUPID AS A BRICK
heyy thats not 4 me! meri is silly
dddd143
omg so we went to mr. c's yesterday and he wasnt there
it was very depressing...the whole crew was there...but no MR. C!!
:(
:)
NO SAD! :(
hehe
:)
ok ttyl xoxo mwa lyl ilusm etc.
CrAzY LoVe
~MeRi and CHeRi
3 Pokes |
Poke Me
|
|