Astrasoul7 @ tabulas.com

About Me

Astras Bloggy

My Communities

My Categories

    My Pages

    your name:

    url:

    your message:

    Entries for September, 2003

    September 12th, 2003

    Hello

    Posted by astrasoul7 at 05:58 PM on September 12, 2003.

    Well i just joined and added a whole lot of friends. This seems great.
    Currently feeling: annoyed

    2 Heard

    September 14th, 2003

    work

    Posted by astrasoul7 at 03:50 PM on September 14, 2003.

    i work 10 hours a day 5-6 days a week and and an AMIT - assistant manager in training. I think that my boss could cut me some slack sinice this is my first week,,, but noooo..
    Currently feeling: nothing

    Speak

    Gallery

    Posted by astrasoul7 at 07:03 PM on September 14, 2003.

    Well i just finished editing and creating my gallery! Its very small but nice i hope

    2 Heard

    September 16th, 2003

    toughts

    Posted by astrasoul7 at 06:52 PM on September 16, 2003.

    In a comment sum up your thoughts about me in one word.
    Then put this in your own journal to see what everyone thinks of you.
    -- taken from dodo

    Speak

    September 17th, 2003

    [1.8 Release] Job Application v1.0 SE

    Posted by astrasoul7 at 02:10 PM on September 17, 2003.

    This is an application form you can use it to make your members apply to join the staff team of your forum...
    and you can chose to accept or reject them .... by viewing their applications....
    every member will have a pass code he will receive it by email when he apply.......
    in the admin view ....when you accept someone you can chose the rank {Mod, Super Mod, Admin) for this member depending on the job he select..
    accepted members will have their position showing with their post under their names....


    READ MORE ..... http://www.fw46.com/eforum/viewthread.php?tid=72

    ---http://www.xmbforum.com/community/boards/viewthread.php?tid=740855#pid1140930

    Speak

    [release] Staff Profiles (biographies) 0.1

    Posted by astrasoul7 at 02:15 PM on September 17, 2003.

    Description: this adds bio center to your forum, where yours admins and moderators can create a biographie for them! keep in mind that this a 0.1 version, it'snt very ready... but it works! hope someone helps me with it develop, speciality Miss_Paige!

    compatibily: 1.8, others didnt tested...

    basead on: http://forum.charmedembrace.com/

    demo: http://members.lycos.co.uk/baquito/forum/bio.php

    Attachment: bio.zip (6.04kb)
    This file has been downloaded 31 times

    ---http://www.xmbforum.com/community/boards/viewthread.php?tid=740130#pid1138140

    Speak

    [Release] Login from anywhere

    Posted by astrasoul7 at 02:17 PM on September 17, 2003.

    Login from any home page...


    quote:
    --------------------------------------------------------------------------------


    Login into Forum


    Username



    Password:






    --------------------------------------------------------------------------------



    Place your forum domain in YOURFORUMDOMAINHERE and your away ! paste it absolutely anywhere and you can log in from anywhere then ... to see it in action go to http://rmgrint.softoak.com/index2.htm

    --
    http://www.xmbhacks.co.uk/community/boards/viewthread.php?tid=2515

    Speak

    [Release] Delete 0 post count members

    Posted by astrasoul7 at 02:19 PM on September 17, 2003.

    Code Designed by: Thegijoezone
    Description:This will remove 0 post count members from your forum via the admin panel.
    Compatible with XMB 1.8 Final Partagium

    Open tools.php

    Find Code:

    code:--------------------------------------------------------------------------------
    if($action == "fixforumthemes") {
    $db->query("UPDATE $table_forums SET theme='' WHERE theme='name'");
    $navigation .= " » Tools";
    $title = $lang_textcp . " - ";
    echo "Tool Request
    Completed! Themes Fixed";
    end_time();
    eval("$footer = "".template("footer")."";");
    echo $footer;
    exit();
    }
    --------------------------------------------------------------------------------


    Add Below:

    code:--------------------------------------------------------------------------------
    //Start Remove Zero Post Count Members By Thegijoezone
    if($action == "memzerodelete") {
    $db->query("DELETE FROM $table_members WHERE postnum = 0");
    $navigation .= " » Tools";
    echo "Tool Request
    Completed! 0 Post Count Members Deleted";
    end_time();
    eval("$footer = "".template("footer")."";");
    echo $footer;
    exit();
    }
    //End Remove Zero Post Count Members By Thegijoezone
    --------------------------------------------------------------------------------


    Now save and upload over old tools.php

    Open cp.php, tools.php and cp2.php and add the following link where you desire.


    code:--------------------------------------------------------------------------------
    - Delete 0 Post Members
    --------------------------------------------------------------------------------

    ----
    http://www.xmbforum.com/community/boards/viewthread.php?tid=736686

    Speak

    [Release] Mood Changer on Index

    Posted by astrasoul7 at 02:23 PM on September 17, 2003.

    Code By: parky
    For: 1.6/1.8 (Optional For 1.5 If You Installed The Mood Hack)
    Misc: This has a Few Fixes

    Puts an input box in the "Your Personal Features" bar for changing mood. Note that the user's current mood is filled in when the user loads the page; this is removed when the user clicks on the input box to change their mood:



    Then, when clicking "update mood":



    In index.php
    FIND:


    code:--------------------------------------------------------------------------------echo $header;
    --------------------------------------------------------------------------------



    ADD UNDERNEATH:


    code:--------------------------------------------------------------------------------// BEGIN MOODCHANGER HACK
    if($moodchange != "") {
    $mood = $moodchange;
    $mood = addslashes($mood);
    $db->query("UPDATE $table_members SET mood = '$mood' WHERE username = '$xmbuser'");
    $moodchanger = "$lang_moodchanged ";
    } else {
    $query = $db->query("SELECT mood FROM $table_members WHERE username = '$xmbuser'");
    $mood = $db->fetch_array($query);
    $moodchanger = "";
    $mood[mood] = stripslashes($mood[mood]);
    $moodchanger .= "
    action="index.php">$lang_newmood name="moodchange" class="moodchangercss" size="15" maxlength="15"
    value="$mood[mood]" onFocus='clearForm();' /> type="submit" class="moodchangercss" name="moodchangersubmit" value="$lang_changemood"
    />
    ";
    }
    //END MOODCHANGER HACK
    --------------------------------------------------------------------------------



    In language file:
    FIND:


    code:--------------------------------------------------------------------------------?>
    --------------------------------------------------------------------------------



    ADD ABOVE:


    code:--------------------------------------------------------------------------------$lang_moodchanged = "Your Mood has been updated.";
    $lang_newmood = "Today, my Mood is:";
    $lang_changemood = "Update Mood";
    --------------------------------------------------------------------------------



    In template index_welcome_member:
    FIND:


    code:--------------------------------------------------------------------------------$lang_launchbuddylist
    --------------------------------------------------------------------------------



    ADD UNDERNEATH:


    code:--------------------------------------------------------------------------------$moodchanger
    --------------------------------------------------------------------------------



    In template css
    FIND:


    code:--------------------------------------------------------------------------------
    --------------------------------------------------------------------------------



    ADD ABOVE:


    code:--------------------------------------------------------------------------------.moodchangercss {
    font-family: Verdana, arial, helvetica, sans-serif;
    font-size: 10px;
    font-weight: normal;
    background-color: $altbg1;
    color: $tabletext;
    }
    --------------------------------------------------------------------------------

    ---http://www.xmbhacks.co.uk/community/boards/viewthread.php?tid=150

    Speak

    [1.8 Release] Avatar Size Control Nexus Style

    Posted by astrasoul7 at 02:42 PM on September 17, 2003.

    Hack Name: Avatar Size Control Nexus Style

    Hack Description: This will allow a board administrator to set a restiction on avatar size in there admin panel for the forum.

    Code Designed For 1.8 By: Firewalker

    Compatible: XMB 1.8 Final & SP1

    Note: Posting or distributing this hack is not permitted without the consent of the author.

    Note: Backup all files, templates and database for your own safety before proceeding with this hack please!

    --
    http://www.xmbhacks.co.uk/community/boards/viewthread.php?tid=2195

    Speak

    [Release] Solve - Unsolve Threads

    Posted by astrasoul7 at 02:44 PM on September 17, 2003.

    Description: This hack will allow board staff members and the original thread author to mark a thread as solved. This feature can be enabled or disabled through the admin panel settings.

    Compatibility: XMB v1.8

    Code Designed By: John

    Example: http://www.computerelated.com/demos/xmb18

    Notes: Always backup your templates and files before installing!

    Notice: Posting or distributing this hack, without permission from the author, is not permitted.

    Attachment [Release] Solve - Unsolve Threads.txt (5.09kb)
    This file has been downloaded 37 times

    ---http://www.computerelated.com/forum/viewthread.php?tid=2458

    Speak

    so today

    Posted by astrasoul7 at 05:34 PM on September 17, 2003.

    was a nice day i had the day off but had a ton of homework to catch up on so i spent the entire day at college with sabi. I just had class and am dead tired even though its only about 6.31pm. I have work tomm, friday and saturday. friday i am also going to gurudawara and sunday i have comp class from 1pm to 6pm. o.0 and on sunday i have a test in that class. I am getting a lot of requests to install hacks into peoples boards as of late, and a few hosting requests. Maybe i should get on top of things, but i need to but an adapeter for my laptop still
    Currently reading: shakephere's much ado about nothing
    Currently feeling: tired

    1 Heard

    September 19th, 2003

    Work

    Posted by astrasoul7 at 05:47 PM on September 19, 2003.

    isn't so bad anymore, i suppose i'm finally getting the hang of everything. I missed my dad a lot today, but i refuse to tell anyone. I like to fake that i'm a stone cold person or something i guess, beacuse i think it helps me feel more confident that way. I wonder if my dad would be proud of me? its even okay if he yells at me, i just wish he were here..
    It seems to me that things are falling apart ever since he died, and its only been 2 months, and i should let it go, but i miss him... sorry..
    Currently reading: Shakesphere's Much Ado about nothing
    Currently feeling: sad

    1 Heard

    what potion are you?

    Posted by astrasoul7 at 06:10 PM on September 19, 2003.

    The Potion Maker
    astrasoul7ium is a translucent, crumbly tan powder made from the blood of a Snark.
    Mix with astrasoul7! Username:
    Yet another fun meme brought to you by rfreebern

    2 Heard

    September 21st, 2003

    update

    Posted by astrasoul7 at 03:01 PM on September 21, 2003.

    well i'm finally updating my hostees, getting rid of empty sites, ect.
    worked on blackflip a little,
    playing with this: cashoverload.com
    Currently reading: shasphere's much ado about nothing
    Currently feeling: bored

    1 Heard

    September 22nd, 2003

    so i suppose work isn't so bad..

    Posted by astrasoul7 at 05:23 PM on September 22, 2003.

    the GM really praised me today and said he was so glad that i was training at his store. he said he never met any other AMIT that was so enthoused and has such a zeal for learning new things. I wasn't flattered, i was trying to think of how to get better, (am i becoming a perfectionist?) never the less, Navjot picked me up from work and i came to class. At work i worked on the grill, kinda weird for me, as i was raised and still am a vegiterian. but never the less, i did it. People were so proud of me. I didn't quite see what the big deal was,
    Currently feeling: tired

    Speak

    neopets commerical

    Posted by astrasoul7 at 05:28 PM on September 22, 2003.

    anyone seen the neopets commerical on tv? i saw it on there last night and almost choked, i never knew that that site had a commerical.
    They were selling neopet toys that could talk to each other.
    heh,
    i don't know i thought it was kinda weirdish, just cuz i been in neopets too long maybe.

    6 Heard

    September 24th, 2003

    hp book

    Posted by astrasoul7 at 06:07 AM on September 24, 2003.

    i'm in the middle of reading harry potter the order of the pheniox,
    Work has been some what annoying. I have to work from 5pm to 2 am on thurs, friday and saturday. :-/ i hope i survive.
    Currently feeling: sleepy

    3 Heard

    Anime Bad Girl Quiz

    Posted by astrasoul7 at 06:38 AM on September 24, 2003.



    What Anime Bad Girl Are You?

    1 Heard

    Geek Quiz

    Posted by astrasoul7 at 07:37 AM on September 24, 2003.

    http://www.innergeek.us/geek.html
    47.33728% - Super Geek


    How much of a geek are you?

    6 Heard

    walked

    Posted by astrasoul7 at 03:12 PM on September 24, 2003.

    So i went to the forst preserve today with my cousin and we walked for over an hour. and then it started to rain. It wasn't hard rain it was just a little mist which was actually quite nice. So other then that i am at school. I suppose i really did not accomplish much at all today which is quite alright beacuse i had today off from work (for once!) and i've got to goto class in about an hour. I'm thinking of buying a car, prolly used. But am unsure as to which one to get. I would have liked to get an SUV but folks (as in people,) are telling me thats not a good idea. My mom plans to buy a new computer for herself, which would be nice and my little brother wants to move to hawaii, and eventhough i do not want him to he is determined to go.
    Currently reading: Rohwling's HP & the order of the pheniox
    Currently feeling: confused

    1 Heard

    September 27th, 2003

    I'm so tired

    Posted by astrasoul7 at 10:26 AM on September 27, 2003.

    i wish i would get up and do my homework, but working nights is taking a toll, i have to work again tonight and then i have sunday off, and i have class on sundays for 6 hours >_< .
    My mom is considering to move to hawaii as well if my brother is going to go. My elder sister is starting to look for a place for her and her family. about time.
    Currently feeling: tired

    Speak

    what type of journal quiz

    Posted by astrasoul7 at 12:18 PM on September 27, 2003.


    A true dark horse! Which Journal Site Are You?

    2 Heard

    high school streo quiz

    Posted by astrasoul7 at 12:41 PM on September 27, 2003.





    Take the What High School
    Stereotype Are You?
    quiz.

    3 Heard

    [1.8 Release] Xmb Ultimate Portal v1

    Posted by astrasoul7 at 01:01 PM on September 27, 2003.

    First finction for this portal.. displaying on the main page It has its own control panle ...Which allows you to:

    1-Modifying the settings ,number of posts, forum fid , etc...

    2-Creating new blocks with this options, Display orderup,down,mid), Display direction: (left,center,right), Active block: (on/off).

    3-Deleting & Editing blocks.

    4-Shout box manager: edit & delete comments.

    5-Portal pages: Creating new page editing &deleting pages ..pages link will appear directly on main menu ..

    6-Admin news: Adding new messages: (Expiration Time,Active,Who can view), editing deleting messages ... this messages will appear in the center blocks

    Based on advanced portal By: Firewalker & Eagle1

    Shout box codes Designed By: baquito

    Compatibility: XMB v1.8 AND XMB V1.8 SP1


    Code Designed By: FREEWILL46
    dwnld
    -----------------------------------------

    Speak