Skip to content

Instantly share code, notes, and snippets.

View buritica's full-sized avatar
💭
💀

Juan Pablo Buriticá buritica

💭
💀
View GitHub Profile
- http://www.amazon.com/Privilege-Power-Difference-Allan-Johnson/dp/0072874899
- http://www.hup.harvard.edu/catalog.php?isbn=9780674012424
- http://www.slate.com/articles/technology/technology/2014/01/programmer_privilege_as_an_asian_male_computer_science_major_everyone_gave.html
- http://www.thedailybeast.com/articles/2014/08/22/we-need-to-talk-about-silicon-valley-s-racism.html
- http://gawker.com/5981825/racism-doesnt-exist-in-tech-because-white-tech-blog-millionaire-jason-calacanis-has-never-seen-it
- http://techcrunch.com/2011/11/19/racism-and-meritocracy/
- https://modelviewculture.com/pieces/how-blacks-and-latinos-are-left-out-of-tech-hiring
- https://modelviewculture.com/pieces/we-hire-the-best
- https://modelviewculture.com/pieces/gendered-language-feature-or-bug-in-software-documentation
- https://modelviewculture.com/pieces/the-newest-frontier
@buritica
buritica / bug_report.txt
Last active October 3, 2016 15:16
Bug Report
**Brief Summary**
As a `___ ` I did `___` and expected `___` but experienced `___`.
**Steps to reproduce**:
_if available_
1.
2.
3.
@buritica
buritica / index.js
Created February 5, 2015 00:20
requirebin sketch
// require() some stuff from npm (like you were using browserify)
// and then hit Rebuild to run it on the right
var async = require('async');
async.waterfall([
function(cb) {
console.log('hola');
cb();
},
function(cb) {
@buritica
buritica / nuevo
Created January 22, 2015 15:54
codigo postal
http://visor.codigopostal.gov.co/arcgis/rest/services/Mapa472/MapServer/30/query?f=json&where=Codigo_DANE%20%3D%20%2711001000%27&returnGeometry=true&spatialRel=esriSpatialRelIntersects&outFields=OBJECTID&outSR=102100
@buritica
buritica / apiary-template.md
Created January 18, 2015 20:45
apiary resource template

Group Resource

Order [/resources/{id}]

@buritica
buritica / .zshrc
Created December 10, 2014 23:13
my zshrc file
# Path to your oh-my-zsh configuration.
ZSH=$HOME/my/oh-my-zsh
# Set name of the theme to load.
ZSH_THEME="geoffgarside"
# oh-my-zsh plugins
plugins=(
git git-extras github \
heroku \
@buritica
buritica / pager.md
Last active August 29, 2015 14:08
Pager Frontend Dev

If you're interested, please email your CV buritica+pager [at] gmail . com

#Frontend Developer

Responsibilities:

Responsible for developing a responsive Web Application from existing iOS source code base. Work closely with Mobile team migrating current functionality and adding new features.

Required:

  • Knowledge on MV* frameworks. (AngularJS and/or Ember.js)
@buritica
buritica / git status
Created August 25, 2014 04:50
Breaking tests after ember-cli update
On branch ember-cli-update
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: .bowerrc
modified: .gitignore
modified: .travis.yml
modified: Brocfile.js
modified: bower.json

¿Cual es la mision 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 cómo 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.
var fs = require('fs');
var file = './index.html';
if (process.argv.length > 2) {
file = './' + process.argv[2];
}
var html = fs.readFileSync(file, 'utf8');