We eat lunch late, around 2 to 3pm General rule is that most street places that have a lot of people around them are good, so dont be afraid to experiment.
- El Tizoncito ($$)
- El Califa ($$)
| $(document).ready(function() { | |
| $(window).on('resize', function() { | |
| $('.col-sm-6.dyn-height').each(function(i, e) { | |
| var w = $(e).width(); | |
| var newH = w; | |
| $(e).height(newH); | |
| }); |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import with_statement | |
| import SocketServer | |
| from BaseHTTPServer import BaseHTTPRequestHandler | |
| from urlparse import parse_qs | |
| from urllib import unquote | |
| import re |
| #!/usr/local/bin/python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals, division | |
| my_things = { | |
| 'hello': 34, | |
| 'a': True, | |
| 'b': 56.874 | |
| } |
| #!/usr/local/bin/python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import with_statement | |
| import os | |
| import json | |
| import docopt | |
| from shutil import rmtree, copytree | |
| VCS_DIR_NAME = '.myvcs' |
| (fn [d ks] (loop [result {}, remaining ks, default d] | |
| (if (not (empty? remaining)) | |
| (recur (conj result {(first remaining) default}) | |
| (rest remaining) | |
| d) | |
| result))) |
| #!/usr/bin/python | |
| # 3.5 implement a MyQueueClass using two stacks. | |
| class MyQueueClass(object): | |
| def __init__(self): | |
| self.s1 = [] | |
| self.s2 = [] | |
| self.current_stack = self.s1 |
| #!/usr/local/bin/python | |
| from __future__ import unicode_literals, with_statement | |
| import sys | |
| import os | |
| import json | |
| from datetime import datetime, timedelta | |
| ZERO_STATE = { | |
| 'last_downloaded_month': None, |
| { | |
| "ResultCode":"Success", | |
| "DocCode":"INV001", | |
| "DocDate":"2015-07-15", | |
| "Timestamp":"2015-07-22T22:59:22.4794018Z", | |
| "TotalAmount":"195", | |
| "TotalDiscount":"0", | |
| "TotalExemption":"0", | |
| "TotalTaxable":"195", | |
| "TotalTax":"14.63", |
| nums_1_19_1 = [ | |
| None, | |
| "One", | |
| "Two", | |
| "Three", | |
| "Four", | |
| "Five", | |
| "Six", | |
| "Seven", | |
| "Eight", |