I hereby claim:
- I am cesar on github.
- I am cesarcruz (https://keybase.io/cesarcruz) on keybase.
- I have a public key ASBvxOLQSGteFbBDSBkWBFaZavKFaSBBjUTOmoZVoovf-Ao
To claim this, I am signing this object:
My name is César Cruz. I’m a computer engineering student from University of Puerto Rico graduating this coming fall. Browsing through Hacker News I saw your job posting; I consider myself a good fit for <the job position>. | |
I have previous experience using jQuery Mobile, NodeJS using Express and MySQL (https://github.com/joframart/LlamaBucket and https://github.com/sezalcru/llama_bucket) I’ve also worked with projects for the government of Puerto Rico (https://github.com/commonwealth-of-puerto-rico/PuertoRicoByPuertoRicans) using Node, Bootstrap and MongoDB | |
During this past summer, I was an intern over at Goldman Sachs at New York City. I spent the summer working on designing and implementing an API, using Java (Jersey Framework) and Cassandra, that would be used by other applications in the division. There was strong emphasis on design patterns and testability which I was able to pick up with the help of the team. | |
Each of these experiences has taught me a lot and I strongly believe that I can contribute t |
{ | |
"ref": "refs/heads/gh-pages", | |
"before": "4d2ab4e76d0d405d17d1a0f2b8a6071394e3ab40", | |
"after": "7700ca29dd050d9adacc0803f866d9b539513535", | |
"created": false, | |
"deleted": false, | |
"forced": false, | |
"base_ref": null, | |
"compare": "https://github.com/baxterthehacker/public-repo/compare/4d2ab4e76d0d...7700ca29dd05", | |
"commits": [ |
I hereby claim:
To claim this, I am signing this object:
function fakeFetchData(url, args) { | |
return new Promise((resolve, reject) => { | |
setTimeout(function() { | |
// here in the resolve, you can pass any object that you want | |
// to simulate the server response | |
return resolve({ | |
posts: [ | |
{ | |
id: 1, | |
title: 'Somthing goes here', |
import csv | |
import os | |
from difflib import get_close_matches | |
import shutil | |
import re | |
import copy | |
def sanitize_name(name): | |
return re.sub(r"(\((\w*|\s)*\)|\.|\s)", '', name).lower() |
import React, { Component } from 'react'; | |
import { View } from 'react-native'; | |
export function Post ({ title, embedded }) { | |
return ( | |
<View style={styles.smallPost}> | |
<View style={styles.smallTextBlock}> | |
<H3>{title.rendered}</H3> | |
</View> | |
{embedded['wp:featuredmedia'] ? ( |
if (embedded) { | |
if (embedded['wp:featuredmedia']) { | |
if (embedded['wp.featuredmedia'][0]) { | |
... | |
} | |
} | |
} | |
// Usando lodash get | |
import get from 'lodash/get' |