I was poking around in google for Random Word Generators. I bet you could talk
someone into providing access to their web site, and have it return the results
in a form variable.
Bob
On Apr 28, 2011, at 11:23 AM, Scott Morrow wrote:
> Fun!
>
> On Apr 28, 2011, at 10:02 AM, FlexibleLearning
Fun!
On Apr 28, 2011, at 10:02 AM, FlexibleLearning wrote:
>> Your function generates very random strings which might be too random for
> a user to remember on their own.
>
> Just a playful idea...
>
> on mouseUp
> put passwordPhrase()
> end mouseUp
>
> function passwordPhrase
> return w1()
> Your function generates very random strings which might be too random for
a user to remember on their own.
Just a playful idea...
on mouseUp
put passwordPhrase()
end mouseUp
function passwordPhrase
return w1() && w2() && w3() && w4() && w5()
end passwordPhrase
function w1
return item ra
Dunno about you, I can curse without 'em.
Bob
On Apr 27, 2011, at 5:27 PM, Scott Morrow wrote:
> With those characters "(@#$%&*)" I would think you could just curse.
>
> -Scott
>
> On Apr 27, 2011, at 4:56 PM, Bill Vlahos wrote:
>
>> Mark,
>>
>> Of course they become less speakable if you
Hi Bill,
That's true, but my function doesn't do that. I guess it is usless to you if
you need to include special characters.
--
Best regards,
Mark Schonewille
Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK
On Wed, Apr 27, 2011 at 7:27 PM, Scott Morrow wrote:
> With those characters "(@#$%&*)" I would think you could just curse.
>
> -Scott
>
Hey! How did you guys get my password? ;-)
~Roger
___
use-livecode mailing list
use-livecode@lists.runrev.com
Plea
With those characters "(@#$%&*)" I would think you could just curse.
-Scott
On Apr 27, 2011, at 4:56 PM, Bill Vlahos wrote:
> Mark,
>
> Of course they become less speakable if you have to include special
> characters (@#$%&*) and include upper and lower case which are often required
> complex
Mark,
Of course they become less speakable if you have to include special characters
(@#$%&*) and include upper and lower case which are often required complexities
of strong passwords. :)
Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life
Bill,
The passwords are "speakable", to make them easier to remember.
--
Best regards,
Mark Schonewille
Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553
New: Download the Installer Maker Plugin 1.6
Also thanks to Bjornke and Chris for your suggestions too.
Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life
information with you, accessible, and secure.
On Apr 27, 2011, at 4:35 PM, Bill Vlahos wrote:
> Mark,
>
> Nice. Thank you.
>
> I
Mark,
Nice. Thank you.
I want to add a feature to InfoWallet to generate passwords for a user so the
user doesn't have to think them up. InfoWallet can manage the passwords and can
automate login in to a web page or application using the Login Assistant
feature with as little as 2 clicks. Your
l Message-
From: Mark Schonewille
To: How to use LiveCode
Sent: Wed, Apr 27, 2011 3:45 pm
Subject: Re: How to generate user passwords
Bill,
I made this as part of another discussion about speakable passwords.
function speakablePassword theLength
put "bcdfghjklmnprstwyz" into
Mark's method has the additional advantage that it can be used to generate
names for your next science fiction novel.
Best wishes
Kgime Bogbu (Commander 4th Class, Warmifa Federation)
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please vi
Bill,
I made this as part of another discussion about speakable passwords.
function speakablePassword theLength
put "bcdfghjklmnprstwyz" into myConsonants
put "aeiou" into myVowels
put "" into myPass
repeat myPasswordLength
if char -1 of myPass is in myConsonants the
put base64encode( random( 1 ) ) into msg
:)
~ Chris Innanen
~ Nonsanity
2011/4/27 Björnke von Gierke
> repeat for random(2) + random(2) + 4 times
> put any char of
> "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890+*%&/)=?-_.:,;"
> & quote & space after thePassword
>
repeat for random(2) + random(2) + 4 times
put any char of
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890+*%&/)=?-_.:,;"
& quote & space after thePassword
end repeat
put thePassword
On 27 Apr 2011, at 11:45, Bill Vlahos wrote:
> Before I reinvent the wheel, has anyone written a
16 matches
Mail list logo