Re: Re-2: des encryption with rev for .htaccess password

2008-10-29 Thread rchilderic
Selon [EMAIL PROTECTED]:

 Brian,

 hereĀ“s a sample. PHP script outputs the encrypted password.

 ?php
 // Passwort setzen
 $passwort = 'matthias';
 echo crypt($passwort);
 ?


 Matthias
  Original Message 
 Subject: Re: des encryption with rev for .htaccess password (28-Okt-2008
 19:08)
 From:Brian Yennie [EMAIL PROTECTED]
 To:  [EMAIL PROTECTED]

  Matthias,
 
  Can you post the relevant PHP code? There are actually many different
  ways to do encryption with PHP so it is hard to tell what you mean by
  standard php encryption.
 
  - Brian
 
   Hi,
  
   does no one know, if this is possible with revolution?
  
   Regards,
  
   Matthias
  
    Original Message 
   Subject: des encryption with rev for .htaccess password (27-Okt-2008
   21:41)
   From:[EMAIL PROTECTED]
   To:  [EMAIL PROTECTED]
  
   Hi,
  
   i am working on an app, which creates .htaccess and .htpassword
   files for
   folder/file protection on a linux webserver.
   For this i have to encrypt passwords with standard php encryption.
   At the
   moment i am
   using a php script, which encrypts the password for me. But i want
   to do
   the encryption with rev, if possible.
  
   Does anyone know, if this is possible with Revolution? I looked at
   the
   encrypt command, but it seems,
   that i need to provide not only the password i want to encrypt, but
   also a 
   password which is used for encryption.
  
   Could anyone help?
  
   Regards,
  
   Matthias
 
 
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  To: use-revolution@lists.runrev.com


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Gaussian pseudo-random numbers -- math issues

2008-10-23 Thread rchilderic
Selon Mark Smith [EMAIL PROTECTED]:

 Timothy, the only way I could find of doing what you want is called
 'the polar form of the Box-Muller transformation'.

 Fortunately, it's not as bad as it sounds. :)

 I've copied an ADA implementation, and here it is:

 function polarBoxMuller pLength, pMean, pSdev
 put false into useLast
 repeat pLength

repeat
   put ((random(101) - 1) * 0.02) - 1 into x1 -- generate a
 random number between -1 and +1
   put ((random(101) - 1) * 0.02) - 1 into x2

   put (x1 * x1) + (x2 * x2) into w
   if w = 1 then exit repeat
end repeat

if w  0 then put ln(w) * -2 into w -- rev barfs if w is zero
if w  0 then put sqrt(w) / w into w -- ditto

put x1 * w into y1
put x2 * w into y2

