Skip to content

Instantly share code, notes, and snippets.

View Ivanknmk's full-sized avatar

Iván García Ivanknmk

View GitHub Profile
@Ivanknmk
Ivanknmk / fish_prompt.fish
Last active August 31, 2015 02:41 — forked from Olical/fish_prompt.fish
My fish shell lambda prompt functions (they go in ~/.config/fish/functions) it's extremely fast too! :D
# A lambda (λ) prompt.
# Green and red depending on exit status.
# Underlined if git status is dirty.
# Uppercase (Λ) if ahead of the remote.
function fish_prompt
if is_status_okay
set_color green
else
set_color red
package examples.database;
import com.google.common.collect.Lists;
import examples.database.dao.PeopleDAO;
import examples.database.model.PeopleInfo;
import org.apache.commons.lang.time.StopWatch;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Test;
import org.junit.runner.RunWith;