Skip to content

Instantly share code, notes, and snippets.

@adrianulbona
adrianulbona / .block
Created March 26, 2018 07:35 — forked from cagrimmett/.block
Let's Make a Grid with D3.js
license: gpl-3.0
height: 510
@adrianulbona
adrianulbona / index.html
Created May 2, 2017 08:02 — forked from nrenner/index.html
OSM PBF + osmtogeojson test
<!DOCTYPE html>
<html>
<head>
<title>OSM PBF to GeoJSON example (osm-read + osmtogeojson)</title>
<meta charset="utf-8"/>
</head>
<body>
<pre id="log" style="max-height: 480px; overflow-y: auto;"></pre>
@adrianulbona
adrianulbona / uKanren.scala
Created March 15, 2017 02:36 — forked from adamnew123456/uKanren.scala
microKanren In Scala
/**
* An implementation of microKanren (and probably most of miniKanren), with
* a few extras. Currently, it supports:
*
* - The essential core of microKanren: Unify, Fresh, Disjunction, Conjunction
* - Standard terms: Variables, Atoms, TermCons, EmptyTerm.
* - An implicit conversion from type T to Atom[T]. This makes writing programs
* much easier.
* - A decent reifier, which converts terms to strings.
*