For everything that's not in any way related to PureBasic. General chat etc...
Rook Zimbabwe
Addict
Posts: 4322 Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:
Post
by Rook Zimbabwe » Wed Apr 27, 2011 4:12 pm
OK this is a HOOT and a HALF!!!
Y'all remember those stoopid days when we would see the "hackers" flailing madly on their keyboards in the movies and on TV spouting nonsense and typing a million lines of obfuscated C code a miniute...
http://hackertyper.net/
Now YOU CAN TOO!!!
there is a small popup in the top... click the X onthe top right to kill and BETTER open in Sandboxie but enjoy it on default settings... it will completely impress the incompetent
gnasen
Enthusiast
Posts: 282 Joined: Wed Sep 24, 2008 12:21 am
Post
by gnasen » Wed Apr 27, 2011 4:19 pm
pure awesomeness, just love it
pb 5.11
c4s
Addict
Posts: 1981 Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany
Post
by c4s » Wed Apr 27, 2011 6:22 pm
Haha great! Don't forget to press F11 to put the browser window into fullscreen mode for the best effect.
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
idle
Always Here
Posts: 6041 Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand
Post
by idle » Wed Apr 27, 2011 9:19 pm
Now that's the type of feature we need for the IDE!
bang keys get results!
Windows 11, Manjaro, Raspberry Pi OS
Rook Zimbabwe
Addict
Posts: 4322 Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:
Post
by Rook Zimbabwe » Thu Apr 28, 2011 2:07 am
idle wrote: Now that's the type of feature we need for the IDE!
bang keys get results!
Is
THAT why most of my code doesn't werk???
idle
Always Here
Posts: 6041 Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand
Post
by idle » Thu Apr 28, 2011 2:53 am
Rook Zimbabwe wrote: idle wrote: Now that's the type of feature we need for the IDE!
bang keys get results!
Is
THAT why most of my code doesn't werk???
I tried using my head once but it didn't work either!
Windows 11, Manjaro, Raspberry Pi OS
djes
Addict
Posts: 1806 Joined: Sat Feb 19, 2005 2:46 pm
Location: Pas-de-Calais, France
Post
by djes » Thu Apr 28, 2011 7:38 am
I type faster
Nituvious
Addict
Posts: 1030 Joined: Sat Jul 11, 2009 4:57 am
Location: United States
Post
by Nituvious » Sun May 22, 2011 12:55 am
This is totally unrelated, but I had fun writing it.
Code: Select all
Procedure.s Leet(string.s)
Static NewMap Character.s(26)
Character.s("a") = "@ÀÁÂÃÄÅàáâãäå"
Character.s("b") = "8ß"
Character.s("c") = "©çÇ¢"
Character.s("d") = "Ð"
Character.s("e") = "€3èéêëÈÉÊË"
Character.s("f") = "f"+Chr(131)
Character.s("g") = "g6"
Character.s("h") = "#h"
Character.s("i") = "!ÌÍÎÏìíîï"
Character.s("j") = "j"
Character.s("k") = "K"
Character.s("l") = "£1"
Character.s("m") = "m"
Character.s("n") = "Ññ"
Character.s("o") = "0öõôóòðÖÕÔÓÒØ"
Character.s("p") = "þÞ"
Character.s("q") = "¶"
Character.s("r") = "®2"
Character.s("s") = "$§5"+Chr(138)+Chr(154)
Character.s("t") = "t7"+Chr(134);+Chr(135)
Character.s("u") = "ûúùÜÛÚÙµ"
Character.s("v") = "v"
Character.s("w") = "w"
Character.s("x") = "×X"
Character.s("y") = "ÿýÝ¥"+Chr(159)
Character.s("z") = "z"+Chr(158)+Chr(142)
For first_l.l = 1 To Len(string.s)
If Character(Mid(LCase(string.s), first_l.l,1)) = "" : _string.s + Mid(LCase(string.s), first_l.l,1) : Else
_string.s + Mid(Character(Mid(LCase(string.s), first_l.l,1)),Random(Len(Character(Mid(LCase(string.s), first_l.l,1)))),1)
EndIf
Next
ProcedureReturn _string.s
EndProcedure
▓▓▓▓▓▒▒▒▒▒░░░░░
Rook Zimbabwe
Addict
Posts: 4322 Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:
Post
by Rook Zimbabwe » Sun May 22, 2011 4:57 am
I added this to the bottom for our coding challenged friends:
Code: Select all
Debug Leet("This is a horrible tool, DUDE!!!")
Debug Leet("Your mama wears combat boots!")
Debug Leet("Now is the time for all good men to come to the aide of their oppressive governments!")
Turned DEBUG on and got this:
†#Í5 !$ à #Ô22Ï8£ê tðó£, ÐùÐê!!!
ÝØù® mämÄ wÈÅ®$ ÇÔm8Àt 80Õt$!
ñòw !$ 7h3 tÎmé ƒð2 @£1 gòÔÐ mËÑ tô ©ðmÈ 7Ö †hë @îÐÊ ðf 7#Èì® ÒÞÞ®€Š5ÌvË 6Ôvë2ñm€Ñ7Š!
KJ67
Enthusiast
Posts: 218 Joined: Fri Jun 26, 2009 3:51 pm
Location: Westernmost tip of Norway
Post
by KJ67 » Sun May 22, 2011 6:10 am
Nituvious wrote: This is totally unrelated, but I had fun writing it.
Thanks!
This could be fun to (ab)use on a college of mine.
I'm adding two things to my version;
- Lazy evaluation. The assignment of a static map needs only to be done ones; so that part could be in a "if MapSize(Character())=0" clause.
- Have to find some nice international coding too.
The best preparation for tomorrow is doing your best today.
Nituvious
Addict
Posts: 1030 Joined: Sat Jul 11, 2009 4:57 am
Location: United States
Post
by Nituvious » Sun May 22, 2011 8:07 pm
Yeah, it's kind of funny to use
I added an additional procedure that grabs input and replaces it with the map key on the fly. So it can be used with a chatting program to annoy friends and such.
That one isn't as much fun.. My friendlist shrunk 3 sizes while debugging.
▓▓▓▓▓▒▒▒▒▒░░░░░