This file contains hidden or 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
import static org.junit.Assert.*; | |
import com.artemis.Entity; | |
import com.artemis.World; | |
import org.junit.Test; | |
public class Test { | |
@Test |
This file contains hidden or 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
# searches pom.xml files for $1 - skip target folders | |
alias poms="find . -name pom.xml -and -not -path '*/target/*' -print0 | xargs -0 fgrep -n --color=auto $1" | |
# copies the output of the last command to the clipboard | |
copylast() { | |
fc -s | pbcopy | |
} | |
# will show you how many commits there are that matches $1 | |
numcommits() { |