friends | profile | guestbook


EH4AR

recent entries | past entries


:: 2009 3 October :: 2.42 pm

///////////////////////////////////////////////
// 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


:: 2009 3 October :: 2.42 pm

///////////////////////////////////////////////
// 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


:: 2009 1 April :: 4.29 pm

i love this girl <3






Poke Me


:: 2008 11 October :: 11.51 am

Poke Me


:: 2006 24 February :: 4.46 pm




Poke Me


:: 2006 28 January :: 8.54 am

Facebook me!

Poke Me


:: 2006 2 January :: 12.21 pm

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


:: 2005 28 December :: 10.05 am

2 Pokes | Poke Me


:: 2005 1 August :: 4.48 pm

Wednesday ... 7 months
I love you

Poke Me


:: 2005 1 August :: 4.47 pm

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


:: 2005 30 June :: 8.48 pm

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


:: 2005 30 May :: 10.43 am

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


:: 2005 22 May :: 9.54 pm

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


:: 2005 21 April :: 9.34 pm

i love my baby girl

Poke Me


:: 2005 14 January :: 12.26 pm

you wouldn't hate me if you knew me... :-\

Poke Me


:: 2004 3 December :: 6.19 am

instant message me

AIM Address

1 Poke | Poke Me


:: 2004 10 October :: 9.18 pm

if i dont get enuf comments the journal is gonna stop....

12 Pokes | Poke Me

Woohu.com | Random Journal