Date: [date]
Between us [company name] and you [customer name].
In short; neither of us will share any confidential information about each-other, by any means, with anyone else.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
class Trainer.Views.LessonsIndex extends Backbone.View | |
template: JST['lessons/index'] | |
initialize: -> | |
@collection.on('reset', @render, this); | |
@collection.on('add', @render, this); | |
render: -> | |
$(@el).html(@template(lessons: @collection)) |
$(function() { | |
function split( val ) { | |
return val.split( /,\s*/ ); | |
} | |
function extractLast( term ) { | |
return split( term ).pop(); | |
} | |
$( "#new_interest" ).autocomplete({ |
#$:.unshift(File.expand_path('./lib', ENV['rvm_path'])) # Add RVM's lib directory to the load path. | |
require 'bundler/capistrano' | |
require 'rvm/capistrano' | |
require "capistrano_colors" | |
require 'thinking_sphinx/deploy/capistrano' | |
require 'delayed/recipes' | |
set :normalize_asset_timestamps, false | |
set :rvm_type, :user | |
set :rvm_ruby_string, 'ruby-1.9.3-p125@appname' |