- 2 kilos de aji chire con semilla
- 4 kilos de aji dulce criollo rojito el largito con semilla
- 1 ½ kilos de cebolla
- 1 ½ kilos de pimenton rojo sin semilla (puede ser rocoto)
- ½ kilo de ajo
- ¾ taza de vinagre
- ¾ taza de agua
- Sal al gusto
El dulce
| git log --numstat --pretty="%H" --author=$1 | grep -v "public/" | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("+%d, -%d\n", plus, minus)}' |
| require 'roo' | |
| module ExcelValidator | |
| class Cause | |
| #EXCEL_COLUMN_NAMES = ['NOMBRE DEL CLIENTE', 'ASUNTO', 'CODIGO DE LA CAUSA', 'JUZGADO', 'MATERIA', 'CODIGO', 'PERSONAS INVOLUCRADAS EN LA CAUSA'] | |
| # column_names = { id: 'NOMBRE DEL CLIENTE', .... } | |
| class << self | |
| def manage_file(file, **column_names) | |
| @column_names = column_names | |
| case File.extname(file.original_filename) |
| defmodule FizzBuzz do | |
| def start do | |
| IO.inspect Enum.map(1..100, fizz_or_buzz) | |
| end | |
| def fizz_or_buzz(n) do | |
| cond do | |
| rem(n,15) == 0 -> "FizzBuzz" | |
| rem(n,5) == 0 -> "Buzz" |
| class DefaultOrder | |
| def order(data) | |
| data | |
| end | |
| end | |
| class RandomOrder | |
| def order(data) | |
| data.shuffle | |
| end |
| require 'open-uri' | |
| require 'nokogiri' | |
| module Suites | |
| module XML | |
| BASE_URL = 'http://menuboardmanager.com/xml/' | |
| class << self | |
| def prices_url | |
| { | |
| :week_promo => 'dallassuiteshotelDiario.xml', |
| #log de commits locales que no se han pusheado | |
| alias gl='git log --branches --not --remotes --decorate' | |
| alias gs='git status' | |
| alias gf='git fetch origin' | |
| alias gd='git difftool --tool=meld -d HEAD &' | |
| alias ga='git add -u .;git add .' | |
| alias gb='git branch -a' | |
| gr(){ | |
| git reset $* |
| { | |
| "meta": { | |
| "code": 200, | |
| "requestId": "56b398a5498e7ce97bb8f1c8" | |
| }, | |
| "notifications": [ | |
| { | |
| "item": { | |
| "unreadCount": 2 | |
| }, |
| set encoding=utf-8 | |
| set nocompatible " We're running Vim, not Vi! | |
| filetype off | |
| :set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'gmarik/Vundle.vim' | |
| Plugin 'mattn/emmet-vim' | |
| Plugin 'fatih/vim-go' |
El dulce
| #!/bin/bash | |
| set -ex | |
| git checkout -b build | |
| GOOS=linux buffalo build -z -o bin/heroku | |
| git add . | |
| git commit -a -m "binary commit" | |
| git push heroku build:master --force | |
| heroku run bin/heroku migrate |