Skip to content

Instantly share code, notes, and snippets.

swagger: '2.0'
info:
title: 'Nobel Prize Master Data'
description: 'Information about the Nobel Prizes and the Nobel Prize Laureates'
version: '2.0'
license:
name: CC0
url: https://creativecommons.org/publicdomain/zero/1.0/
@jcarmena
jcarmena / gitflowrebasing.md
Created March 5, 2019 13:41 — forked from markreid/gitflowrebasing.md
git flow with rebasing
:javascript
$(document).ready(function() {
window.loadIngredientSuggestionsEditor(#{@ingredients});
});
%h1 Edit ingredient suggestions
#js-ingredient-suggestions-editor
@jcarmena
jcarmena / restoring-sequencing.go
Last active June 9, 2016 22:27
Go: Restoring Sequencing
package main
import (
"fmt"
"math/rand"
"time"
)
func boring(msg string) <-chan Message {
c := make(chan Message)
@jcarmena
jcarmena / exercise-web-crawler.go
Created March 4, 2015 22:04
A Tour of Go: Concurrency #9 - Web Crawler
package main
import (
"fmt"
)
type Fetcher interface {
// Fetch returns the body of URL and
// a slice of URLs found on that page.
Fetch(url string) (body string, urls []string, err error)