Skip to content

Instantly share code, notes, and snippets.

View krehl's full-sized avatar
🏠
Working from home

Konstantin Krehl krehl

🏠
Working from home
View GitHub Profile
anonymous
anonymous / index.html
Created October 17, 2016 13:38
// source http://jsbin.com/pisarilesa
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<!-- I recommend you host this file on your own, since this will change without warning -->
<script src="http://datamaps.github.io/scripts/datamaps.world.min.js?v=1"></script>
<div id="datamap" style="position: relative; width: 80%; max-height: 600px; border:1px solid black;"></div>
@clemherreman
clemherreman / install.sh
Created February 20, 2012 13:17
How to: install nodeJS on debian Squeeze, via @sekati
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev
git clone https://github.com/joyent/node.git
cd node
# 'git tag' shows all available versions: select the latest stable.
git checkout enter-a-version
# Configure seems not to find libssl by default so we give it an explicit pointer.
# Optionally: you can isolate node by adding --prefix=/opt/node