View Preferences.sublime-settings
{ | |
"Seti_show_group_arrows": true, | |
"always_show_minimap_viewport": true, | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 3, | |
"caret_extra_top": 3, | |
"caret_extra_width": 2, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", |
View Preferences.sublime-settings
{ | |
"Seti_show_group_arrows": true, | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"caret_extra_bottom": 3, | |
"caret_extra_top": 3, | |
"caret_extra_width": 2, | |
"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme", | |
"copy_with_empty_selection": true, | |
"ensure_newline_at_eof_on_save": true, |
View .gemrc
gem: --no-document | |
install: --no-rdoc --no-ri | |
update: --no-rdoc --no-ri |
View script
ufw allow 11211 | |
ufw allow 11210 | |
ufw allow 11209 | |
ufw allow 4369 | |
ufw allow 8091 | |
ufw allow 8092 | |
ufw allow 18091 | |
ufw allow 18092 | |
ufw allow 11214 | |
ufw allow 11215 |
View gist:6594588
var performers; | |
performers = {}; | |
async.parallel({ | |
conductor: function(callback) { | |
return conductor.find({}, function(err, result) { | |
return callback(err, result); | |
}); | |
}, |
View editor.css.scss
/* | |
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. | |
For licensing, see LICENSE.html or http://ckeditor.com/license | |
*/ | |
body.active_admin { | |
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all text |
View date.format.js
/* | |
* Date Format 1.2.3 | |
* (c) 2007-2009 Steven Levithan <stevenlevithan.com> | |
* MIT license | |
* | |
* Includes enhancements by Scott Trenda <scott.trenda.net> | |
* and Kris Kowal <cixar.com/~kris.kowal/> | |
* | |
* Accepts a date, a mask, or a date and a mask. | |
* Returns a formatted version of the given date. |
View rails-ntlm.conf
<VirtualHost *:80> | |
ServerName cagv11 | |
DocumentRoot "C:/web/testing/public" | |
ProxyPass / http://localhost:3000/ | |
ProxyPassReverse / http://localhost:3000/ | |
ProxyPreserveHost On | |
<Proxy *> | |
AuthName "Iconica" |
View jquery.sum.js
(function ($) { | |
// DOM | |
if (!Array.prototype.sum) | |
Array.prototype.sum = function () { | |
for (var i = 0, l = this.length, sum = 0; i < l; sum += this[i++]); | |
return sum; | |
}; | |
if (!Array.prototype.max) | |
Array.prototype.max = function () { |
View app.js
function WebmailViewModel() { | |
// Data | |
var self = this; | |
self.folders = ['Inbox', 'Archive', 'Sent', 'Spamh']; | |
self.chosenFolderId = ko.observable(); | |
self.chosenFolderData = ko.observable(); | |
self.chosenMailData = ko.observable(); | |
// Behaviours | |
self.goToFolder = function(folder) { location.hash = folder }; |
NewerOlder