Re: Something fun to try..
From: Saga (antiSpam_at_somewhere.com)
Date: 03/10/04
- Next message: Bonj: "Re: Something fun to try.."
- Previous message: Teldin: "Embeded OLE, Can't Change Window Size"
- In reply to: Matt Williamson: "Something fun to try.."
- Next in thread: Bonj: "Re: Something fun to try.."
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 10 Mar 2004 13:02:53 -0600
Ok, here is the one I use:
Nothing fancy <g>
Dim strText As String, email As String
strText = "Appreciate the salt and sugar of life."
email = Mid$(strText, 16, 3) & "_" & Mid$(strText, 27, 3)
MsgBox email & Mid$(strText, 6, 3) & Chr$(64) & "bigfoot.com"
Saga
"Matt Williamson" <ih8spam@spamsux.org> wrote in message
news:%23Gd9IDsBEHA.2600@TK2MSFTNGP09.phx.gbl...
> Yesterday, I wanted a way to publicly give someone my email address
without
> showing it in any way that a spam robot might pickup on, knowing the
> intended audience was a vb programmer, I made it vb code. I tried to do it
> in the least amount of lines as I could so I could put it in a sig or
> something. I got it down to 3 lines including variable decs. It's very
> simple, just using chr to string conversion, but effective I think. I was
> wondering what others would come up with given this. I find these little
> challenges to be very helpful in "outside of the box thinking" and
increase
> the pool of knowledge.
>
> Anyone care to add theirs? I'm hoping we can get really creative.
>
> here is mine:
>
> Dim s1 As String, s2 As String, i As Long
> s1 = "000109097116116119105108064097100101108112104105097046110101116"
> For i = 1 To Len(s1) Step 3: s2 = s2 & Chr$(Mid(s1, i, 3)): Next: msgbox
> s2
>
>
> Matt
>
>
- Next message: Bonj: "Re: Something fun to try.."
- Previous message: Teldin: "Embeded OLE, Can't Change Window Size"
- In reply to: Matt Williamson: "Something fun to try.."
- Next in thread: Bonj: "Re: Something fun to try.."
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|