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 obj = { | |
name: 'flip', | |
printMe: function() { | |
// solution: pass this as closure | |
var self = this | |
console.log('1. ' + this.name) | |
var x = (function() { | |
// console.log('2. ' + this.name) | |
console.log('2. ' + self.name) | |
var y = (function() { |
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
#!/usr/bin/env node | |
var http = require('http') | |
// Google Plus Photos API | |
// Sample data from Felipe Apostol's Street Photography album | |
// userId is 102873175118305865375 | |
// albumId is 5646665615382099025 | |
var options = { |
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 request = require('request') | |
var url = 'http://picasaweb.google.com' | |
+ '/data/feed/api/user/102873175118305865375/' | |
+ 'albumid/5646665615382099025' | |
+ '?alt=json' | |
request.get(url, function(err, res, body) { | |
var gplus = JSON.parse(body) | |
var len = gplus.feed.entry.length |
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
defaults write -g ApplePressAndHoldEnabled -bool false |
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
function! MarkWindowSwap() | |
let g:markedWinNum = winnr() | |
endfunction | |
function! DoWindowSwap() | |
"Mark destination | |
let curNum = winnr() | |
let curBuf = bufnr( "%" ) | |
exe g:markedWinNum . "wincmd w" | |
"Switch to source and shuffle dest->source |
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
/*================================================= | |
= Angular: bindToController = | |
=================================================*/ | |
void (function(app) { | |
'use strict'; | |
app.controller('ParentController', ParentCtrl) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Angular App</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" /> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" /> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> |
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
// OLD STYLE OF CONTROLLER CONSTRUCTOR | |
;(function() { | |
angular.module('oldstyle', []) | |
.controller('MainController', MainCtrl) | |
function MainCtrl($scope) { | |
$scope.MainCtrl = this | |
this.users = {} | |
this.userList = [] |
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
angular.module('app', []) | |
.service('UserService', function($http, $q) { | |
this.users = [] | |
this.user = {} | |
function getData(obj, prop, id) { | |
var q = $q.defer() | |
var url = '/users/' | |
$http.get(url + id).success(function(response) { | |
obj[prop] = response |
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
<!-- index.html --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Angular App</title> | |
<!-- SCROLLS --> | |
<!-- load bootstrap and fontawesome via CDN --> |