Jump to content
xisto Community

icss21

Members
  • Content Count

    23
  • Joined

  • Last visited

  1. icss21

    Morse Code haha

    its eh...translation tool,the morse codesee here:MORSE[01] = ".-"MORSE[02] = "-..."MORSE[03] = "-.-."MORSE[04] = "-.."MORSE[05] = "."MORSE[06] = "..-."MORSE[07] = "--."MORSE[08] = "...."MORSE[09] = ".."MORSE[10] = ".---"MORSE[11] = "-.-"MORSE[12] = ".-.."MORSE[13] = "--"MORSE[14] = "-."MORSE[15] = "---"MORSE[16] = ".--."MORSE[17] = "--.-"MORSE[18] = ".-."MORSE[19] = "..."MORSE[20] = "-"MORSE[21] = "..-"MORSE[22] = "...-"MORSE[23] = ".--"MORSE[24] = "-..-"MORSE[25] = "-.--"MORSE[26] = "--.."MORSE[27] = "-.-.."MORSE[28] = "--.-."MORSE[29] = "----"MORSE[30] = ".---."MORSE[31] = "...-."MORSE[32] = "..--"just have the type-words change into these symbols,and also change back
  2. here are some sentences which i think may be very philosophic.from some books iv read.1.if there's a person who you think worths you protecting life long,happy what he/she happies,sad what he/she sads,worry what he/she worries,then the life gets no regrets.2.where make your heart calm,is your home.3.making faults once,twice,third times etc has no relates with the destiny,the space and the time.it just because we have a certain weakness in the character.4.people differ from each other.the day's going to rain so the birdss going to fly.some things we cannot control,then we control ourselves.5.many people will mark the footprints in one's life.no one knows when they come,when they go,where they from,where to go.having given you what he/she should bring to you,he/she will leave.naive people always want to seize their white snowy wings,mature people will stand silently-situ.
  3. very useful you know why... <A></A><P align=left><!-- saved from url=(0034)http://http://www.mathsking.net/morse.htm --><META content="MSHTML 6.00.2800.1106" name=GENERATOR><META content=FrontPage.Editor.Document name=ProgId><script language=JavaScript>var respecterCasse = true;var ignorerCasse = false;var motsEntiers = true;var touteSousChaine = false;function rechercher(cible,terme,respecterCasse,motSeulement) { var ind = 0; var suivant = 0; if (!respecterCasse) { terme = terme.toLowerCase(); cible = cible.toLowerCase(); } while ((ind = cible.indexOf(terme,suivant)) >= 0) { if (motSeulement) { var avant = ind - 1; var apres = ind + terme.length; if (!(espace(cible.charAt(avant)) && espace(cible.charAt(apres)))) { suivant = ind + terme.length; continue; } } return true; } return false;}function remplacer(cible, ancienTerme,nouveauTerme,respecterCasse,motSeulement) { var travail = cible; var ind = 0; var suivant = 0; if (!respecterCasse) { ancienTerme = ancienTerme.toLowerCase(); travail = cible.toLowerCase(); } while ((ind = travail.indexOf(ancienTerme,suivant)) >= 0) { if (motSeulement) { var avant = ind - 1; var apres = ind + ancienTerme.length; if (!(espace(travail.charAt(avant)) && espace(travail.charAt(apres)))) { suivant = ind + ancienTerme.length; continue; } } cible = cible.substring(0,ind) + nouveauTerme + cible.substring(ind+ancienTerme.length,cible.length); travail = travail.substring(0,ind) + nouveauTerme + travail.substring(ind+ancienTerme.length,travail.length); suivant = ind + nouveauTerme.length; if (suivant >= travail.length) { break; } } return cible;}function espace(check) { var espace = " ,/<>?!`';:%^&()=|{}" + '"' + "\\\n\t"; for (var i = 0; i < espace.length; i++) if (check == espace.charAt(i)) { return true; } if (check == "") { return true; } if (check == null) { return true; } return false;}// STOP HIDING -->function creerMatrice(num) { for (var i=1; i <= num; i++) this[i] = ""; this.length = num;}var MORSE = new creerMatrice(26+6);var AVIATION = new creerMatrice(26+6);MORSE[01] = ".-"MORSE[02] = "-..." MORSE[03] = "-.-."MORSE[04] = "-.."MORSE[05] = "."MORSE[06] = "..-."MORSE[07] = "--."MORSE[08] = "...."MORSE[09] = ".."MORSE[10] = ".---"MORSE[11] = "-.-"MORSE[12] = ".-.."MORSE[13] = "--"MORSE[14] = "-."MORSE[15] = "---"MORSE[16] = ".--."MORSE[17] = "--.-"MORSE[18] = ".-."MORSE[19] = "..."MORSE[20] = "-"MORSE[21] = "..-"MORSE[22] = "...-"MORSE[23] = ".--"MORSE[24] = "-..-"MORSE[25] = "-.--"MORSE[26] = "--.."MORSE[27] = "-.-.."MORSE[28] = "--.-."MORSE[29] = "----"MORSE[30] = ".---."MORSE[31] = "...-."MORSE[32] = "..--"CARACTERES = "ABCDEFGHIJKLMNOPQRSTUVWXYZ[@*]$#"function CODE(LETTRE){if(LETTRE == " "){return " " }for(tg=0; tg<=26+6; tg++) {var LT = CARACTERES.charAt(tg)if(LT == LETTRE){return MORSE[tg +1] }}return ""}function GO() {var text = document.forms[0].valeur.valuetext = text.toUpperCase()var MSG = ""var LTR = ""NUM = text.lengthfor(t = 0; t <= NUM-1; t++){if (text.charAt(t) == '^') { LTR = text.charAt(++t) switch (LTR) { case 'C': case 'c': LTR = "["; break; case 'G': case 'g': LTR = "@"; break; case 'H': case 'h': LTR = "*"; break; case 'J': case 'j': LTR = "]"; break; case 'S': case 's': LTR = "$"; break; case 'U': case 'u': LTR = "#"; break; }} else { LTR = text.charAt(t)}MSG = MSG + ( CODE(LTR) + " ");}document.forms[0].OUTPUT.value = MSG}function UNGO(){var text = document.forms[0].OUTPUT.valuetext = text.toUpperCase()var MSG = text + " "for(th=0;th<=25+6;th++){AA = MORSE[th +1]BB = CARACTERES.charAt(th)MSG = remplacer(MSG,AA,BB,false, true)}MSG = remplacer(MSG," ","%")MSG = remplacer(MSG," ","")MSG = remplacer(MSG,"%"," ")document.forms[0].valeur.value = MSG} </SCRIPT><B><I><FONT face="Comic Sans MS" size=4>MORSE</FONT></I></B><BR></P><TABLE height=152 cols=1 width="100%" border=0><TBODY><TR><TD height=1><FORM name=entree></TD></TR><TR><TD height=18><B><FONT face=Fixedsys size=4>alphabet:</FONT></B></TD></TR><TR><TD height=25><INPUT style="WIDTH: 377px; HEIGHT: 21px" size=50 name=valeur> <INPUT onclick=GO() type=button size=15 value=translate to morse name=ok></TD></TR><TR><TD height=19><B><FONT face=Fixedsys size=4>morse code:</FONT></B></TD></TR><TR><TD height=25><INPUT style="WIDTH: 377px; HEIGHT: 21px" size=52 name=OUTPUT> <INPUT onclick=UNGO() type=button size=15 value=translate to alphabet name=decode></TD></TR></TBODY></TABLE><BR><INPUT type=reset value=delete><BR></FORM>
  4. the romance of three kingdomsmy favourite book since i was 10 years old.but this name translated a bit strange,its about the war and statecraft, no romance haha...
  5. like it very much.i appreciate it coz i cant write such a story.
  6. i got the invitation from my friend.there seemed to be some sites which provide the invitations,what you need to do is to type your email address and wait for the letter they sent to you which hasthe active link inside.i tried once,but when i open the active window,google told me it was invalid because of time.so perhaps they/v got too much invitations from the donators and not so many people went to ask them for one.what a pity i think.but iv got question anyone could answer me?deos google still give out invitations?why i havent.
  7. just have watched a cartoon these days,refered to this in some aspect.the meaning of lifeyour a single object on the earth-not like the atmosphere,the light or some other things.the objects are now exist so we wont know the feeling of disappear,one day if things changed,you should find that the meaning of life is that life has meaning itself.it lets the object know itself has the meaning.
  8. not very deep i thinkgo to anfield and watch a match(of course we will win)travel round the worldhave a hotel in Shangri-lago to tibet
  9. personally i prefer maxxed. what about you guys
  10. i recommend these tow sites: http://php.resourceindex.com/ http://cgi.resourceindex.com/
  11. icss21

    Security Software?

    eTrust as the firewallnorton use up a lot of cpu,my experience told me it could only do one thing well-make your computer slower and slower...
  12. anyway he's a great player.he did all he could to help the team go further. iv got no interest to know what happened at that time. no one could tell who was right or who was wrong. in my country's language,there's a word called "blood character",not very exactly,this means you do it because your body did it already,it hadnt thought over by the brain before you actioned. i appreciate it.
  13. i want to put the translation box onto the webpage,does anyone get the code?
  14. football,moto gp,f1have no interest in basketball.coz its too easy/quickly to put the ball into the net i prefer to be in the sofa for more than 100 minutes only to see a goal scored...
×
×
  • 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.