Jump to content
xisto Community

fallenfirebanshi

Members
  • Content Count

    20
  • Joined

  • Last visited

About fallenfirebanshi

  • Rank
    Newbie [Level 1]
  1. It sounds like the power supply has went dead, you should replace it and that will solve the problem.
  2. Hey Guys, Do any of you know anything about Down's Synrome? I have to do a project on it and its effects, so far I know that 'Downers' have a 3rd 21st chromozone which has strange affecs upon all of their systems, but apart from that I know nothing Thanking you in advance fallenfrebanshi
  3. This is a fairly dumb question, but... I went through high school and CEGEP with the general attitude that "time management is for losers", did what I wanted to do when I wanted to do it, etc. Yay. (I got stuff done based on either "I feel like doing homework now" or "Holy crap, it's due tomorrow" or, well, just not doing it, depending. Managed to do well enough (to get into any reasonable university), so I was happy. Now, I just realised that if I keep on doing this (having started university two weeks ago), I'll be completely screwed within a fairly short amount of time. Sooo... time management tips anyone? So far I've come up with "actually getting stuff done during my breaks" instead of "wasting 5 hours a day sitting in the math lounge chatting"... and "making use of libraries to study", and "setting aside time to do assignments", but I'm still a little baffled.Ideas?
  4. Hello everyone!I just wanna know if anyone ever confess with someone (ofcourse someone did.. ). Did you ever got rejected? lol It's ok if you don't wanna tell, cuz this is kinda private stuff. But i want to know everyone's experience! lol
  5. I like the glass look as well as the blue color, but it is mono and boring you should and more color to give it some pizazz!!
  6. Have you ever wondered the purpose of life?Is it just the aimless wandering through repititious routines day after day?Is it the constant longing and unhappily reaching for something better, yet not satisfied with what we have gained?Is is the constant heartbreaks, betrayals, lies, and denials...not learning from the experience?Sleep, wake up, eat, work, eat, more work, eat, Sleep....and on and on. What is the purpose of getting up in the morning to do the same thing over and over again? What do I have to live for?Then it dawned on me that Life is what we make of it... We have the power to make things happen....it's always been within our control. It is the journey, not the destination. Life is to love and be loved in return. Life to give, to be kind, to be respectful, and to be proud of who you are and what you have. Life is to live each day as if it is your last. When the journey ends, hopefully you are loved and the world is a better place because of what you've done.
  7. This post was orginally taken from http://forums.xisto.com/no_longer_exists/ which was apprently copied from http://forums.xisto.com/no_longer_exists/ and I copied it from this site!!!
  8. Yes the right answer to prove 2+2=5 using exceptionally large values of two
  9. Notice from truefusion: Copied from http://forums.xisto.com/no_longer_exists/ Warning issued.
  10. Learning Functions v1: W3schools Definition: So how the heck do you use a function? well you simple start off with the function methid <script>function functionname(var1,var2,...,varX){some code}</script> Functions are useful because you can do such big things easier in smaller commands. Lets take my example Lets change a whole forum link/name into a google link/text <script>function change(oldt,newt){var a = document.getElementsByTagName("b");for(x=0;x<a.length;x++){ if(a[x].firstChild.innerHTML == oldt){ a[x].innerHTML = newt; }}}change("Bug Reports","<a href='http://google.com'>Google</a>");</script> alright back to what we was talking about Big things made easier well lets look at the script line 1 = <script> -Starts our script out with the javascript tag line 2 = function change(oldt,newt){ -well here we go function we just declared a new function now we give our function a name sort of like an object and we called it "change" now we've made our new function now you ask whats inside the round braces (*,*) well there called perimeters. There are used to define what I call "SIMPLE CODING". With this perimeter defined we can now say what in the world we want to make. Well I said humm I want to make a custom url. so I had to think first what did I want to do. well simple I said we need to get the old link and replace it with somthen else. Well isn't that what i did? yes it is so we make up our varibles for the perimeters to be defined. oldt and newt. oldt is used as what I call the "OLD TEXT" and newt is what i call "NEW TEXT" so now we cleared that up. now we can use this function over and over and over. Whys that you ask? wat until line 4. line 3 = lets get our HTML TAG what tag do we need to grab to get information from. well we did that but using a DOM feature.So basicaly getElementByTagName means get HTML tag name but its actual tag. such as <span> or <font> or <i> etc.. get me? so we add document. infront of that so we can get that pages tag names. Then find a accorate match. line 4 = well so we have LOADS of tags on the page right? well we use the "for" method. this will loop threw all tags we define in the line. Lets say " for(x=0;x<a.length;x++){" x=0 were making that varible equal to 0 so we start at the very begining of the document to loop threw then were saying our x is less then a's length well that simple means while we search for all the x is less then the total number of "B" tags until it ends the loop and x++ means lets finish the x less then a part to make sure we get ALL bold tags on our page. So now we have gotten every bold tag on the page the script is on. now we have to narrow the search down to access a smaller part of information to edit. So we try matching stuff. line 5 = if(a[x].firstChild.innerHTML == oldt){ well to understand that you would need to see what the bold tag we are trying to access. <b><a href="http://z11.invisionfree.com/DemonicScriptsv2/index.php?showforum=1">Bug Reports</a></b> now that out the way. "B" is the parent node (most outter element) of "a". So firstChild means the first element inside the B tag since its written out like this: <b><a hre....>text</a></b> a is the first element. so thats "B"'s firstChild and only child. now we want to narrow the search down so we check what we are matching so innerHTML is equal to "Bug Reports" so we say "if a[x].firstChild is equal to our second perimiter in our function then do somthen. so later when we redeclair this function we define our perimeters to what we want to search for and make a perfect match. (Cool fact remember a was our tagname we matching and x is our loop we need to put them into a array form to try and grab all tags so that looks like so a[x]) so now we grabbed our content. So now we redeclair our second perimiter. "newt" so since we grabbed that content we force the script to make our innerHTML newt so now its running the script and saying : if you find this content then we will force you to turn into somthen we tell you to be. and the other lines 6-8 we are closing our tags: first line 6 = if tag,7= for loop tag,8 = function tag. and Thats how we make the function. Now you should understand how its made so when putting it into action you should understand why "Bug Reports" is where it is and "our new text such as google url" is where it is. then we do change("Bug Reports","<a href='http://'>HAHAHA</a>"); so now we redeclared our function above and its saying to our computers browser if we match Bug Reports then change Bug Reports into a random url. Hope this helps you because I spent 20 minutes on it 107 lines.
  11. Then your try and figure out what the right answer is doing it you way!!!
  12. I love the interent so much I don't know what I would do without it .Although you do need a fast connection to have more funThats why I wantted to see what other people think.
  13. Now obviously when I started drinking seriously (i.e. not just bucks fizz at christmas) I was about 13 and I drank beer because it was cool. Then I started drinking vodka because I could get drunk a whole lot quicker. Since then I've dried most alcoholic drinks including most cocktails though not all and I was wondering how everyone else's alcoholic taste has develope. Call it a study if you will but basically I'm just interested. Until about 8 months ago I had a strick alcohol diet. I drank Guiness in pints that had to be pored in three separate stages and takes 180 secsonds until its ready to drink. If I was going to drink a spirit then a drank Gin. NOw while these are still my favourite drinks my secondary tastes have changed. I used to never touch wine, could stand the stuff, especially red and yet now I often find myself drinking red wine(out of a gin/whiskey tumbler though, i don't want that whole wine conasiour (sp??) look) I used to never drink weak crappy lagers but since i've travelled the world and found out the only thing you can get in south east asia the light beer I've started enjoyin it more. Cider again is another drink I never used to have but I now find myself partaking of it whenever it's available. And other spirits have become nicer it seems. Vodka has never tasted as nice as it does now. Essentially what i'm asking is simply how have you tastes devoloped. I'm 19 now and when I was 18 I had refined my self to 2 regular drinks. Now i'm 19 i'll drink anything but straight whiskey but put something with it and I won't complain. So how have your tastes developed over time?Just my thoughts.
  14. Notice from truefusion: Copied from, http://physicsmathforums.com/showthread.php?t=422.
  15. Alright, let's not go superman here. If you were a superhero and only had ONE amazing super power, what would it be? This can be interesting, yes? Oh! And what would be your name? That's important : P Gee... this is a toughy, because I really don't know what to be... so many choices! OO! Okay, I'd be able change my size! Not fatter or skinnier... just bigger or smaller. I'd be called the Big Small Lady! AHAHAHAH! HAH!HAha... so yah, what would you be? And what's your awesome name?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.