Skip to content

Instantly share code, notes, and snippets.

View mgimenez's full-sized avatar
🎯
Focusing

Matias mgimenez

🎯
Focusing
View GitHub Profile
@mgimenez
mgimenez / .bash_profile
Created November 11, 2019 14:52
bash_profile
export CLICOLOR=1
export LSCOLORS=exFxCxDxBxegedabagaced
#Start directory
cd /Users/mgimenez/Documents/workspace
#GIT Alias
alias sta='git status'
alias add='git add'
@mgimenez
mgimenez / reggae.zsh-theme
Created November 4, 2019 20:51
Oh-My-Zsh theme
# the idea of this theme is to contain a lot of info in a small string, by
# compressing some parts and colorcoding, which bring useful visual cues,
# while limiting the amount of colors and such to keep it easy on the eyes.
# When a command exited >0, the timestamp will be in red and the exit code
# will be on the right edge.
# The exit code visual cues will only display once.
# (i.e. they will be reset, even if you hit enter a few times on empty command prompts)
typeset -A host_repr
# translate hostnames into shortened, colorcoded strings
host_repr=('dieter-ws-a7n8x-arch' "%{$fg_bold[green]%}ws" 'dieter-p4sci-arch' "%{$fg_bold[blue]%}p4")
# the idea of this theme is to contain a lot of info in a small string, by
# compressing some parts and colorcoding, which bring useful visual cues,
# while limiting the amount of colors and such to keep it easy on the eyes.
# When a command exited >0, the timestamp will be in red and the exit code
# will be on the right edge.
# The exit code visual cues will only display once.
# (i.e. they will be reset, even if you hit enter a few times on empty command prompts)
typeset -A host_repr
@mgimenez
mgimenez / base.css
Last active August 29, 2015 14:13
PopUp Chat
/* Hoja de estilos para el html de la pantallas de chat ML y chat MP */
body {
font-family: Helvetica, Arial, sans-serif;
background-color: #fff;
padding: 0;
}
.content p {
font-size: 13px;
(function (win, doc) {
'use strict';
var bind = win.addEventListener ? 'addEventListener' : 'attachEvent',
unbind = win.removeEventListener ? 'removeEventListener' : 'detachEvent',
prefix = (bind !== 'addEventListener') ? 'on' : '',
cho = win.cho || {};
/**
* Created by https://github.com/component/event/blob/master/index.js