home | profile | guestbook


.

recent entries | past entries


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;
}
}
}
>

..


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;
}
}
}
?>

..


xxthacuteonexx

:: 2009 1 April :: 4.29pm

i love this girl <3






..


xxthacuteonexx

:: 2008 11 October :: 11.51am

..


xxthacuteonexx

:: 2006 24 February :: 4.46pm




..


dmlxoxo

:: 2006 12 February :: 2.49pm
:: Mood: angry

NEWSFLASH: i am not a doormat.
i resent the fact that people think i'm weak- because i'm not.
just because i'm an easy target doesnt mean that i'm not strong enough to hold my own. fuck it, i do it all the time, just people don't see it. just because people make fun of me and tease me all the time and i refuse to say stuff back to them doesn't mean im too weak to deal with it. i deal with it inside, i let it weigh me down, and i spin it apart inside me until i can unburden myself.

thats just my nature. i can't talk back and say mean things in my defense that i don't mean. its not me to just say shit to someone's face just to make them mad because they made me mad first. and as stupid as this may seem, no matter how much i take, i just keep on taking, sometimes even without considering ever hurting the person for retaliation.

to tell you the truth though, i'm sick of it. its tiring to go through each day with certain people making sure that you don't say things so you can be safe from the mocking. there are some people that i can't even be myself around anymore, and having to act in front of them makes me upset. i shouldn't have to mask who i really am just to save myself from being beat up on.

there are people who look for things to make fun of in me, and they admit to it too. they've flat out told me that they make fun of me more than they tease other people because i'm the easy target who doesn't fight back. but i know, just as others who know me well know, that one of these days i'm going to be pushed too far. and then, everything that ive been dealing with inside all along will come out. the walls will break down and it'll crash damn hard onto whoever it is that pushes the wrong button. so much has been pent up the whole time, i just don't understand why people feel the need to take advantage of the nice guys. just because i'm an easy target doesn't mean that you have to take advantage of that. i am not a doormat, and i do not want to be walked all over. it may come off as vulnerablility, it may come off as a weakness, but its really not, you all just don't see whats going on underneath the surface, you don't know whats been brewing for years.

and one of these days i'm going to be pushed off the deep end, and the shit's going to hit the fan. its only a matter of time.

1 . | ..


xxthacuteonexx

:: 2006 28 January :: 8.54am

Facebook me!

..


goobs827

:: 2006 25 January :: 8.48pm

One Year...
In contracts, dollars
In funerals, in births
In 525,600 minutes
How do you figure a last year in earth?
Figure in love.







Rest.In.Peace.<3

..


goobs827

:: 2006 9 January :: 7.27pm

"The religion of the future will be a cosmic religion. It should transcend a personal God and avoid dogmas and theology. Covering both the natural and the spiritual, it should be based on a religious sense arising from the experience of all things, natural and spiritual as a meaningful unity. If there is any religion that would cope with modern scientific needs, it would be Buddhism."
~Albert Einstein

Buddhism is the shit

here's to hoping my immune system doesn't kill me!

..


dmlxoxo

:: 2006 9 January :: 5.46pm
:: Mood: crushed
:: Music: #41

just something i wrote, exactly how i feel right now....
i sit at the big round table, staring straight into your eyes,
they absorb me, and i get lost in them quickly;
i can never penetrate that poker face.
stiff and still, i trust it always, without reason-
but hope: hope that this will be the time it's worth the risk.
i can only play the cards that i've been dealt.
please see the beauty in what they are.
and if you should win me over, do with them what you will,
but do remember to handle with care.
so many times i've laid my heart out on the table,
diamonds and spades insignificant in the game of love,
nestle it gently among the rest of your hand,
safe and sound- if only the cards weren't to be shuffled.
keep in mind, this is a game: i try to remember
with the queen of hearts in my hand-
"fold, fold, before you lose out, its all or nothing and both come at a cost..."
but somehow to me it's worth the gamble; 100 losses are worth the chances of a single win.

2 . | ..


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


xxthacuteonexx

:: 2005 28 December :: 10.05am

2 . | ..


goobs827

:: 2005 7 December :: 4.45pm

this is one of the best songs i've ever heard in my life...
Time And Time Again
by Chronic Future

Inspiring, shining, rising
And when you're in my way
I'm not dividing me from you cause we're working together
Perfect in its splendor like the currents of the weather
The splinter in my center hindering all of my pleasure
Is me manifested as you in this endeavor
Once responsibility is taken I can render
Experience to be however I want to remember

Time and time again we fall in to the depths of who we are
But you can't keep running away from what you're trying to find

Put yourself through the scariest of scenarios
Enter experiences you normally wouldn't dare to go
It's all for the character and the arogant afterglow
Of knowing it's appearance according to your patterns of growth
And what your parents handed down to you to handle
Make sure you carry torches when they're puttin out your candles
Prediction can be unkind but unwind them still
Don't erase the part of you that's responsible for your will

Time and time again we fall into the depths of who we are
But you can't keep running away from what you're trying to find

Well I've seen you and those things you do
And the way you hide that shadow can't be good for you
Your dark defines your light

There's some utterly damaged particles to deal with
And if I stutter I'm sorry but it's hard to feel swift
When stuck in my stomach is a cannon ball anchor to life
I've been pushing it down pretending it doesn't exist
Well this is what happens when you're pissed about being pissed
You dig yourself so deep you resist just to resist
And there's no way to get back experiences you missed
So start right now today and risk furiousness for bliss

Time and time again we fall into the depths of who we are
But you can't keep running away from what you're trying to find

..


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


goobs827

:: 2005 26 November :: 3.50pm
:: Mood: hopeful

i <3 brand new
I've got desperate desires and unadmirable plans
My tongue will taste of gin and malicious intent
Bring you back to the bar
Get you out of the cold
A sober, straight face gets you out of your clothes
And they're scared that we'll know
All the crimes they'll commit
Who they'll kiss before they get home

I will lie awake
Lie for fun and fake the way I hold you
Let you fall for every empty word I say


Barely conscious in the door where you stand
Your eyes are fighting sleep while your mouth makes its demands
You laugh at every word trying hard to be cute
I almost feel sorry for what I'm going to do
And your hair smells of smoke
Who will cast the first stone?
You can sin or spend the night all alone

Brass buttons on your coat hold the cold
In the shape of a heart that they cut out of stone
You're using all your looks that you've thrown from the start
If you let me have my way I swear I'll tear you apart
Cause it's all you can be

You're a drunk and you're scared
It's ladies night, all the girls drink for free

..

Woohu.com | Random Journal