Skip to content
View codelahoma's full-sized avatar

Highlights

  • Pro

Organizations

@tulsawebdevs
Block or Report

Block or report codelahoma

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotfiles dotfiles Public

    dotfiles castle for homeshick

    Shell 4

  2. homebrew homebrew Public

    Forked from Homebrew/legacy-homebrew

    The missing package manager for OS X.

    Ruby

  3. homeshick homeshick Public

    Forked from andsens/homeshick

    git dotfile synchronizer written in bash

    Shell

  4. oh-my-zsh oh-my-zsh Public

    Forked from ohmyzsh/ohmyzsh

    A community-driven framework for managing your zsh configuration. Includes 120+ optional plugins (rails, git, OSX, hub, capistrano, brew, ant, macports, etc), over 120 themes to spice up your morni…

    Shell

  5. Get Your Vim On Get Your Vim On
    1
    <!-- GistID: 3405881 -->
    2
    # Get Your Vim On
    3
    ### Rod Knowlton (@codelahoma)
    4
    ### Tulsa Web Devs - 8/20/2012
    5
    ### Last Updated: - 10/11/2013
  6. Highlight TODO and FIXME as warnings... Highlight TODO and FIXME as warnings in Xcode 8 (add as script build phase)
    1
    TAGS="TODO:|FIXME:"
    2
    SKIPDIRS="/Carthage"
    3
    find "${SRCROOT}/" -type f \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 \
    4
    | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" \
    5
    | grep -v "$SKIPDIRS" \