I hereby claim:
- I am kassisdion on github.
- I am kassisdion (https://keybase.io/kassisdion) on keybase.
- I have a public key ASA-m5mIZFMFj6Eq7XUaXIUkEGtMhoKWYe-BRMDp1Iba_go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
def findDefaultProguardConfig() { | |
return file('proguard-rules.pro') | |
} | |
def findExtraProguardConfig() { | |
def proguardFileTree = fileTree(dir: 'proguards', include: ['*.pro']).asList().toArray() | |
println "note: [Searching proguard file]" | |
println proguardFileTree | |
return proguardFileTree | |
} |
public interface BaseRxValidator<T> extends Function<T, Boolean> { | |
} | |
public class StringValidator implements BaseRxValidator<String> { | |
public static final int EMPTY = 0; | |
public static final int TOO_SHORT = 1; | |
@Retention(RetentionPolicy.SOURCE) | |
@IntDef({EMPTY, TOO_SHORT}) |
ration win 95% | |
809 octet | |
.name "the knock puncher" | |
.comment "il va vous les briser" | |
st r1,9 | |
fork %:roulo | |
live %42 | |
fork %:live | |
fork %:back_wall |
function clean() | |
{ | |
echo "searching for all ['*~' && '#*#']" | |
for f in $(find -type f \( -name '*~' -o -name '#*#' \)); do | |
echo "remove $f" | |
rm "$f" | |
done | |
} |