Skip to content

Instantly share code, notes, and snippets.

View jrub's full-sized avatar
🏠
Working from home

Javi Rubio jrub

🏠
Working from home
View GitHub Profile
@jrub
jrub / feedbackAPIsAytoZgz.md
Last active August 29, 2015 14:17
Feedback recopilado durante el #ZgzAppStore sobre las APIs Open Data del Ayuntamiento de Zaragoza

Feedback APIs Ayto Zgz

Web municipal

http://www.zaragoza.es/ciudad/actividades/

  • Bug en la web: das a Próximos 7 dias. En la siguiente ventana, das a la pestaña "todo", y no cambia total de eventos, se queda fijo en 7 dias aunque cambia la pestaña (ver URL, concatena el parámetro "rango" sin más)
  • en la web, sale todo ordenado por lastModified, por tanto una correción o modificación del evento hace que suba el evento arriba. No tiene mucho sentido. Yo si tuviera permisos de acceso para crear eventos, lo haría continuamente para promocionar mi evento al primero de la lista en mi categoría.
  • Tras entrar a la sección "Fiestas Locales", aparece una nueva sección: JUVENIL
@jrub
jrub / senpai_betabeers.md
Created January 9, 2015 18:09
Senpai Devs: BetaBeers Zaragoza 9-1-15

Reflexiones...

  1. ¿Industria del software en España?
  2. Formación...

Equipo

  1. Dani Latorre @dani_latorre
@jrub
jrub / SenpaiDevs.md
Last active March 26, 2016 10:46
Senpai Devs: contenidos
  • Principios y metodologías Ágiles
  • eXtreme Programming, CI, TDD
  • Scrum, Kanban
  • vim mastering
  • Linux, bash
  • tools para pair programming
  • git
  • DevOps, Deploys, provisioning, Docker
  • Bases de datos
  • Ruby, Rails, JS
@jrub
jrub / Vagrantfile
Last active August 29, 2015 14:02
Simple Vagrantfile with inline shell provision script for Symfony2 projects
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
# reconfigura los locales para evitar mensajes molestos
locale-gen UTF-8
sudo dpkg-reconfigure locales
@jrub
jrub / AppKernel.php
Created July 8, 2011 07:18
Mink RC2 with MinkBundle and BehatBundle configurations for reusing old steps closured style
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
@jrub
jrub / ClosuredFeatureContext_Original.php
Created July 7, 2011 09:22
All wrong. See http://goo.gl/RKKAp . // Trying to get Mink RC1 working with MinkBundle using old closures steps style
<?php
namespace MyProject\MyBundle\Features\Context;
use Behat\Behat\Context\ClosuredContextInterface as ClosuredContext,
Behat\Behat\Context\TranslatedContextInterface as TranslatedContext,
Behat\Behat\Context\BehatContext;
use Behat\Mink\Behat\Context\MinkContext;