Skip to content

Instantly share code, notes, and snippets.

View danguita's full-sized avatar

David Anguita danguita

View GitHub Profile

Desarrollador web back-end en Ciudad Real

  • Empresa: Ático, estudio gráfico
  • Full-time y presencial en Ciudad Real (zona centro)
  • Jornada laboral flexible
  • Incorporación inmediata
  • Salario según capacidades demostradas

Requisitos

  • Amplia experiencia en desarrollo web basado en frameworks:
  • Trabajamos con CakePHP y Ruby on Rails, aunque experiencia con cualquier otro framework es bienvenida.

Desarrollador web front-end en Ciudad Real

  • Empresa: Ático, estudio gráfico
  • Full-time y presencial en Ciudad Real (zona centro)
  • Jornada laboral flexible
  • Incorporación inmediata
  • Salario según capacidades demostradas

Requisitos

  • Amplia experiencia en desarrollo front-end:
  • HTML, CSS, JavaScript (frameworks como jQuery o MooTools), web standards, cross-browsing, optimización en entornos de producción…
@danguita
danguita / hack.sh
Created March 31, 2012 10:53 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it (original):
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@danguita
danguita / gist:2436641
Created April 21, 2012 11:09
janus-plugin script
for i in $(ls -1 ~/.janus); do (cd ~/.janus/$i; echo $i >> ~/work/dotfiles/janus-plugins; git remote -v >> ~/work/dotfiles/janus-plugins; cd -); done
@danguita
danguita / rails3-template.yml
Last active October 21, 2015 12:04
Tmuxinator template for Rails 3 projects
# ~/.tmuxinator/rails_project.yml
# you can make as many tabs as you wish...
project_name: rails_project
project_root: ~/work/rails_project
pre: pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
tabs:
- editor: vim
- shell:
layout: even-vertical
@danguita
danguita / cakephp2-template.yml
Last active October 6, 2015 18:08
Tmuxinator template for CakePHP 2 projects
# ~/.tmuxinator/cakephp_project.yml
# you can make as many tabs as you wish...
project_name: cakephp_project
project_root: ~/Sites/cakephp_project/app
pre: mysql.server start
tabs:
- editor: vim
- shell:
layout: even-vertical
@danguita
danguita / update.sh
Created July 18, 2012 20:22
/Users/david/.janus/update.sh
for i in `ls -1`; do (echo $i; cd $i; git pull; cd ..); done
JANUS="$HOME/.janus"; for i in `ls -1 $JANUS`; do (if [ -d $JANUS/$i ]; then (echo $i; cd $JANUS/$i; git pull); fi); done
@danguita
danguita / gist:3910953
Created October 18, 2012 10:47
tmux 1.7 changelog
CHANGES FROM 1.6 to 1.7, 13 October 2012
* tmux configuration files now support line-continuation with a "\" at the
end of a line.
* New option status-position to move the status line to the top or bottom of
the screen.
* Enforce history-limit option when clearing the screen.
* Give each window a unique id, like panes but prefixed with @.
* Add pane id to each pane in layout description (while still accepting
the old form).
@danguita
danguita / gist:4003468
Created November 2, 2012 18:43
format a JSON string
{...} | python -mjson.tool