This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'linear:in': cubic-bezier(0,0,1,1) | |
'linear:out': cubic-bezier(0,0,1,1) | |
'linear:in:out': cubic-bezier(0,0,1,1) | |
'expo:in': cubic-bezier(0.71,0.01,0.83,0) | |
'expo:out': cubic-bezier(0.14,1,0.32,0.99) | |
'expo:in:out': cubic-bezier(0.85,0,0.15,1) | |
'circ:in': cubic-bezier(0.34,0,0.96,0.23) | |
'circ:out': cubic-bezier(0,0.5,0.37,0.98) | |
'circ:in:out': cubic-bezier(0.88,0.1,0.12,0.9) | |
'sine:in': cubic-bezier(0.22,0.04,0.36,0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
// Generates a strong password of N length containing at least one lower case letter, | |
// one uppercase letter, one digit, and one special character. The remaining characters | |
// in the password are chosen at random from those four sets. | |
// | |
// The available characters in each set are user friendly - there are no ambiguous | |
// characters such as i, l, 1, o, 0, etc. This, coupled with the $add_dashes option, | |
// makes it much easier for users to manually type or speak their passwords. | |
// | |
// Note: the $add_dashes option will increase the length of the password by |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* AppController.j | |
* Created by Bruno Ronchetti on March 21, 2010 | |
* Copyright 2010, Ronchetti & Associati. | |
* The MIT licence | |
* Permission is hereby granted, free of charge, to any person | |
* obtaining a copy of this software and associated documentation | |
* files (the "Software"), to deal in the Software without |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* | |
* ScaleBitmap | |
* | |
* @author Didier Brun | |
* @author Jerôme Decoster | |
* @version 1.1 | |
* | |
*/ |
NewerOlder