put pMean + y1 * pSdev  comma after tList
put pMean + y2 * pSdev  comma after tList
 end repeat

 return char 1 to -2 of tList
 end polarBoxMuller

 This should give you a comma delimited list of (fairly) normally
 distributed numbers.

 Best,

 Mark

 ps. I enjoy this sort of thing, so thanks for the question!

 On 21 Oct 2008, at 23:03, Timothy Miller wrote:

  Greetings,
 
  I'm interested an a modest statistics demonstration, but I can't
  figure out how do to the math myself.
 
  I'd like to have a few lines of code that produces a sequence of
  numbers. (whole numbers would probably be okay). I'd like to
  specify the number of numbers generated. Let's call that Z.
 
  I'd like also to specify the desired mean and standard deviation.
  I'd like the function (is this a function??) to work in such a way
  that if Z is large, the set of numbers generated, if graphed as a
  frequency distribution, would be normally distributed, i.e., Gaussian.
 
  If Z is rather small, then the mean and standard deviation of the
  numbers produced will would only approximate the desired mean and
  standard deviation. Different runs would produce different actual
  means and standard deviations.
 
  If Z is very small, like 3 or 4, the numbers will look almost random.
 
  I hope I explained that clearly.
 
  Optionally, I might also be able to enter a variable that would
  specify the desired number of digits to the right of the decimal
  point.
 
  No favors are requested. I'd really be rather uncomfortable with a
  generous gesture. However, if someone has some code like this
  sitting around, and you're willing to share it, with a few notes
  about how to use it, I'd appreciate it. If not, it can't be helped.
 
  H... I wonder if some website somewhere would do the work for
  me. That could work... I looked around, but didn't find anything.
 
  Thanks in advance.
 
  Tim Miller
 
 
 
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-23 Thread rchilderic
Selon Mark Srebnik [EMAIL PROTECTED]:

 THANKS, Jacqueline, for this and your previous reply. It really helps make
 things clearer for me

 Onward and upward ;-)

 Mark
 -Original Message-
 From: J. Landman Gay [EMAIL PROTECTED]
 Sent: Oct 20, 2008 12:49 PM
 To: How to use Revolution use-revolution@lists.runrev.com
 Subject: Re: Learning Rev3 - Calendar Tutorial Questions
 
 Mark Srebnik wrote:
 
  2. Good Way to Edit Background Group Across Multiple Cards
 
  Found myself editing February card and then realizing that this was
  probably a mistake, as I'd need to make the same corrections to about
  9-10 more cards...one for each month
 
  Seems to me know that it would make more sense to have design that
  carries over month to month so that you don't have to change each
  month individually if you have changes. However, maybe that's not
  possible with this tutorial as each month has different days in it??
 
 Right. Fields in background groups have a property called sharedText
 which determines whether the text is the same on all cards or varies for
 each card. For labels and such, you usually want them shared. For other
 things (like the calendar dates) you don't. In this tutorial, you want
 to share field text for things like the days of the week, but not for
 the calendar days themselves or the name of the month. Regardless, the
 field is being shared; the only difference is whether the text varies
 card-to-card or not. This allows you to change things like the field
 placement, size, color, font, etc. and the changes will appear on every
 card that uses the shared group. Only the text will change on each card.
 
 For this tutorial you just type in all the dates for every month, and
 since the sharedtext of that field is false, Rev will keep track of
 which card shows what dates. However, there are lots of scripts floating
 around that will auto-calculate the dates that should appear in each
 month. I think RR decided this would be too much for a beginner tutorial
 so they left it out.
 
 A more advanced tutorial would probably not do a calendar this way. One
 method I've used is to have only a single card that auto-calculates and
 enters the dates when the user changes months, and any user entries
 (like appointments) are stored in a custom property and dynamically
 loaded into the field on demand when the month is displayed. That's a
 bit much for a basic beginner tutorial though.
 
 --
 Jacqueline Landman Gay | [EMAIL PROTECTED]
 HyperActive Software   | http://www.hyperactivesw.com
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Learning Rev3 - Calendar Tutorial Questions

2008-10-23 Thread rchilderic
Selon J. Landman Gay [EMAIL PROTECTED]:

 Mark Srebnik wrote:

  2. Good Way to Edit Background Group Across Multiple Cards
 
  Found myself editing February card and then realizing that this was
  probably a mistake, as I'd need to make the same corrections to about
  9-10 more cards...one for each month
 
  Seems to me know that it would make more sense to have design that
  carries over month to month so that you don't have to change each
  month individually if you have changes. However, maybe that's not
  possible with this tutorial as each month has different days in it??

 Right. Fields in background groups have a property called sharedText
 which determines whether the text is the same on all cards or varies for
 each card. For labels and such, you usually want them shared. For other
 things (like the calendar dates) you don't. In this tutorial, you want
 to share field text for things like the days of the week, but not for
 the calendar days themselves or the name of the month. Regardless, the
 field is being shared; the only difference is whether the text varies
 card-to-card or not. This allows you to change things like the field
 placement, size, color, font, etc. and the changes will appear on every
 card that uses the shared group. Only the text will change on each card.

 For this tutorial you just type in all the dates for every month, and
 since the sharedtext of that field is false, Rev will keep track of
 which card shows what dates. However, there are lots of scripts floating
 around that will auto-calculate the dates that should appear in each
 month. I think RR decided this would be too much for a beginner tutorial
 so they left it out.

 A more advanced tutorial would probably not do a calendar this way. One
 method I've used is to have only a single card that auto-calculates and
 enters the dates when the user changes months, and any user entries
 (like appointments) are stored in a custom property and dynamically
 loaded into the field on demand when the month is displayed. That's a
 bit much for a basic beginner tutorial though.

 --
 Jacqueline Landman Gay | [EMAIL PROTECTED]
 HyperActive Software   | http://www.hyperactivesw.com
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Bugzilla down - Revzilla loses its mind

2007-01-03 Thread rchilderic
Selon Bill Marriott [EMAIL PROTECTED]:

 Looks like the password is finally gone. The new Quality Control Center is
 live now at both the old address and the new one:

 http://quality.runrev.com



 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: mysql to valentina using libdatabase

