Skip to content

Instantly share code, notes, and snippets.

View timgianitsos's full-sized avatar

Tim Gianitsos timgianitsos

  • Palo Alto, CA
View GitHub Profile
@DamienBell
DamienBell / PFObjectExtensions.swift
Created May 31, 2016 15:36
Handy PFObject extensions
//
// PFObjectExtensions.swift
// Only Indie Coffee
//
// Created by Damien Bell on 5/30/16.
// Copyright © 2016 Damien Bell. All rights reserved.
//
import Foundation
import Parse
@datagrok
datagrok / gist:2199506
Last active April 8, 2023 17:36
Virtualenv's `bin/activate` is Doing It Wrong
@nazgob
nazgob / ctags.setup
Created January 6, 2012 13:44
ctags setup on mac
# you have ctags but it does not work...
$ ctags -R --exclude=.git --exclude=log *
ctags: illegal option -- R
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
#you need to get new ctags, i recommend homebrew but anything will work
$ brew install ctags
#alias ctags if you used homebrew
$ alias ctags="`brew --prefix`/bin/ctags"