Skip to content

Instantly share code, notes, and snippets.

View jcholin's full-sized avatar
🏠
Working from home

Julien Cholin jcholin

🏠
Working from home
View GitHub Profile
@jcholin
jcholin / 1MarkerAnimation.java
Created April 14, 2017 07:39 — forked from broady/1MarkerAnimation.java
Animating Markers
/* Copyright 2013 Google Inc.
Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0.html */
package com.example.latlnginterpolation;
import android.animation.ObjectAnimator;
import android.animation.TypeEvaluator;
import android.animation.ValueAnimator;
import android.annotation.TargetApi;
import android.os.Build;
@jcholin
jcholin / .bashrc
Created April 9, 2017 19:51 — forked from vsouza/.bashrc
Golang 1.5 setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
@jcholin
jcholin / CircularRevealHelper.java
Last active May 16, 2016 18:08
A simple helper for creating Circular Reveal
import android.animation.Animator;
import android.annotation.TargetApi;
import android.os.Build;
import android.support.annotation.NonNull;
import android.view.View;
import android.view.ViewAnimationUtils;
import java.lang.ref.WeakReference;
/**