- Mont Bar - Very good restaurant with great selection of wines
- Chivuo's - Burger joint with draft beer 👌
- Mercat del Carmel - Food market that my friends recommended to go (we didn't have time to visit)
- [Vegetalia](https://www.google.com/map
- testing
- nested
- md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x8512A687F9B8e65b8a4Aac220AB7132b2189A175 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Promise = require('bluebird') | |
_ = require('lodash') | |
express = require('express') | |
bodyParser = require('body-parser') | |
GithubApi = require('github') | |
Response = | |
state: [ 'success', 'error', 'failure' ] | |
description: [ 'Versionist passed!', 'Error: missing versionist conventions', 'Failed to apply versionist' ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ enumerateServices, findServices } = require './lib/discoverable' | |
AVAHI_RESIN_SSH_TAG = 'resin-ssh' | |
enumerateServices() | |
.then (availableServices) -> | |
services = [] | |
for s in availableServices | |
services.push(s.service) if AVAHI_RESIN_SSH_TAG in s.tags | |
return services |
I hereby claim:
- I am lekkas on github.
- I am lekkas (https://keybase.io/lekkas) on keybase.
- I have a public key whose fingerprint is BC93 B996 0FA9 EE06 98CC 37A4 7742 375E 5EDF 01C3
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# backend-labels.json | |
[ | |
{"name": "Backlog", "color": "fef2c0"}, | |
{"name": "flow/to-do", "color": "fef2c0"}, | |
{"name": "flow/blocked", "color": "fef2c0"}, | |
{"name": "flow/in-progress", "color": "fef2c0"}, | |
{"name": "flow/in-review", "color": "fef2c0"}, | |
{"name": "flow/waiting-for-staging", "color": "fef2c0"}, | |
{"name": "flow/testing", "color": "fef2c0"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mergesort = require('./src/sorting/mergesort.js').mergeSort; | |
var args = process.argv.slice(2); | |
if (args.length === 0) | |
return 1; | |
var size = parseInt(args[0]); | |
var a = []; | |
for (var i = 0; i < size; i++) | |
a.push(Math.floor(Math.random() * 100)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char *argv[]) { | |
printf("Check this out!\n"); | |
} |