All source code in ASP/ VbScript Ask a ASP/ VbScript Pro Discussion Forum Categories All jobs in ASP/ VbScript
Quick,learn,speak,gibberish,sometimes,known,g
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
ASP/ VbScript Stats

 Code: 287,569. lines
 Jobs: 118. postings

 How to support the site

 
Sponsored by:
Quick Search for:  in language:    
You are in:
 
Login


 

 


Latest postings for ASP/ VbScript.
A simpla ASP Login & Logout Page of E-commerce website for Registred Users
By SJPVTLTD.COM on 2/2


A simplem ASP Login Page for Registered User
By SJPVTLTD.COM on 2/2


Click here to see a screenshot of this code!The Real Estate - Search Engine
By Talal Hussain Al-Balushi on 2/1

(Screen Shot)

A simple ASP Registeration Page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


A simple ASP Forgot Password page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


Simple ASP inquiry form for a simple or e-commerce website
By Tejas Jayantilal Gandhi on 1/28


A Simple ASP Change of Password Page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


Click here to put this ticker on your site!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!



 
 
   

Gibberish Encoding

Print
Email
 
article
Submitted on: 3/13/2002 9:37:00 PM
By: Lewis E. Moten III  
Level: Advanced
User Rating: By 7 Users
Compatibility:ASP (Active Server Pages), VbScript (browser/client side)

Users have accessed this article 27075 times.
 
author picture
(About the author)
 
     Quick way to learn how to speak gibberish. It is sometimes known as "girl-speak".

This article has accompanying files

 
 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.

Short story. My fiances sister came to visit and started speaking this stuff.

Long story - My fiances sister came to visit and started speaking this stuff. It is irritating to not know what she is saying in front of me behind my ears.

It is easy to catch on to what gibberish is by just listening to it. It is just english (or any language for that matter) Any time you come up on a vowel sound - you add "idig" before it. Example - GIRL translates to GidigIRL.

Beware of the silent "E" in words such as "love". "Love" would be "Lidigove". Because you can not hear the "E", it should not be encoded. The enclosed script does not take this into effect.

You do however, contintue to add more "idig"s for additional vowel sounds. Example - "Boyfriend" would be "Bidigoyfridigend".

Now - you may have noticed that "boyfriend" has two vowels next to each other - "I" and "E". However, these together make one vowel sound.

Another thing you may have noticed is that I changed the spelling of "boyfriend" to "boyfrend". This is a more of a phonetic spelling of the word. If you can spell words as you hear them, rather then spelling them correctly, you may have more success with the codes results that I have supplied.

Unfortunately for myself, my fiance and her sister speak a mix of English and Pig Latin with gibberish. Ugh.

Dim strMessage
Dim strGibberish

strMessage = InputBox("Enter a message to encode.", "Gibberish")

If Not (strMessage = vbCancel Or strMessage = "") Then
    strGibberish = ToGibberish(strMessage)
    MsgBox strGibberish, vbOKOnly + vbInformation, "Gibberish"
End If

Function ToGibberish(ByRef pstrMessage)

    Dim lstrGibberish
    Dim lstrLetter
    Dim llngLength
    Dim llngPosition

    llngLength = Len(pstrMessage)

    For llngPosition = 1 To llngLength

        lstrLetter = Mid(pstrMessage, llngPosition, 1)

        Select Case UCase(lstrLetter)
            Case "A", "E", "I", "O", "U"
                lstrGibberish = lstrGibberish & "idig"
        End Select

        lstrGibberish = lstrGibberish & lstrLetter

    Next

    ToGibberish = lstrGibberish

End Function

winzip iconDownload article

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.

Virus note:All files are scanned once-a-day by Planet Source Code for viruses,but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:
1)Re-scan downloaded files using your personal virus checker before using it.
2)NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.


Other 102 submission(s) by this author

 

 
 Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:
 
Your Vote!

What do you think of this article(in the Advanced category)?
(The article with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
3/14/2002 7:19:56 AMDavid Alden

Obviously this code can be easily cracked, but overall I think it's pretty cool, plus you've submitted a lot of other code to this site that I use all the time....I give you 5 big balls!!
(If this comment was disrespectful, please report it.)

 
3/14/2002 9:29:59 AMDon Hansen

Poor man.....
(If this comment was disrespectful, please report it.)

 
3/15/2002 3:04:59 PMNerd

strange man
(If this comment was disrespectful, please report it.)

 
1/20/2003 10:06:51 PM

Hi. i am just learning to speak gibberish and my friend already does. but her version is different than this one so how many versions are there?
(If this comment was disrespectful, please report it.)

 
1/24/2003 9:17:55 AM

Cant we all just stick to English? This is too much...lol
(If this comment was disrespectful, please report it.)

 
8/8/2003 8:26:28 PM

Giberish is soo hard to understand!
(If this comment was disrespectful, please report it.)

 
8/8/2003 9:02:06 PM

I want to know EVERY WORD in gibberish!
(If this comment was disrespectful, please report it.)

 
8/8/2003 9:10:24 PMLewis Moten

You can download Grady Ward’s Moby and run the gibberish script on each word. http://www.dcs.shef.ac.uk/research/ilash/Moby/

(If this comment was disrespectful, please report it.)

 
9/11/2003 10:33:30 AM

I am SO happy I found this site! This brings me back to my childhood - AND, I'm going to blow my nieces mind the next time I see her because I'll be able to respond!!
(If this comment was disrespectful, please report it.)

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author from the email account you registered on the site, so you can correspond directly.

NOTICE: The author of this article has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular article, please click here.
 
To post feedback, first please login.


 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Games | Feedback | Customize | ASP/ VbScript Home | Site Home | Other Sites | Open Letter from Moderators | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997-2010 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.   Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.