Skip to content

Instantly share code, notes, and snippets.

View rishikeshdhokare's full-sized avatar

Rishikesh Dhokare rishikeshdhokare

View GitHub Profile
public class LocalDateDeSerializer extends StdDeserializer<LocalDate> {
public LocalDateDeSerializer() {
this(null);
}
public LocalDateDeSerializer(Class<?> vc) {
super(vc);
}
@rishikeshdhokare
rishikeshdhokare / git_refresh
Last active June 5, 2018 05:04
git pull all the repositories in a directory
#!/bin/bash
for d in ./*/;
do (
cd "$d" &&
currentDir=`pwd`
echo "updating `basename "$currentDir"`..."
git pull
);
done