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
| $('.clickclear').each(function(){ | |
| $(this).data('cc-i-val',this.value); | |
| }).click(function(){ | |
| if(this.value==$(this).data('cc-i-val')) | |
| this.value=''; | |
| }); |
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
| function isNumeric(input) { | |
| return (input - 0) == input && input.length > 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
| function isValidEmail(emailAddress) { | |
| var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i); | |
| return pattern.test(emailAddress); | |
| }; |
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 Robot = function(robot){ | |
| robot.turnLeft(robot.angle % 90); | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| if (robot.parentId) { | |
| robot.ahead(1); | |
| robot.turnGunRight(1); | |
| } | |
| else { |
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
| function Robot(robot) { | |
| robot.clone() | |
| } | |
| // well, we need to do something... | |
| // whenever our robot is idle, this method gets called. | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| if(robot.parentId) { | |
| robot.turn(10); |
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
| /** | |
| * get user_id from session | |
| * @return int current user_id | |
| */ | |
| public function getUserId() { | |
| App::uses('CakeSession', 'Model/Datasource'); | |
| return CakeSession::read('Auth.User.id'); | |
| } |
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
| C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico /bin/env CHERE_INVOKING=1 /bin/bash --login |
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
| gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sPDFPassword=password -sOutputFile=OUTPUT.pdf -c .setpdfwrite -f input.pdf |
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:\\cygwin64\\bin\\bash.exe", "-l", "-c", "cd `cygpath -u \"${file_path}\\Utils\"` && buildl2"], | |
| "working_dir": "${file_path}\\Utils\\", | |
| "file_regex": "Label.h" | |
| } |
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
| ".workspace": | |
| 'alt-+': 'cursor-history:next' | |
| 'alt--': 'cursor-history:prev' | |
| 'ctrl-alt-o': 'native!' | |
| 'ctrl-alt-p': 'symbols-tree-view:toggle' | |
| '.editor': | |
| 'ctrl-alt-right': 'atom-ctags:go-to-declaration' | |
| 'ctrl-alt-left': 'atom-ctags:return-from-declaration' | |
| 'ctrl-alt-o': 'native!' | |
| 'alt-b': 'build:toggle-panel' |