| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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 | |
| Route::filter('cache', function($response = NULL) { | |
| $cname = 'response-' . Str::slug(URI::full()); | |
| if (!$response) { | |
| return Cache::get($cname); | |
| } | |
| else if ($response->status == 200) { | |
| $ctime = floor(pow(current(sys_getloadavg()) + 1, 5)); # cache for between 1 and 32 minutes | |
| Cache::put($cname, $response, $ctime); |
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 | |
| class Auth_Controller extends Base_Controller { | |
| public $restful = true; | |
| public function __construct() { | |
| $this->filter( 'before', 'guest' )->except( array( 'logout', 'validate' ) ); | |
| // Note: We may not always require CSRF on login for system based logins so ignore it here. | |
| $this->filter( 'before', 'csrf' )->on( 'post' )->except( array( '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
| Live Environment Configuration on Elastic Beanstalk | |
| Ec2-instance type - c1.medium | |
| Ec2 Security Groups - elasticbeanstalk-default, default, GSUI-Base | |
| Monitor Interval - 1 minute | |
| Http Listener port -80 | |
| Https Listen ort -443 | |
| SSL Certificate ID - rn:aws:iam::228576831886:server-certificate/GeneralSentiment-SSL | |
| Application Health Check URL - / | |
| Health Check Interval (seconds) - 30 |
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 http = require('http') | |
| , parse = require('url').parse | |
| , StringDecoder = require('string_decoder').StringDecoder; | |
| var LIMIT = 10 * 1024; | |
| var request = function(url, body, func) { | |
| if (typeof url !== 'object') { | |
| url = parse(url); | |
| } |
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
| require.paths.unshift('/usr/local/lib/node/socket.io/lib/socket.io/transports'); | |
| var htmlfile = require('htmlfile') | |
| , flashsocket = require('flashsocket') | |
| , jsonppolling = require('jsonp-polling') | |
| , websocket = require('websocket') | |
| , xhrmultipart = require('xhr-multipart') | |
| , xhrpolling = require('xhr-polling'); | |
| var http = require('http') | |
| , io = require('socket.io'); |
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
| /* Kosso : March 12th 2011 | |
| This the only way I managed to do this without the app crashing on resume. | |
| Done slightly differently to the KS example, since they unregister the service and | |
| do not use a setInterval timer. | |
| */ | |
| //############ in app.js : | |
| // test for iOS 4+ |
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 escapeString(string) { | |
| string = string.replace(/\\/g, "\\\\"). | |
| replace(/\n/g, "\\n"). | |
| replace(/\r/g, "\\r"). | |
| replace(/\t/g, "\\t"); | |
| if (string.indexOf("'") < 0) { | |
| return "'" + string + "'"; | |
| } | |
| string = string.replace(/"/g, "\\\""); | |
| return '"' + string + '"'; |
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
| // modified version of https://github.com/pangratz/dnd-file-upload by pangratz | |
| // modified by : kosso | |
| // date : 06 November 2010 | |
| // added some options for: | |
| // allowMultiple | |
| // allowedExtensions | |
| // maximumFileSize | |
| // also added dragEnter and dragLeave functions to enable change of appearance of the dropzone |