Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 (edited) Ok, completely new translator. It has been completely made by me (my first GUI yey) and I hope you enjoy it. Here is the code and attached is the .au3 for it.expandcollapse popup; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.0 ; Language: English ; Platform: Win9x / NT ; Author: A.N.Other <myemail@nowhere.com> ; ; Script Function: ; Template AutoIt script. ; ; ---------------------------------------------------------------------------- ; Setup some useful options that you may want to turn on - see the helpfile for details. ; Expand all types of variables inside strings ;Opt("ExpandEnvStrings", 1) ;Opt("ExpandVarStrings", 1) ; Require that variables are declared (Dim) before use (helps to eliminate silly mistakes) ;Opt("MustDeclareVars", 1) ; ---------------------------------------------------------------------------- ; Script Start - Add your code below here ; ---------------------------------------------------------------------------- ;The Reaper's elite translator. (Hacked by the Black One) ;Version 1.7 ;@Created by the Reaper. ;left to right, top to bottom, length, width. #include "GUIConstants.au3" $window1 = GUICreate("The Reaper's 1337 Translator -Version 1.7", 700, 400) GUISetBkColor(0x000000) GUICtrlCreateLabel("The Reaper's 1337 Translator", 225, 10, 300, 300) GUICtrlSetColor(-1,0xff0000) GUICtrlSetFont(-1, 14, 40) GUICtrlCreateLabel("(|-|@¢ked bÿ he ßL@Ç|< 0n3)", 265, 40, 300, 300) GUICtrlSetColor(-1,0xff0000) GUICtrlSetFont(-1, 10, 10) $translate = GUICtrlCreateButton("&Translate", 10, 120, 90, 25) $detranslate = GUICtrlCreateButton("&Detranslate", 10, 150, 90, 25) $copy = GUICtrlCreateButton("&Add to Clipboard", 10, 180, 90, 25) $save = GUICtrlCreateButton("&Save to File", 10, 210, 90, 25) $instructions = GUICtrlCreateButton("&Instructions", 10, 240, 90, 25) $clearbox = GUICtrlCreateButton("&Clear Box", 10, 270, 90, 25) GUICtrlCreateLabel("Reaper Industries- ßringing ÿ0u 3h m0s 3|i3 shi 0n 3h inerne.", 160, 340, 400, 400) GUICtrlSetColor(-1,0xff0000) GUICtrlSetFont(-1, 10, 40) $input = GUICtrlCreateEdit("Enter the text you wish to translate / detranslate here.", 160, 120, 475, 172, 0x00200000) $style = BitOr($ES_WANTRETURN, $WS_VSCROLL, $ES_AUTOVSCROLL) $window2 = GUICreate("TheReaper's 1337 Translator -Instructions", 700, 400) GUISetBkColor(0x000000) GUICtrlCreateLabel("Instructions", 285, 10, 300, 300) GUICtrlSetColor(-1,0xff0000) GUICtrlSetFont(-1, 14, 10) $help = GUICtrlCreateEdit("Welcome to the Reaper's elite translator. It can translate, and detranslate the Reaper's standard ASCII character alphabet for you. Type in the normal text you wish to translate into the edit box, then press one of the buttons on the left to Translate, or Detranslate your text. Press the Clear Box button to clear your text. To copy the text that you have already translated / detranslated, press the Add to Clipboard button which will copy it for you. If you wish to save your translated / detranslated text to a .txt Notepad file then press the Save File button and chose a location to save your file. Also, I have added hotkeys for all of the buttons to make it easier. Alt + T will translate your text. Alt + D will detranslate your text. Alt + s will save your text to a file. Alt + C will clear the box. Alt + a will add your text to the clipboard. Alt + i will take you back to this page. And Alt + r will exit your out of this page. Enjoy.", 100, 100, 500, 200, $style) GUICtrlSetState($help, $GUI_DISABLE) $return = GUICtrlCreateButton("&Return to Main Page", 295, 370, 110, 25) GUISwitch($window1) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $clearbox GuiCtrlSetData($input, "") Case $msg = $instructions GUISetState(@SW_HIDE) GUISwitch($window2) GUISetState(@SW_SHOW) Case $msg = $return GUISetState(@SW_HIDE) GUISwitch($window1) GUISetState(@SW_SHOW) Case $msg = $translate $translated = Advanced(GUIRead($input)) GUICtrlSetData($input, "") GUICtrlSetData($input, $translated) Case $msg = $detranslate $detranslated = DetranslateFunc(GUIRead($input)) GUICtrlSetData($input, "") GUICtrlSetData($input, $detranslated) Case $msg = $copy ClipPut(GUIRead($input)) Case $msg = $save $writing = GUIRead($input) $file = FileSaveDialog("Where would you like to save the file?", @DesktopDir, "Text files (*.txt)") FileWrite($file & ".txt", $writing) EndSelect Wend Func Advanced($text) $lowera = StringReplace($text, "a", "@", 0, 1);Replaces lowercase letters $lowerb = StringReplace($lowera, "b", "b", 0, 1) $lowerc = StringReplace($lowerb, "c", "¢", 0, 1) $lowerd = StringReplace($lowerc, "d", "d", 0, 1) $lowere = StringReplace($lowerd, "e", "e", 0, 1) $lowerf = StringReplace($lowere, "f", "f", 0, 1) $lowerg = StringReplace($lowerf, "g", "g", 0, 1) $lowerh = StringReplace($lowerg, "h", "h", 0, 1) $loweri = StringReplace($lowerh, "i", "i", 0, 1) $lowerj = StringReplace($loweri, "j", "j", 0, 1) $lowerk = StringReplace($lowerj, "k", "k", 0, 1) $lowerl = StringReplace($lowerk, "l", "|", 0, 1) $lowerm = StringReplace($lowerl, "m", "m", 0, 1) $lowern = StringReplace($lowerm, "n", "n", 0, 1) $lowero = StringReplace($lowern, "o", "0", 0, 1) $lowerp = StringReplace($lowero, "p", "p", 0, 1) $lowerq = StringReplace($lowerp, "q", "q", 0, 1) $lowerr = StringReplace($lowerq, "r", "r", 0, 1) $lowers = StringReplace($lowerr, "s", "s", 0, 1) $lowert = StringReplace($lowers, "t", "", 0, 1) $loweru = StringReplace($lowert, "u", "u", 0, 1) $lowerv = StringReplace($loweru, "v", "v", 0, 1) $lowerw = StringReplace($lowerv, "w", "w", 0, 1) $lowerx = StringReplace($lowerw, "x", "x", 0, 1) $lowery = StringReplace($lowerx, "y", "ÿ", 0, 1) $lowerz = StringReplace($lowery, "z", "z", 0, 1) ;End of LowerCase ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;Capital Letters $higha = StringReplace($lowerz, "A", "4", 0, 1);Replaces capital letters $highb = StringReplace($higha, "B", "ß", 0, 1) $highc = StringReplace($highb, "C", "Ç", 0, 1) $highd = StringReplace($highc, "D", "|)", 0, 1) $highe = StringReplace($highd, "E", "3", 0, 1) $highf = StringReplace($highe, "F", "F", 0, 1) $highg = StringReplace($highf, "G", "G", 0, 1) $highh = StringReplace($highg, "H", "|-|", 0, 1) $highi = StringReplace($highh, "I", "1", 0, 1) $highj = StringReplace($highi, "J", "J", 0, 1) $highk = StringReplace($highj, "K", "|<", 0, 1) $highl = StringReplace($highk, "L", "L", 0, 1) $highm = StringReplace($highl, "M", "/\/\", 0, 1) $highn = StringReplace($highm, "N", "/\/", 0, 1) $higho = StringReplace($highn, "O", "()", 0, 1) $highp = StringReplace($higho, "P", "P", 0, 1) $highq = StringReplace($highp, "Q", "Q", 0, 1) $highr = StringReplace($highq, "R", "R", 0, 1) $highs = StringReplace($highr, "S", "$", 0, 1) $hight = StringReplace($highs, "T", "7", 0, 1) $highu = StringReplace($hight, "U", "|_|", 0, 1) $highv = StringReplace($highu, "V", "\%", 0, 1) $highw = StringReplace($highv, "W", "VV", 0, 1) $highx = StringReplace($highw, "X", "><", 0, 1) $highy = StringReplace($highx, "Y", "¥", 0, 1) $highz = StringReplace($highy, "Z", "Z", 0, 1) Return $highz EndFunc Func DetranslateFunc($text) $replaceb = StringReplace($text, "ß", "B", 0, 1);replaces strings $replaceo = StringReplace($replaceb, "()", "O", 0, 1) $replacea = StringReplace($replaceo, "4", "A", 0, 1) $replaced = StringReplace($replacea, "|)", "D", 0, 1) $replaceh = StringReplace($replaced, "|-|", "H", 0, 1) $replacei = StringReplace($replaceh, "1", "I", 0, 1) $replacek = StringReplace($replacei, "|<", "K", 0, 1) $replacev = StringReplace($replacek, "\%", "V", 0, 1) $replacem = StringReplace($replacev, "/\/\", "M", 0, 1) $replacen = StringReplace($replacem, "/\/", "N", 0, 1) $replacew = StringReplace($replacen, "VV", "W", 0, 1) $replacec = StringReplace($replacew, "Ç", "C", 0, 1) $replaces = StringReplace($replacec, "$", "S", 0, 1) $replacet = StringReplace($replaces, "7", "T", 0, 1) $replacex = StringReplace($replacet, "><", "X", 0, 1) $replaceu = StringReplace($replacex, "|_|", "U", 0, 1) $replacey = StringReplace($replaceu, "¥", "Y", 0, 1) $replacee = StringReplace($replacey, "3", "E", 0, 1) ;End Capital Letters ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;Begin Lowercase $rplca = StringReplace($replacee, "@", "a", 0, 1) $rplcc = StringReplace($rplca, "¢", "c", 0, 1) $rplcl = StringReplace($rplcc, "|", "l", 0, 1) $rplcy = StringReplace($rplcl, "ÿ", "y", 0, 1) $rplct = StringReplace($rplcy, "", "t", 0, 1) $rplco = StringReplace($rplct, "0", "o", 0, 1) Return $rplco EndFunc ;End Capital Letters ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Features: Version 1.7Working Translator (Reaper's standard ASCII character library)Working Detranslator (Few known detranslating issues with e and Professional GUI DesignSave to File CapableInstructionsAll translations and detranslations are working 100%Added tons of new characters to enlargen the alphabet!Added Hotkeys for all of the buttons. Idea by ezzetabi. Thanks ezzetabi!Enjoy!Reaper__sTranslator.au3 Edited November 23, 2004 by Py7|-|[]/\/
layer Posted November 21, 2004 Posted November 21, 2004 I like the theme! But when i type leet, and it translates fine, but detranslating makes it Bet...I have to go for now, I would post more, nice work! FootbaG
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 That is the only problem, the issue with 3, e, B, and |3 is still to be resolved. I will work on fixing that for the next version. Everything else should work ok though.
killaz219 Posted November 21, 2004 Posted November 21, 2004 (edited) /\/,Nov 20 2004, 11:28 PM]That is the only problem, the issue with 3, e, B, and |3 is still to be resolved. I will work on fixing that for the next version. Everything else should work ok though.<{POST_SNAPBACK}>Translate l (L) then make B with l3 (L and 3) Edited November 21, 2004 by killaz219
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 (edited) New version above! Edited November 21, 2004 by Py7|-|[]/\/
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 (edited) New version above! Edited November 21, 2004 by Py7|-|[]/\/
scriptkitty Posted November 21, 2004 Posted November 21, 2004 In your next version could you remove the extra thousand or so unneeded variables?Since they are local they are gone when the function ends, but why use up the extra memory when only one variable is needed? Also looks a bit easier, and you don't need to remember the line above it.Func Advanced($text) $lowera = StringReplace($text, "a", "@", 0, 1);Replaces lowercase letters $lowerb = StringReplace($lowera, "b", "b", 0, 1) $lowerc = StringReplace($lowerb, "c", "¢", 0, 1) $lowerd = StringReplace($lowerc, "d", "d", 0, 1) $lowere = StringReplace($lowerd, "e", "e", 0, 1) $lowerf = StringReplace($lowere, "f", "f", 0, 1); ...Func Advanced($text) $text = StringReplace($text, "a", "@", 0, 1);Replaces lowercase letters $text = StringReplace($text, "b", "b", 0, 1) $text = StringReplace($text, "c", "¢", 0, 1) $text = StringReplace($text, "d", "d", 0, 1) $text = StringReplace($text, "e", "e", 0, 1) $text = StringReplace($text, "f", "f", 0, 1) ; ...or streamline:func SR1(ByRef $_var,$_in,$_out) $_var = StringReplace($_var,$_in,$_out, 0, 1) endfunc Func Advanced($text) SR1($text, "a", "@");Replaces lowercase letters SR1($text, "b", "b") SR1($text, "c", "¢") SR1($text, "d", "d") SR1($text, "e", "e") SR1($text, "f", "f") ;... AutoIt3, the MACGYVER Pocket Knife for computers.
ezzetabi Posted November 21, 2004 Posted November 21, 2004 As Scriptkitty said in costructive way. I think your scripting style is ugly BlackDiablo.
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 I like it that way. This is because, I have been changning the Reaper's Standarch ASCII Character Set every day or so and it is just simpler to already have the variables in there. But do you guys like the new theme? I think it's easier to use and more professional, but that's just me. Enjoy =)
ezzetabi Posted November 21, 2004 Posted November 21, 2004 Ok, now I actually tried your stuff I give you an advice. Add some hotkeys! it is ugly have to use the mouse of hundred of tab to moving in buttons, just set the button text as &Translate, &Destranslate and such. So you can write, press ALT+t and ALT+c and you are ready to paste! Also, it is normal that Hello this is a test! becomes |-|e||0 †his is @ †es†! ? It seems a little too readable.
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 It's supposed to look like that. Those t's are another smybol. This stops the detranslator from being gay.
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 Added hotkeys to new version. Read above!
ezzetabi Posted November 21, 2004 Posted November 21, 2004 (edited) How I would do it. Works as yours, but I think it is more clear and readable. expandcollapse popupOpt ("MustDeclareVars", 1) #cs The Reaper's elite translator. (Hacked by the Black One) Version 1.7 Ideated by the Reaper, remade by Ezzetabi;) #ce #include "GUIConstants.au3" Local $c, $clearbox, $copy, $detranslate, $detranslated, $help Local $file, $input, $instructions, $msg, $return, $save, $sText Local $style, $translate, $translated, $window1, $window2, $writing _Begin() $window1 = GUICreate("The Reaper's 1337 Translator -Version 1.7", 700, 400) GUISetBkColor(0x000000) GUICtrlCreateLabel("The Reaper's 1337 Translator", 225, 10, 300, 300) GUICtrlSetColor(-1, 0xff0000) GUICtrlSetFont(-1, 14, 40) GUICtrlCreateLabel("(|-|@¢ked bÿ †he ßL@Ç|< 0n3)", 265, 40, 300, 300) GUICtrlSetColor(-1, 0xff0000) GUICtrlSetFont(-1, 10, 10) $translate = GUICtrlCreateButton("&Translate", 10, 120, 90, 25) $detranslate = GUICtrlCreateButton("&Detranslate", 10, 150, 90, 25) $copy = GUICtrlCreateButton("Add to &Clipboard", 10, 180, 90, 25) $save = GUICtrlCreateButton("&Save to File", 10, 210, 90, 25) $instructions = GUICtrlCreateButton("&Instructions", 10, 240, 90, 25) $clearbox = GUICtrlCreateButton("C&lear Box", 10, 270, 90, 25) GUICtrlCreateLabel("Reaper Industries- ßringing ÿ0u †3h m0s† 3|i†3 shi† 0n †3h in†erne†.", 160, 340, 400, 400) GUICtrlSetColor(-1, 0xff0000) GUICtrlSetFont(-1, 10, 40) $input = GUICtrlCreateEdit("Enter the text you wish to translate / detranslate here.", 160, 120, 475, 172, 0x00200000) $style = BitOR($ES_WANTRETURN, $WS_VSCROLL, $ES_AUTOVSCROLL) $window2 = GUICreate("TheReaper's 1337 Translator -Instructions", 700, 400) GUISetBkColor(0x000000) GUICtrlCreateLabel("Instructions", 285, 10, 300, 300) GUICtrlSetColor(-1, 0xff0000) GUICtrlSetFont(-1, 14, 10) $help = GUICtrlCreateEdit($sHelpText, 100, 100, 500, 200, $style) GUICtrlSetState($help, $GUI_DISABLE) $return = GUICtrlCreateButton("Return to Main Page", 295, 370, 110, 25) GUISwitch($window1) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $clearbox GUICtrlSetData($input, "") Case $msg = $instructions GUISetState(@SW_HIDE) GUISwitch($window2) GUISetState(@SW_SHOW) Case $msg = $return GUISetState(@SW_HIDE) GUISwitch($window1) GUISetState(@SW_SHOW) Case $msg = $translate $translated = Advanced(GUIRead($input)) GUICtrlSetData($input, "") GUICtrlSetData($input, $translated) Case $msg = $detranslate $detranslated = DetranslateFunc(GUIRead($input)) GUICtrlSetData($input, "") GUICtrlSetData($input, $detranslated) Case $msg = $copy ClipPut(GUIRead($input)) Case $msg = $save $writing = GUIRead($input) $file = FileSaveDialog("Where would you like to save the file?", @DesktopDir, "Text files (*.txt)") FileWrite($file & ".txt", $writing) EndSelect Wend Func Advanced($sText) Local $c For $c = 1 To $aChanges[0][0] $sText = StringReplace($sText, $aChanges[$c][0], $aChanges[$c][1], 0, 1) Next Return $sText EndFunc ;==>Advanced Func DetranslateFunc($sText) Local $c For $c = 1 To $aChanges[0][0] $sText = StringReplace($sText, $aChanges[$c][1], $aChanges[$c][0], 0, 1) Next Return $sText EndFunc ;==>DetranslateFunc Func _Begin() ; Inizialize the Global array of variations. ; the second dimension [0] will keep the original symbol, the [1] the alternate. Global $aChanges[53][2] Global $sHelpText = "Welcome to the Reaper's elite translator. It can translate, and detranslate the Reaper's standard ASCII character alphabet for you. Type in the normal text you wish to translate into the edit box, then press one of the buttons on the left to Translate, or Detranslate your text. Press the Clear Box button to clear your text. To copy the text that you have already translated / detranslated, press the Add to Clipboard button which will copy it for you. If you wish to save your translated / detranslated text to a .txt Notepad file then press the Save File button and chose a location to save your file. Enjoy." $aChanges[0][0] = 52 $aChanges[1][0] = "a" $aChanges[1][1] = "@" $aChanges[2][0] = "b" $aChanges[2][1] = "b" $aChanges[3][0] = "c" $aChanges[3][1] = "¢" $aChanges[4][0] = "d" $aChanges[4][1] = "d" $aChanges[5][0] = "e" $aChanges[5][1] = "e" $aChanges[6][0] = "f" $aChanges[6][1] = "f" $aChanges[7][0] = "g" $aChanges[7][1] = "g" $aChanges[8][0] = "h" $aChanges[8][1] = "h" $aChanges[9][0] = "i" $aChanges[9][1] = "i" $aChanges[10][0] = "j" $aChanges[10][1] = "j" $aChanges[11][0] = "k" $aChanges[11][1] = "k" $aChanges[12][0] = "l" $aChanges[12][1] = "|" $aChanges[13][0] = "m" $aChanges[13][1] = "m" $aChanges[14][0] = "n" $aChanges[14][1] = "n" $aChanges[15][0] = "o" $aChanges[15][1] = "0" $aChanges[16][0] = "p" $aChanges[16][1] = "p" $aChanges[17][0] = "q" $aChanges[17][1] = "q" $aChanges[18][0] = "r" $aChanges[18][1] = "r" $aChanges[19][0] = "s" $aChanges[19][1] = "s" $aChanges[20][0] = "t" $aChanges[20][1] = "†" $aChanges[21][0] = "u" $aChanges[21][1] = "u" $aChanges[22][0] = "v" $aChanges[22][1] = "v" $aChanges[23][0] = "w" $aChanges[23][1] = "w" $aChanges[24][0] = "x" $aChanges[24][1] = "x" $aChanges[25][0] = "y" $aChanges[25][1] = "ÿ" $aChanges[26][0] = "z" $aChanges[26][1] = "z" $aChanges[27][0] = 'A' $aChanges[27][1] = '4' $aChanges[28][0] = 'B' $aChanges[28][1] = "ß" $aChanges[29][0] = "C" $aChanges[29][1] = "Ç" $aChanges[30][0] = "D" $aChanges[30][1] = "|)" $aChanges[31][0] = "E" $aChanges[31][1] = "3" $aChanges[32][0] = "F" $aChanges[32][1] = "F" $aChanges[33][0] = "G" $aChanges[33][1] = "G" $aChanges[34][0] = "H" $aChanges[34][1] = "|-|" $aChanges[35][0] = "I" $aChanges[35][1] = "1" $aChanges[36][0] = "J" $aChanges[36][1] = "J" $aChanges[37][0] = "K" $aChanges[37][1] = "|<" $aChanges[38][0] = "L" $aChanges[38][1] = "L" $aChanges[39][0] = "M" $aChanges[39][1] = "/\/\" $aChanges[40][0] = "N" $aChanges[40][1] = "/\/" $aChanges[41][0] = "O" $aChanges[41][1] = "()" $aChanges[42][0] = "P" $aChanges[42][1] = "P" $aChanges[43][0] = "Q" $aChanges[43][1] = "Q" $aChanges[44][0] = "R" $aChanges[44][1] = "R" $aChanges[45][0] = "S" $aChanges[45][1] = "$" $aChanges[46][0] = "T" $aChanges[46][1] = "7" $aChanges[47][0] = "U" $aChanges[47][1] = "|_|" $aChanges[48][0] = "V" $aChanges[48][1] = "\%" $aChanges[49][0] = "W" $aChanges[49][1] = "VV" $aChanges[50][0] = "X" $aChanges[50][1] = "><" $aChanges[51][0] = "Y" $aChanges[51][1] = "¥" $aChanges[52][0] = "Z" $aChanges[52][1] = "Z" Return 0 EndFunc ;==>_Begin Edited November 21, 2004 by ezzetabi
ezzetabi Posted November 21, 2004 Posted November 21, 2004 And after playing a little with it, I have to say that it is nice. Overall if you write in usual lowercase uppercase. Since it will be quite readable anyway, but still more... original. - ()h |)e@r, Ezzetabi fe|† in †he ß|@¢k|)i@b|0 †r@p?!? Not at all, just considering.
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 7h@nks ezze@bi! 1 @ppre¢i@e @|| 0f ÿ0ur he|p 00.
ezzetabi Posted November 21, 2004 Posted November 21, 2004 4s ÿ0u ¢@n see 1 m@de @ †w0 dimensi0n@| @rr@ÿ f0r keeping @|| m0difi¢@†i0n, s0 f0r de†r@ns|@†ing ÿ0u h@ve jus† †0 ¢0nver† fr0m [$¢][1] †0 [$¢][0]! 1ns†e@d 0f m@king se¢0nd fun¢ †h@† is @|m0s† †he s@me 0f †he firs†. /\/\0re0ver, i† is s†i|| e@sÿ †0 m0difÿ @n impr0ve if ÿ0u find 0†hers g00d w@ÿ †0 ¢h@nge s0me ¢h@rs.
Guest Py7|-|[]/\/ Posted November 21, 2004 Posted November 21, 2004 Ç@n ÿ0u P/\/\ me ÿ0ur ¢0de wih he @rr@ÿs? 1 w0u|d |ike 0 @ke @ |00k @ i if ÿ0u ¢0u|d sp@re he ime @nd d0n' mind. 7h@nks @g@in.
ezzetabi Posted November 21, 2004 Posted November 21, 2004 (edited) 1 @|re@dÿ p0s†ed i†. Çhe¢k 0ne 0f mÿ |@s† mess ges in this topic. Edited November 21, 2004 by ezzetabi
ezzetabi Posted November 22, 2004 Posted November 22, 2004 (edited) What about changing also 'g' to '9' 'G' to '6' 'i' to '¡' 'j' to ']' 's' to 'š' or even better to '§' 'e' to '£' 'R' (or 'r') to '®' 'p' to '|³' 'P' to '|>' 'n' to 'ñ' '?' to '¿' the couple 'AE' to 'Æ' and, of course, 'ae' to 'æ' the couple 'CE' to 'Œ' 'e' to 'ê' 'x' to '×' 'd' to 'Ð' 'Z' to '^/_' ? And I my opinion the 'a' changed to '@' is a little to heavy since sentences keep many 'a'. So I think it is better changing it to a still fun but more readable 'ð' Edited November 22, 2004 by ezzetabi
JSThePatriot Posted November 22, 2004 Posted November 22, 2004 Yea I would have @ for at not a Just my thoughts. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now