Skip to content

Instantly share code, notes, and snippets.

View spiffxp's full-sized avatar
💭
I may be slow to respond.

Aaron Crickenberger spiffxp

💭
I may be slow to respond.
View GitHub Profile
@spiffxp
spiffxp / ProxyMockIntelliJHighlightingTests.scala
Created January 22, 2013 08:36
Having an issue getting IntelliJ to highlight ScalaMock 3.x + ScalaTest properly
package com.example
import org.scalatest.FunSuite
import org.scalamock.scalatest.proxy.MockFactory
import org.scalamock.scalatest.{MockFactory => RegularMockFactory}
import org.scalamock.proxy.ProxyMockFactory
trait Highlight
class ProxyMockIntelliJHighlightingBrokenTest extends FunSuite with MockFactory {
@spiffxp
spiffxp / .gitconfig
Created December 11, 2012 20:48
My git config
[user]
name = Aaron Crickenberger
email = spiffxp@gmail.com
[alias]
br = branch
ca = commit --amend
ci = commit
cp = cherry-pick
co = checkout
fp = fetch --prune
@spiffxp
spiffxp / .bash_profile
Created December 7, 2012 21:47
My .bash_profile
# .bash_profile
# ls
export CLICOLOR=1
alias ll='ls -l'
alias la='ls -a'
# auto-completion hooks
for file in /usr/local/etc/bash_completion.d/*; do
source $file
#!/usr/bin/env bash
sed 's|/Users/USERNAME/Dropbox/Public|/http://dl.dropbox.com/u/3423/|g';
sed 's|file://localhost/Users/USERNAME/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g';
sed 's|~/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g';
sed 's|\.\.\/Public/|http://dl.dropbox.com/u/3423/|g';