Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
# | |
# Working with branches | |
# | |
# Get the current branch name (not so useful in itself, but used in | |
# other aliases) | |
branch-name = "!git rev-parse --abbrev-ref HEAD" | |
# Push the current branch to the remote "origin", and set it to track | |
# the upstream branch | |
publish = "!git push -u origin $(git branch-name)" |
/** | |
* Mixer of mixins. | |
* A utility to copy functionality from mixins to objects. | |
*/ | |
define(['underscore'], function(lodash){ | |
// Monkey patch a destination object (i.e. Model.prototype, View.prototype, etc.) | |
// by combining member values that are object literals (e.g. events, defaults), | |
// functions (e.g. initialize), or arrays (e.g.relations). | |
// Heavily inspired by: https://github.com/onsi/cocktail |
//example data format: | |
var data = { | |
"1": [ { data: 10 }, { data: 11}, { data: 12}], | |
"2": value, | |
"3": value2 | |
}; | |
var MyModel = Backbone.Model.extend({ | |
constructor: function() { | |
arguments[1] = arguments[1] || {}; // ensure there's 'options' | |
arguments[1].parse = true; // this model should always be parsed on intialization |
Sublime Text 3 documentation
◳
= Right Mouse Button
◰
= Left Mouse Button
⇧
= Shift
⌫
= Delete
↩
= Enter
←↑→↓
= Arrow keys
! This sets Caps to Escape | |
! Then sets Escape to Hyper | |
! save this file to: /etc/X11/xinit/Xmodmaprc | |
! then call in: /etc/X11/xinit/xinitrc | |
! with: xmodmap /etc/X11/xinit/Xmodmaprc | |
! ASUS UL50V | |
clear Lock |
/** | |
* View mixin to properly cleanup dom, backbone, and custom event listeners. | |
* A view zombie killer. | |
* e.g. myView.destroy(); OR destroyable.destroy.call(myView); | |
* | |
* CAVEAT: | |
* Although custom events will stop triggering, custom event listeners | |
* are not automatically removed since the binding context is unknown. e.g. | |
* otherView.on('foo', thisView.doSomething, thisView); | |
* |
/*! | |
* backbone.cacheit.js v0.1.0 | |
* Copyright 2012, Tim Branyen (@tbranyen) | |
* backbone.cacheit.js may be freely distributed under the MIT license. | |
*/ | |
(function(window) { | |
"use strict"; | |
// Localize global dependency references. |