XjAA's User edducation application [DENIED]

Discussion in 'Archives' started by Xjaa, Jun 23, 2007.

XjAA's User edducation application [DENIED]
  1. Unread #1 - Jun 23, 2007 at 7:29 PM
  2. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    Xjaa's user edducation application


    Guide 1,

    Installing a font,

    Overview,


    Most fonts are .TTF (true type font)

    This tutorial does not cover downloading fonts
    or how to un-zip them,

    (Use winrar or winzip for easy unzipping)


    Step1, You are going to want to locate your fonts
    folder,
    Type "Fonts" into the run function of your computer
    or C:\WINDOWS\FONTS is the default location

    Step 2,
    You now need to locate your downloaded package

    (Save the download to desktop for easy locating)

    Once you un-zip it (click it if using winrar or winzip)

    Step 3,
    Locate and drag the .TTF file
    to your fonts folder,
    Picture bellow

    [​IMG]

    You should see this conforming the font is being extracted to your
    fonts folder

    [​IMG]

    Congratulations Font installed it should now
    be visible in your fonts folder and should be usable
    in ALL word processing programs.

    ____________________________________________________

    Guide 2,

    Assigning hotkeys to programs or files

    Overview,


    This is helpful for thoses who have slower computers
    because it saves the user having to scroll though
    all the start menus sub-meunus and folders

    Step 1,

    Locate the item you want to assign hotkeys
    for
    Right click on it and select "properties"

    [​IMG]

    Step 2,

    Select the Shortcut tab

    [​IMG]

    Then under shortcut key
    enter the key combination that
    you want for that application

    you notice you either need to use
    ctrl+shift+w/e
    ctrl+alt+w/e
    alt+shift+w/e

    you can use other keys like caps lock but
    ctrl+shift+w/e
    ctrl+alt+w/e
    alt+shift+w/e

    are required,

    Step 3,

    Click apply

    You have sucessfully assigned hotkeys for that item

    ________________________________________

    Guide 3,

    Scheduling a task in Windows XP

    Overview: this is helpful for many who like programs like Firefox/ IE
    or media player to run on startup. + its really cool.

    Step one,

    Click: Start>AllPrograms>Accessories>Systemtools>scheduledtask

    Now a new window should open with one icon saying add scheduled
    task,

    Step Two: Click that icon the "new task" wizard should open

    Now you should have the option to select the program that
    you want to run from a drop down list. (the list is alphebetical)


    Step Three,

    Once you have found the program that you want to schedule
    select it and click next

    Step Four,

    Select when you want the program to run,

    Either,

    Daily
    Weekly
    Monthly
    One time only
    When my computer starts
    when I log in


    in some cases you will have to select the date that you want the program to run

    Step Five,

    You need to enter the name of the user you want to run the task under,

    an example is if your account is name "sythe"

    the you would select sythe and enter sythe's password twice in the two

    other boxes to confirm.

    Step Six,

    Congratulation you are done.

    The task will run at the alloted time.


    ______________________________________

    Guide 4

    asic Html



    Overview,

    HTML means hyper text markup language,
    HTML is used to format and edit webpages
    HTML is written using "tags" "<" and ">"
    HTML is easy to understand!


    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
    <head>
    <title>Pimpjuice</title>
    </head>
    <body>
    <h1>Pimp Juice </h1>
    <p>Pimp Juice, currently only available in the Extra Strength formula,<br />
       it is a healthy, non-carbonated energy drink possessing a tropical berry flavor.</p><br />
    <p>Pimp Juice’s artificial coloring gives it a smooth neon green glow, while its <em>10 %</em><br />
     apple juice content adds a natural sweetness to its taste.<br /> 
     Providing <em>100%</em> of the body’s needed vitamin <em>C, B2, B3, B5, B6, and B12</em>,<br />
     Pimp Juice works to increase the drinker’s energy supply, which in turn enhances mental awareness,<br />
     stimulates the metabolism, and battles bodily sickness.  In addition, <br />
    an <em>8.4 oz</em> serving of pimp juice contains <em>7mg</em> of Taurine<br /> 
    a conditionally essential amino acid that aids the body in its absorption<br />
     of nutrients needed for optimal mental and physical performance.<br />
      Pimp Juice acquires its boost from Caffeine, 81 mg per 8 ounce serving, <br />
    and Guarana, an all-natural tropical ingredient.  When roasted,<br />
     Guarana seeds produce stimulating effects similar to caffeine.<br />
      Pimp Juice also includes <em>250 mg</em> of D-Ribose and approximately <em>130 calories</em> per serving.</p><br />
    </body>
    </html>
    So, what does that look like? a bunch of jibberish?

    copy this into notepad and save it to your desktop as pimpjuice.html

    click on it.

    Suprised?

    Its a verrrrrry basic webpage,

    Lets break it down though

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    ok this ^ is your line where you declare the type of HTML you are using note the "!DOCTYPE"
    -this should be thte first line of your html
    -you are not expected to memorise this, honestly you can just copy it from here.


    Code:
    <html></html>
    theese^ are html tags, they announce when you start using (<html> ) and stop using ( </html> )
    -the start html tag ( <html> ) should be the second line
    -the end html tag ( </html> ) should be the Last line

    Code:
    <head> </head> 
    ^theese tags are used to seperate the doccument into two different sections
    <head> and <body>
    -in the head you should have the <title> </title> tags
    -this is the top section (think of head like a peak)
    - <body> </body> is the bottom section

    Code:
    <body></body>
    theese tags declare the body of the webpage
    -they work in tangent with the <head><head/> tags to sepearte webpages into two parts

    Code:
    <title> </title>
    ^theese^ are title tags, they state when the title of the doccument starts and ends
    -the title can be encompased in <hx> </hx> tags
    - the title should be the first real text in your doccument

    Code:
    <h1></h1>
    theese are heading tags they make the text for titles
    -the heading tags go from biggest <h1> to smallest <h6>
    -the <h1> tags should' only be used once
    -the tags should' be used in sucession h1-h6

    Code:
    <em></em>
    theese tags are italics
    -em stands for emphasis
    -theese tags are started first and ended last
    eg. "<em>then<h1>emgoesfirst</h1>then</em>"

    Code:
    <br />
    this code means page break.
    -there are no closing tags for the <br /> tag
    -the <br /> tag closes it's self with "/>"

    Code:
    <p> </p> 
    theese are the easiest to understand tags, paragraph tags
    -the text between the tags becomes a paragraph seperate from the other lines
    -as spacing does not exist in a HTML doccument you have to use theese tags, you can't just leave a line open.


    After breaking down that very basic HTML webpage you will probably realise that HTML restricts your creative flow alot.

    You are correct, there is a more complicated split off of the HTML language called PHP (Hyper text Preprocessor)

    PHP is used to create more dynamic webpages, www.sythe.org and www.facebook.com are some examples of sites made in PHP

    HTML takes some devotion to learn but once you master it you can create some very professionl webpages with it.
    ofcourse you could always just use Dreamweaver to make your webpages, but dreamweaver has a bad habit of throwing in
    some random lines of code that are unnessecary. For best results I reccomend taking the time to learn the coding yourself.

    _______________________________________________________________________

    Guide 5,
    How to add album art to windows media player 11


    Overview

    This Guide is for those easily confused people who do not know how to use the newest feature of media player,

    ALBM ART it enhances the viewing experience alot you can trust me on that,

    IF you do not have the latest Windows Media Player you can downlod it here

    http://www.microsoft.com/windows/windowsmedia/download/AllDownloads.aspx?displang=en&qstechnology=

    _____

    On with the guide

    _____

    Step One,
    Locate the album art for the album you are looking for,
    some great places to look are

    - www.google.com
    - www.amazon.com
    - www.photobucket.com

    Once you find the album art you need to save it to your my pictures folder

    Step Two,

    Locate the album art on your computer and pull up that folder and media player as shown below

    [​IMG]


    Step Three,

    As in the picture above you need to drag the album art from the folder onto the "paste art here" space

    Step Four,

    If you drag the art correctly the grey "paste art here" space should look like this

    [​IMG]

    Congratulations Once you have all your art added your media player will look much better like this

    [​IMG]


    ____________________________

    END GUIDES

    ____________________________


    100 words about why I shoud be a user educator.


    Originally user edducation seemed like just another rank on sythe. That was before I realised
    how it seperated the more intelligent users from the thicker ones, that left me with a challenge. A chalenge
    to prove to the rest of sythe that I was smart enough to join that group of intelligent users, Not only smart enough
    but motivated enough so that I could help others reach their goals. User edducation is not just a rank it is a challenge,
    and like all challenges it deserves a worthy goal, that goal is helping others suceed at what they lack.
    I am motivated, I am Intelligent, I Deserve User edducation.


    ___________________________

    End note

    ___________________________

    If you have any questions about anything feel free to add me on msn and I will try to assist you.

    [email protected]
     
  3. Unread #2 - Jun 23, 2007 at 7:34 PM
  4. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    XjAA's User edducation application [DENIED]

    Add some color :).
     
  5. Unread #3 - Jun 23, 2007 at 7:38 PM
  6. Live To Die
    Joined:
    Jun 20, 2007
    Posts:
    147
    Referrals:
    0
    Sythe Gold:
    0

    Live To Die Active Member
    Banned

    XjAA's User edducation application [DENIED]

    Pretty nice guides, I like the font one :)
     
  7. Unread #4 - Jun 23, 2007 at 7:45 PM
  8. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    thanks you live to die, Deacon I added colors just for you :X
     
  9. Unread #5 - Jun 23, 2007 at 8:03 PM
  10. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    XjAA's User edducation application [DENIED]

    Dear Xjaa,

    Thank you for applying to be a part of the User Education team. Your application has been viewed, and is set to Pending. Presently, a poll on whether the User Education team feels your application should be approved or denied has been created.

    If at any point you desire to change something in your application, simply inform us, via post, of what changes occured. Sometimes the smallest tweak can change a User Educator's vote. Should you wish to withdrawal your application at any time, please notify a Head User Educator, and they will remove it.

    Again, good luck on being accepted.

    Pending.
     
  11. Unread #6 - Jun 23, 2007 at 8:43 PM
  12. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    will my choice of music change any votes?
     
  13. Unread #7 - Jun 23, 2007 at 8:48 PM
  14. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    XjAA's User edducation application [DENIED]

    Haha! Hopefully not.. you'd be surprised at what some people will say regarding applications. If they don't give a good reason, however, then their vote is void.
     
  15. Unread #8 - Jun 23, 2007 at 10:01 PM
  16. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    well, If so I'm sure I should be fine
     
  17. Unread #9 - Jun 24, 2007 at 1:23 AM
  18. SlaveOfTheBeast
    Joined:
    Mar 4, 2007
    Posts:
    3,361
    Referrals:
    0
    Sythe Gold:
    0

    SlaveOfTheBeast Official hater of all things emo
    Banned

    XjAA's User edducation application [DENIED]

    Nice guides!
     
  19. Unread #10 - Jun 24, 2007 at 3:46 AM
  20. Quhx
    Joined:
    Jan 21, 2007
    Posts:
    887
    Referrals:
    0
    Sythe Gold:
    0

    Quhx Apprentice
    Banned

    XjAA's User edducation application [DENIED]

    Wow, thats are some nice detailled guides you got there :O
    I like the task-scheduling and hotkey guide a lot ^^
     
  21. Unread #11 - Jun 24, 2007 at 10:24 AM
  22. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    ya, me too.


    I love how everytime I start up my computer notepad and media player start themselves.
     
  23. Unread #12 - Jun 24, 2007 at 10:41 AM
  24. Oh Jesus
    Joined:
    Aug 2, 2005
    Posts:
    1,087
    Referrals:
    0
    Sythe Gold:
    2
    Vouch Thread:
    Click Here

    Oh Jesus Guru

    XjAA's User edducation application [DENIED]

    Hey just used your font installing guide :)
     
  25. Unread #13 - Jun 24, 2007 at 10:50 AM
  26. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    It worked fine?
     
  27. Unread #14 - Jun 24, 2007 at 10:51 PM
  28. the_wippit
    Joined:
    Jan 21, 2007
    Posts:
    1,507
    Referrals:
    0
    Sythe Gold:
    0

    the_wippit Guru
    Banned

    XjAA's User edducation application [DENIED]

    actually helpful guides, most are ammusing, this is truely helpful, ide vote for him
     
  29. Unread #15 - Jun 24, 2007 at 11:06 PM
  30. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    I tried to write about tricks and tips for the computer I was already using that I thought I should share.

    Your comments are appreciated
     
  31. Unread #16 - Jun 25, 2007 at 12:57 AM
  32. Gone Fishing
    Joined:
    Feb 5, 2007
    Posts:
    896
    Referrals:
    3
    Sythe Gold:
    0

    Gone Fishing Apprentice

    XjAA's User edducation application [DENIED]

    Best of luck, I really liked those guides :p.
     
  33. Unread #17 - Jun 25, 2007 at 8:38 PM
  34. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    XD
    they are some good guides :)
     
  35. Unread #18 - Jun 25, 2007 at 10:55 PM
  36. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    How longer untill the decision is made?
     
  37. Unread #19 - Jun 25, 2007 at 11:30 PM
  38. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    XjAA's User edducation application [DENIED]

    This poll will close on 06-26-2007 at 08:10 PM
     
  39. Unread #20 - Jun 25, 2007 at 11:53 PM
  40. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    XjAA's User edducation application [DENIED]

    alright thanks hopefully im doing well
     
< Selling lvl 103 main with barrow gloves (Legit) | The only mod's mm application: getting proofs >

Users viewing this thread
1 guest


 
 
Adblock breaks this site