Flexbox: la evolución del responsive, adiós floats?
Flexbox es un nuevo módulo de CSS3 que permite mejorar y facilitar la forma en que ubicamos elementos, simple y fácil. Hoy Uriel nos compartió 3 enlaces muy interesantes: Para aprender y probar flex: – Probar diferentes casos de flex: http://demo.agektmr.com/flexbox/ – Mismo que el anterior pero mas cheto de vista: http://the-echoplex.net/flexyboxes/ – Juego para […]
Conditional CSS: Targeting IE new versions
Targeting IE new versions such us IE10 & IE11 and Edge browsers with CSS is possible, but not the ol’ fashioned way because Microsoft deprecated the conditional commenting (if IE) we used in older versions. So where’s the black magic? Here: @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { /* IE10+ specific styles go here […]
Aprendiendo a Branchear en GIT
Git es un software de control de versiones diseñado por Linus Torvalds, pensando en la eficiencia y la confiabilidad del mantenimiento de versiones de aplicaciones cuando éstas tienen un gran número de archivos de código fuente. En GM2DEV la organización es clave y usamos Git para mantener nuestro código seguro y limpio. Jonathan nos compartió un […]
Webfont Generators: our top 5
We need to add beautiful fonts on our projects daily so using webfonts is a must. Webfonts are a specially tuned font for use on websites using the CSS @font-face declaration. For solving that we have some cool web tools for generating webfonts, here’s our curated list: Fontsquirrel: the best but very picky if you […]
:nth-last-of-type(n) and :last-of-type selectors
The :nth-last-of-type(n) selector matches every element that is the nth child, of a particular type, of its parent, counting from the last child. The :last-of-type selector matches every element that is the last child, of a particular type, of its parent. Thanks Gonzo!
Un comienzo básico (muy) en React
React es una librería Javascript para crear interfaces de usuario bajo la autoría de los Ingenieros de Facebook e Instagram. Está pensado para desarrollar interfaces de usuario complejas. En GM2Dev la usamos para resolver el gran desafío de desarrollar aplicaciones con data que cambia a través del tiempo. Uriel nos compartió unos excelentes enlaces: – React a […]
Adding backgrounds on Chrome Inspector
The Chrome DevTools are an amazing set of web authoring and debugging tools built into Google Chrome. It provides web developers and designers really deep access into the internals of the browser and their web application. Use the DevTools to efficiently track down layout issues, set JavaScript breakpoints, and get insights for code optimization. Here’s something […]
Git: ver los commits implicados en un archivo
for x in `git blame | cut -d\ -f1 | sort | uniq`; do git log –oneline -n 1 $x; done; Agradecimiento: Juan Pablo Lassala
WordPress menus: no wrapper on list items
Simply: Thanks: Fabio Pampin
Colores en terminal Bash & iTerm
Este archivo lo guardas como .bash_prompt en tu home. Generas adentro de .bash_profile (tambien debe estar en tu home) un código como este: for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do [ -r “$file” ] && source “$file” done unset file Cuando reinicies la terminal, deberías verla con colores (el código de bash_profile, chequea si esta alguno de […]