Skip to content

Instantly share code, notes, and snippets.

View jmmerino's full-sized avatar

Jesús Merino Parra jmmerino

View GitHub Profile

Prueba de código para Frontend

La prueba de código consiste en crear una web-app sencilla con solo front-end, cero back-end. Aqui puedes descargar un PSD (y un zip con las imágenes sueltas) con una propuesta de diseño para la web-app.

Funcionalidades

Lo que queremos hacer es un Trivial de números. Para eso vamos a usar la API de Numbers API.

El funcionamiento básico debe ser el siguiente:

  • Se deben responder a 10 preguntas y cada pregunta será sobre un número, escogido al azar
@jmmerino
jmmerino / .zshrc
Last active May 14, 2018 14:46 — forked from saetia/.zshrc
Zsh settings
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="avit"
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # end mode
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\E[0m' # end underline
@jmmerino
jmmerino / gist:da81cfbd009eb786cdad
Last active December 10, 2015 07:30 — forked from saetia/gist:1623487
Clean Install – OS X 10.11 El Capitan

OS X Preferences


most of these require logout/restart to take effect

# Disable window animations ("new window" scale effect)
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
@jmmerino
jmmerino / mixin.sass
Last active August 29, 2015 14:16
Sass mixin for responsive styles
@mixin respond-to($screen-width, $fallback: true) {
// We have to set up a blank variable here or sass errors out
$breakpoint: '';
@if $screen-width == x-small {
$breakpoint: 320;
} @else if $screen-width == small {
$breakpoint: 480;
} @else if $screen-width == medium {