2007-01-03 Thread rchilderic
Selon Ruslan Zasukhin [EMAIL PROTECTED]:

 On 06/29/12 9:16 PM, Robert Mann [EMAIL PROTECTED] wrote:

  I have been in contact with Ruslan he has been very helpful and there seems
  to be a bug in valentina studio so it won't do the conversion,

 By ODBC way. Yes, Jochen is back and should check this soon.

 --
 Best regards,

 Ruslan Zasukhin
 VP Engineering and New Technology
 Paradigma Software, Inc

 Valentina - Joining Worlds of Information
 http://www.paradigmasoft.com

 [I feel the need: the need for speed]


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Chipp -- designing Pro Tools plugins interfaces??

2007-01-03 Thread rchilderic
Selon Chipp Walters [EMAIL PROTECTED]:

 Not my work, though I believe it could be made with ButtonGadget and
 Interface Designer quickly.

 Here are a couple new images of products, all created with BG2 and
 InterfaceDesigner:
 http://www.altuit.com/webs/clients/dvcreators/ThoughtOfficeScreens_big.jpg
 http://www.altuit.com/webs/clients/dvcreators/MEGAfyScreens_big.jpg
 http://www.altuit.com/webs/clients/dvcreators/ButtonGadgetScreens_big.jpg


 On 12/28/06, Stephen Barncard [EMAIL PROTECTED] wrote:
  CHipp,
 
  is this your work? or made with your tools?
 
  it sure looks like it!!
  sqb
 
 
  http://www.store.neyrinck.com/images/DTSSet.gif
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: mysql to valentina using libdatabase

2007-01-03 Thread rchilderic
Selon Robert Mann [EMAIL PROTECTED]:

 ok so what is the best way to use libDatabase?

 Robert Mann


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Stephen
 Barncard
 Sent: Friday, December 29, 2006 11:59 AM
 To: How to use Revolution
 Subject: RE: mysql to valentina using libdatabase


 you might be able to do this db stuff from the message box, but I'd
 recommend against it. You need multiple script lines to do this and
 using ; between statements gets pretty unclear fast.

 just create a handler in your stack script and call it from the msg box.
 You'll have the advantage of indenting and colorization of the
 script, better error reporting, and of course debugging.

 also don't forget to define your globals, especially of the array
 you're creating for opening..

 sqb


 I was following the getting started I see the changes now, am I correct
 that
 to use liDatabase you input this through the message box?
 
 Robert Mann






 --
 stephen barncard
 s a n  f r a n c i s c o
 - - -  - - - - - - - - -






 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: mysql to valentina using libdatabase

2007-01-03 Thread rchilderic
Selon Robert Mann [EMAIL PROTECTED]:

 I was following the getting started I see the changes now, am I correct that
 to use liDatabase you input this through the message box?

 Robert Mann


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Trevor
 DeVore
 Sent: Friday, December 29, 2006 11:02 AM
 To: How to use Revolution
 Subject: Re: mysql to valentina using libdatabase


 On Dec 28, 2006, at 6:52 PM, Robert Mann wrote:

  trying to convert a mysql database to a valentina database
  searching the
  list I ran across libDatabase and looks like it will do the
  conversion, I am
  just having a hard time figuring out how to use it tried to go
  through the
  getting started, to run this do you put the following in the
  message box?
 
  put mysql into tDbA[Type]
  put localhost into tDbA[Host]
  put recipes into tDbA[Name]
  put root into tDbA[Username]
  put  into tDbA[Password]
 
  libDatabase_RegisterDatabase myrecipesdb, tDbA
 
  libDatabase_Connect myrecipesdb
 
  libDatabase_GetDBConnectionID(myrecipesdb)

 Robert,

 It looks like you are using the version 1 syntax.  You should
 download version 2 of libDatabase if you are just getting started
 with it.

 Then syntax in 2.0 would be:

 libdb_registerDatabase myrecipesdb, tDbA
 libdb_connect myrecipesdb
 put libdb_getConnectionID(myrecipesdb) into theConnectionID

 --
 Trevor DeVore
 Blue Mango Learning Systems - www.bluemangolearning.com
 [EMAIL PROTECTED]


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

cessez de remplir ma boite d'inutilite merci

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution