![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#11 | |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
Quote:
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
|
#12 | |
|
Hobbyist Programmer
|
Quote:
I ndrstnd y sm1 tlks lk dis (I understand why someone talks like this) on sms, seying you pay for the letters you use. And it's annoying to write sms on a cell phone. But 1337? it's just plain stupid... and I don't use/support stupid things. Except maybe windows. But I'm hooked up on that.
__________________
PORTUGALPORTUGA PORTUGALPORTUGA PORTUGALPORTUGA PORTUGALPORTUGA PORTUGALPORTUGA |
|
|
|
|
|
|
#13 | ||
|
Professional Programmer
Join Date: Apr 2005
Location: London, England
Posts: 459
Rep Power: 4
![]() |
Quote:
To do this i'd iterate through every character in the string and run it through a dictionary that maps old-letter=>new-letter. Quote:
|
||
|
|
|
|
|
#14 |
|
Expert Programmer
Join Date: Dec 2004
Posts: 794
Rep Power: 4
![]() |
Well the hosting isn't just used for umanwizard.com so it's not like I'm wasting it...
Anyway, I hate 1337 because of what I say in my Manifesto, I don't think it's even possible for me to elaborate further.
__________________
Few people deserve to be compared to (Rush) Limbaugh, most of them were convicted at the Nuremburg trials. --WilliamSChips on Slashdot |
|
|
|
|
|
#15 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 8
![]() |
OK, guys, it doesn't matter if you hate l33t-sp33k or not. Bitching isn't gonna get this guy anywhere. I don't know AutoScript, so I can't help him out, but surely someone must? If you have to, imagine he's substituting the letters with encrypted stuff or something.
|
|
|
|
|
|
#16 |
|
Programming Guru
![]() ![]() |
Wasn't Cypher all about Autoscript?
__________________
Profanity is the one language that all programmers understand. Check out my Blog <---updated Nov 30 2007! |
|
|
|
|
|
#17 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 8
![]() |
He hasn't done it in ages. I asked him to look at this thread - don't know what happened from there.
|
|
|
|
|
|
#18 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
My kids will attest to the fact that I know how to make a child, but I jus' ainnagonnadoitnomore
.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#19 |
|
Hobbyist Programmer
Join Date: Jun 2005
Location: MA, US
Posts: 204
Rep Power: 4
![]() |
Didn't "hackers" start writing that way back in the day when filters were used on boards to block messages containing specific keywords? The necessity just isn't here anymore and EVERYONE now knows about the 1337 encoding scheme. You might as well learn a different language and use that... that will at least have some practical usefulness.
__________________
"A stupid man's report of what a clever man says can never be accurate, because he unconciously translates what he hears into something he can understand." - B. Russell http://web.bryant.edu/~srk2 |
|
|
|
|
|
#20 |
|
Hobbyist Programmer
Join Date: Feb 2005
Posts: 112
Rep Power: 4
![]() |
You might want to check out this:
http://www.autoitscript.com/forum/in...90&#entry59190 Although that's not the best on the forum... There is a _completley_ different, shorter, more cleaner, more efficient way to do this using "StringSplit" and "StringReplace" with a For...Loop... It may take you a while to get down, well, I might just be stupid, but it should get you on your way. Here is one of my first scripts... It is the worse encryptor in the world But it's got the concept, that's wht counts!#include <GUIConstants.au3>
GUICreate("AutoEncrypt", 400, 300)
GUISetState(@SW_SHOW)
$input = GUICtrlCreateInput("", 10, 50)
$outcome = GUICtrlCreateInput("", -1, 100)
GUICtrlCreateLabel("Type what you want Encrypted or Decrypted:", 10, 20)
GUICtrlCreateLabel("Results:", -1, 75)
$e = GUICtrlCreateButton("Encrypt", 10, 150)
$d = GUICtrlCreateButton("Decrypt", 10, 200)
While 1
$get = GUIGetMsg()
Select
Case $get = $GUI_EVENT_CLOSE
ExitLoop
Case $get = $e
$encrypted = Encrypt(GUICtrlRead($input))
GUICtrlSetData($outcome, $encrypted, 1)
Case $get = $d
$encrypted = DEcrypt(GUICtrlRead($input))
GUICtrlSetData($outcome, $encrypted, 1)
EndSelect
WEnd
Func Encrypt($myen)
$replace = StringSplit("&,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", ",")
$keys = StringSplit("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,&", ",")
For $i = 1 To 27
$myen = StringReplace($myen, $keys[$i], $replace[$i])
Next
Return $myen
EndFunc ;==>Encrypt
Func DEcrypt($myen)
$replace = StringSplit("&,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", ",")
$keys = StringSplit("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,&", ",")
For $i = 27 To 1 Step - 1
$myen = StringReplace($myen, $replace[$i], $keys[$i])
Next
Return $myen
EndFunc ;==>DEcrypt![]() |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|