Gibberish Encoding
Quick way to learn how to speak gibberish. It is sometimes known as "girl-speak".
AI
AI சுருக்கம்: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
மூலக் குறியீடு
<P> Short story. My fiances sister came to visit and started speaking this stuff. </P> <P> 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. </P> <P> 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. </P> <P> 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. </P> <P> You do however, contintue to add more "idig"s for additional vowel sounds. Example - "Boyfriend" would be "B<B>idig</B>oyfr<B>idig</B>end". </P> <P> Now - you may have noticed that "boyfriend" has two vowels next to each other - "I" and "E". However, these together make one vowel sound. </P> <P> 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. </P> <P> Unfortunately for myself, my fiance and her sister speak a mix of English and Pig Latin with gibberish. Ugh. </P> <LINK rel="stylesheet" type="text/css" href="http://www.lewismoten.com/Inc_Client/vbColorCode.css"> <SPAN class="vbScript"><SPAN class="vbScript-Reserved">Dim</SPAN> strMessage<BR> <SPAN class="vbScript-Reserved">Dim</SPAN> strGibberish<BR> <BR> strMessage <SPAN class="vbScript-Operator">=</SPAN> <SPAN class="vbScript-Function">InputBox</SPAN>(<SPAN class="vbScript-String">"Enter a message to encode."</SPAN>, <SPAN class="vbScript-String">"Gibberish"</SPAN>)<BR> <BR> <SPAN class="vbScript-Reserved">If</SPAN> <SPAN class="vbScript-Reserved">Not</SPAN> (strMessage <SPAN class="vbScript-Operator">=</SPAN> <SPAN class="vbScript-Constant">vbCancel</SPAN> <SPAN class="vbScript-Reserved">Or</SPAN> strMessage <SPAN class="vbScript-Operator">=</SPAN> <SPAN class="vbScript-String">""</SPAN>) <SPAN class="vbScript-Reserved">Then</SPAN><BR> strGibberish <SPAN class="vbScript-Operator">=</SPAN> ToGibberish(strMessage)<BR> <SPAN class="vbScript-Function">MsgBox</SPAN> strGibberish, <SPAN class="vbScript-Constant">vbOKOnly</SPAN> <SPAN class="vbScript-Operator">+</SPAN> <SPAN class="vbScript-Constant">vbInformation</SPAN>, <SPAN class="vbScript-String">"Gibberish"</SPAN><BR> <SPAN class="vbScript-Reserved">End</SPAN> <SPAN class="vbScript-Reserved">If</SPAN><BR> <BR> <SPAN class="vbScript-Reserved">Function</SPAN> ToGibberish(<SPAN class="vbScript-Reserved">ByRef</SPAN> pstrMessage)<BR> <BR> <SPAN class="vbScript-Reserved">Dim</SPAN> lstrGibberish<BR> <SPAN class="vbScript-Reserved">Dim</SPAN> lstrLetter<BR> <SPAN class="vbScript-Reserved">Dim</SPAN> llngLength<BR> <SPAN class="vbScript-Reserved">Dim</SPAN> llngPosition<BR> <BR> llngLength <SPAN class="vbScript-Operator">=</SPAN> <SPAN class="vbScript-Reserved">Len</SPAN>(pstrMessage)<BR> <BR> <SPAN class="vbScript-Reserved">For</SPAN> llngPosition <SPAN class="vbScript-Operator">=</SPAN> 1 <SPAN class="vbScript-Reserved">To</SPAN> llngLength<BR> <BR> lstrLetter <SPAN class="vbScript-Operator">=</SPAN> <SPAN class="vbScript-Function">Mid</SPAN>(pstrMessage, llngPosition, 1)<BR> <BR> <SPAN class="vbScript-Reserved">Select</SPAN> <SPAN class="vbScript-Reserved">Case</SPAN> <SPAN class="vbScript-Function">UCase</SPAN>(lstrLetter)<BR> <SPAN class="vbScript-Reserved">Case</SPAN> <SPAN class="vbScript-String">"A"</SPAN>, <SPAN class="vbScript-String">"E"</SPAN>, <SPAN class="vbScript-String">"I"</SPAN>, <SPAN class="vbScript-String">"O"</SPAN>, <SPAN class="vbScript-String">"U"</SPAN><BR> lstrGibberish <SPAN class="vbScript-Operator">=</SPAN> lstrGibberish <SPAN class="vbScript-Operator">&</SPAN> <SPAN class="vbScript-String">"idig"</SPAN><BR> <SPAN class="vbScript-Reserved">End</SPAN> <SPAN class="vbScript-Reserved">Select</SPAN><BR> <BR> lstrGibberish <SPAN class="vbScript-Operator">=</SPAN> lstrGibberish <SPAN class="vbScript-Operator">&</SPAN> lstrLetter<BR> <BR> <SPAN class="vbScript-Reserved">Next</SPAN><BR> <BR> ToGibberish <SPAN class="vbScript-Operator">=</SPAN> lstrGibberish<BR> <BR> <SPAN class="vbScript-Reserved">End</SPAN> <SPAN class="vbScript-Reserved">Function</SPAN><BR> <BR> </SPAN>
அசல் கருத்துகள் (3)
வேபேக் மெஷினிலிருந்து (Wayback Machine) மீட்டெடுக்கப்பட்டது