Skip to content

Instantly share code, notes, and snippets.

View flipjs's full-sized avatar
:octocat:
hjkl

Felipe Apostol flipjs

:octocat:
hjkl
View GitHub Profile
@flipjs
flipjs / this.js
Created August 6, 2014 22:42
The Contextual This
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() {
@flipjs
flipjs / gplus.js
Last active August 29, 2015 14:05
Google+ Photos API
#!/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 = {
@flipjs
flipjs / gplus-alt.js
Last active August 29, 2015 14:05
Google+ Photos API (using request module)
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
@flipjs
flipjs / mac.sh
Created August 15, 2014 00:14
Make Your Keyboard Keys Repeat Properly When Held Down in Mac OS X
defaults write -g ApplePressAndHoldEnabled -bool false
@flipjs
flipjs / split-swap.vim
Last active August 29, 2015 14:05
VIM: Swap files between split windows
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
@flipjs
flipjs / app.js
Last active August 29, 2015 14:06
Angular: bindToController
/*=================================================
= Angular: bindToController =
=================================================*/
void (function(app) {
'use strict';
app.controller('ParentController', ParentCtrl)
@flipjs
flipjs / index.html
Last active August 29, 2015 14:06
Angular: bindToController
<!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>
@flipjs
flipjs / gist:dbb0b136deecbdc7f4e3
Last active August 29, 2015 14:06
$scope.ctrl = this OR controllerAs?
// OLD STYLE OF CONTROLLER CONSTRUCTOR
;(function() {
angular.module('oldstyle', [])
.controller('MainController', MainCtrl)
function MainCtrl($scope) {
$scope.MainCtrl = this
this.users = {}
this.userList = []
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
<!-- 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 -->