This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am toekneestuck on github. | |
* I am tonyjam (https://keybase.io/tonyjam) on keybase. | |
* I have a public key ASAAuzPW5aFwvK59HMfJJjv3kJ6P_BzSHJ4Rxo2ZzWFiNAo | |
To claim this, I am signing this object: |
This file contains 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 Backbone = require('backbone'); | |
var _ = require('lodash'); | |
var Model = Backbone.Model.extend({ | |
check: function() { | |
return _.has(this, 'myProperty'); | |
} | |
}); | |
var MyModel = Model.extend({ | |
myProperty : true |
This file contains 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
/* Media Queries Assume: 1em = 16px */ | |
/* ================================================= */ | |
/* Helpers | |
/* ================================================= */ | |
.clearfix{*zoom: 1;&:before,&:after{display:table;content:"";}&:after{clear:both;}} | |
.box-sizing( @boxmodel ) { | |
-webkit-box-sizing: @boxmodel; |
This file contains 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
CONFIG = { | |
## -- Rsync Deploy config -- ## | |
# Be sure you have setup public / private key authentication | |
:ssh_host => "user@hostname", # The hostname can be an alias in ~/.ssh/config | |
:ssh_port => nil, # Default - use ~/.ssh/config | |
:document_root => "/var/www", # Remote document root | |
:rsync_delete => true, # Whether or not to delete remote files | |
:deploy_default => "rsync", # Not used | |
:restart_apache => nil, # Remote command to restart apache |
This file contains 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
_.mixin({ | |
nl2br : function(str, is_xhtml){ | |
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>'; | |
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2'); | |
} | |
}); |