Skip to content

Instantly share code, notes, and snippets.

View leodelgadodev's full-sized avatar
💻
Not a consumer, be a creator.

Leo leodelgadodev

💻
Not a consumer, be a creator.
  • Buenos Aires, Argentina
View GitHub Profile
@nnydjesus
nnydjesus / TransactionRunner.kt
Created June 5, 2020 22:29
Runner genérico
package ar.edu.unq.unidad3.service.runner
import org.hibernate.Session
interface Transaction {
fun start()
fun commit()
fun rollback()
}
@johanmeiring
johanmeiring / gist:3002458
Created June 27, 2012 08:32
"git lg" alias for pretty git log
# From http://garmoncheg.blogspot.com/2012/06/pretty-git-log.html
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"