Skip to content

Instantly share code, notes, and snippets.

View OEUSSE's full-sized avatar
🎯
Focusing

Óscar Eusse Flórez OEUSSE

🎯
Focusing
  • Manizales, Colombia
View GitHub Profile
@OEUSSE
OEUSSE / Obtener mobile OS
Last active September 27, 2018 23:24
Saber si el cliente esta en un móbil y cuál es su SO
function clientFromMobile() {
if(getMobileOS()){
return {
res: true,
mobile: getMobileOS()
}
}
return false;
}
@OEUSSE
OEUSSE / superlog
Last active September 17, 2018 18:20
Superlog
git config --global alias.superlog "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"