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 | |
| /** | |
| * AES for PHP AES/ECB/PKCS5Padding | |
| * @author kevin(email: [email protected], qq: 841694874) | |
| * @date 2016年10月25日22:27:21 | |
| * @charset utf-8 | |
| */ | |
| class Security { | |
| private $key = null; |
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
| /** | |
| * A Javascript module to loadeding/refreshing options of a select2 list box using ajax based on selection of another select2 list box. | |
| * | |
| * @url : https://gist.github.com/ajaxray/187e7c9a00666a7ffff52a8a69b8bf31 | |
| * @auther : Anis Uddin Ahmad <[email protected]> | |
| * | |
| * Live demo - https://codepen.io/ajaxray/full/oBPbQe/ | |
| * w: http://ajaxray.com | t: @ajaxray | |
| */ | |
| var Select2Cascade = ( function(window, $) { |
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
| cmd /c %SYSTEMDRIVE%\Users\%USERNAME%\.babun\cygwin\bin\dash.exe -c '/usr/bin/rebaseall -v' |
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
| .shake { | |
| display: inline-block; | |
| -webkit-transform-origin: center center; | |
| -ms-transform-origin: center center; | |
| transform-origin: center center; | |
| } | |
| .shake:hover { | |
| -webkit-animation: shake-opacity 100ms infinite ease-in-out; | |
| -ms-animation: shake-opacity 100ms infinite ease-in-out; | |
| animation: shake-opacity 100ms infinite ease-in-out; |