Skip to content

Instantly share code, notes, and snippets.

View Sebring's full-sized avatar
:octocat:
working on retro games for arduino game paddles

J. G. Sebring Sebring

:octocat:
working on retro games for arduino game paddles
View GitHub Profile
@Sebring
Sebring / .gitconfig
Created March 27, 2019 11:53
gitconfig
[user]
email = sebring@xyz.xxx
name = Sebring
[core]
editor = notepad
[alias]
l = log --color --graph --abbrev-commit --branches --pretty=format:'%C(red)%h%Creset -%C(yellow)%d%Creset %s %C(green)(%cr) %C(cyan)<%an>%Creset'
ll = log --name-status --abbrev-commit --pretty=format:'%C(red)%h%Creset %C(yellow)% d%Creset%C(green) (%cr)%C(cyan) <%an>%Creset%n%s'
s = status
d = diff
@Sebring
Sebring / HtmlTextView.java
Created September 4, 2015 09:12
HtmlTextView - Android TextView to in databinding where content is HTML
import android.content.Context;
import android.text.Html;
import android.text.method.LinkMovementMethod;
import android.util.AttributeSet;
import android.widget.TextView;
public class HtmlTextView extends TextView {
public HtmlTextView(Context context) {
super(context);