Skip to content

Instantly share code, notes, and snippets.

View raulpineda's full-sized avatar

Raúl Pineda raulpineda

View GitHub Profile
const csv = require("csv-parser");
const fs = require("fs");
const parseArgs = require("minimist");
const createCsvWriter = require("csv-writer").createObjectCsvWriter;
const _ = require("lodash");
function printProgress(progress) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
process.stdout.write(progress);

Istambul

Coffee

In general a light roast in Istanbul would mean medium in Copenhagen, the craft of the baristas is pretty high quality

Petra: Didn’t go to the roasters but I tried the beans, very nice

Coffee Brew Lab: chain, not worth it

Kronotrop: Highly recommended, also nice pastries. The barista recommendations were on point.

@raulpineda
raulpineda / MexicanFood.md
Last active February 11, 2021 10:00
A list of Mexican food worth trying

Regional Specialties:

South East

  • Papatzules - Pumpkin seed sauce and egg based dish
  • Cochinita Pibil - Like pulled pork, but Mexican, and a million times better
  • Pan de Cazón - One of those things you can only get in the Mexican southeast: it's a local shark and black bean based specialty
  • Relleno negro (Chilmole) - Turkey and a black sauce that's waaay to difficult to describe properly.
  • Panuchos - Street food classic. It's a fluffy tortilla filled with refried beans and pork
  • Salbutes - Similar to panuchos, but fresher and normally turkey based
  • Tamales - Corn based dough steamed in a banana leaf with meat and sauce

Keybase proof

I hereby claim:

  • I am raulpineda on github.
  • I am raulpineda (https://keybase.io/raulpineda) on keybase.
  • I have a public key ASCbCupQEmZvWXjv4wSULXS30V8opizsITzzkncBu9fy_Qo

To claim this, I am signing this object:

@raulpineda
raulpineda / ReactComponentBoilerplate.js.jsx
Created March 3, 2017 12:52
Boilerplate for creating new React components.
class MyReactComponent extends React.Component {
constructor(props) {
super(props);
this.state = {}
// Event Handlers
// Event handling functions should start with the word handle.
this.handleInteraction = (e) => {
};
// Helper Functions