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
| #------------------------------------------------------------------------------- | |
| # Drawer | |
| #------------------------------------------------------------------------------- | |
| myExtraIncludes = ".tm_properties,.htaccess,.gitignore" | |
| fileBrowserGlob = "{*,$myExtraIncludes}" | |
| include = "{$include,$myExtraIncludes}" | |
| #------------------------------------------------------------------------------- | |
| # Search | |
| #------------------------------------------------------------------------------- |
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 | |
| /** | |
| * Validate | |
| */ | |
| class Validator | |
| { | |
| /** | |
| * form validation rules and options | |
| * |
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
| var fields = { | |
| 'email': { | |
| 'value': '[email protected]', | |
| 'aka': ['email', 'email_address', 'emailAddress'] | |
| }, | |
| 'first_name': { | |
| 'value': 'First Name', | |
| 'aka': ['first_name', 'firstName', 'first', 'firstname'] | |
| }, | |
| 'last_name': { |
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
| // Simulate a click event on the matched id | |
| HTMLElement.prototype.click = function() | |
| { | |
| var evt = this.ownerDocument.createEvent('MouseEvents'); | |
| evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null); | |
| this.dispatchEvent(evt); | |
| } | |
| document.getElementById("id").click(); |
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
| #!/usr/bin/env ruby | |
| # Block sort in ruby | |
| content = STDIN.read | |
| lines = content.split(/\n\n+/).sort | |
| lines.each { |line| puts line + "\n\n" } |
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
| # convert video to mp4 | |
| for f in "$@" | |
| do | |
| /usr/local/bin/HandBrakeCLI -i "$f" -o "$f.mp4" --preset="iPhone / iPod Touch" --longest -b 256 | |
| done |
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
| !#/usr/bin/php | |
| <?php | |
| # Username | |
| $username = ''; | |
| # Location of waves.txt file | |
| $waves_txt = ''; | |
| # Private key. Optional if you want to include private bookmarks | |
| $private_key = ''; |
NewerOlder