Skip to content

Instantly share code, notes, and snippets.

View buritica's full-sized avatar
💭
💀

Juan Pablo Buriticá buritica

💭
💀
View GitHub Profile
@buritica
buritica / rifa-platzi.js
Last active March 10, 2020 21:03
his script is the raffle for 20 scholarships to my Engineering Management course based on this tweet https://twitter.com/buritica/status/1235268210863345664 */
/**
* This script is the raffle for 20 scholarships to my Engineering Management course
* based on this tweet https://twitter.com/buritica/status/1235268210863345664
*/
let participants = []
// get all the replies to the tweet
let questions = document.querySelectorAll('article')
@buritica
buritica / future-of-bogotaconf.md
Last active March 8, 2019 06:42
Future of Bogotaconf
layout title date comments categories
post
The Future of BogotaConf
2013-07-02 00:25
true

The future of BogotaConf

@buritica
buritica / sancocho.md
Created August 6, 2018 23:19
receta de sancocho

Receta del sancocho para 4-6 personas.

Ingredientes

  • 1 1/2 libra de costilla de res magra o asado de tira. Tiene mejor sabor la costilla.
  • 6 perniles de pollo
  • 4 gajos de cebolla larga
  • 1 cabeza de ajo
  • 1 cebolla blanca
  • 1 cubo de caldo rico
  • 2 plátanos verdes
@buritica
buritica / jest-test-environment.js
Created July 30, 2018 01:46
jest test environment boilerplate
const NodeEnvironment = require('jest-environment-node')
const debug = require('debug')('ec-test:environment')
/**
*
*/
class CustomEnvironment extends NodeEnvironment {
constructor (config) {
super(config)
}
@buritica
buritica / col-js-mision.md
Created July 26, 2018 05:17
Mision de Col.js - JSconfCO

¿Cual es la misión de ColJS?

  • Exponer a la comunidad local a las mejores técnicas, librerías, herramientas y tecnologías modernas enfocadas al desarrollo de aplicaciones web, en diferentes entornos como cliente, servidor y hardware embebido.
  • Resaltar el esfuerzo de miembros locales para fomentar el crecimiento de una comunidad inclusiva y respetuosa.
  • Generar impacto social a través de diferentes programas como becas, retos de programación y demás, para que cualquiera persona talentosa de cualquier nivel social pueda tener acceso al conocimiento que se genera y comparte en los eventos de ColJS.
  • test
@buritica
buritica / gist:2154326
Created March 22, 2012 00:08
Apple's .co domains
$matrix{"apple.co"} = "http://www.apple.com/?cid=oas-us-domains-apple.co";
$matrix{"itunes.co"} = "http://www.apple.com/itunes/?cid=oas-us-domains-itunes.co";
$matrix{"imac.co"} = "http://www.apple.com/imac/?cid=oas-us-domains-imac.co";
$matrix{"ipod.co"} = "http://www.apple.com/ipod/?cid=oas-us-domains-ipod.co";
$matrix{"macbook.co"} = "http://www.apple.com/macbook/?cid=oas-us-domains-macbook.co";
$matrix{"applestore.co"} = "http://store.apple.com/us?cid=oas-us-domains-applestore.co";
$matrix{"macintosh.co"} = "http://www.apple.com/mac/?cid=oas-us-domains-mac.co";
$matrix{"macintosh.cl"} = "http://www.apple.com/la/mac/?cid=oas-us-domains-macintosh.cl";
$matrix{"mobileme.co"} = "http://me.com";
$matrix{"itunesstore.co"} = "http://www.apple.com/itunes/?cid=oas-us-domains-itunesstore.co";

tbGyHaAkhxjyfrna9CjvrnsN

@buritica
buritica / carl.md
Last active July 10, 2017 14:25
latam tech

Hey Juan,

I am looking to cover stories about the tech ecosystems across Latin America for Software Engineering Daily. I would like to speak with individuals who can provide either a good general overview about a particular country or a technical discussion about how certain technologies (blockchain, mobile, VR etc) are being used in a particular country. A good example of this is my previous episode on the Middle East: https://softwareengineeringdaily.com/2017/05/11/tech-in-the-middle-east-with-chris-shroeder or my show on mobile payments in Kenya: https://softwareengineeringdaily.com/2017/04/18/kenya-mobile-payments-with-george-gachui

Any interested parties can reach me via my e-mail or Twitter @CarlMungazi.

Thanks.

@buritica
buritica / Dockerfile
Created March 11, 2017 06:45
node dockerfile with yarn
FROM node:7.7
# Install Yarn
RUN curl -o- -L https://yarnpkg.com/install.sh | bash
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Copy app dependency files