- virtualbox4.2+
- vagrant
- Install dependencies, for example
sudo apt install virtualbox vagrant
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=1024" /> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<title>impress.js | presentation tool based on the power of CSS3 transforms and transitions in modern browsers | by Bartek Szopka @bartaz</title> | |
<meta name="description" content="impress.js is a presentation tool based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com." /> |
@media print { | |
html {font-size: 12pt} /* wat je leuk vindt */ | |
@page {size:10cm 13.5cm} /* schermgrootte */ | |
@page {margin:2em 2.5em 1.5em} /* leef je uit */ | |
@page { | |
/* dit zijn van die dingen die ik leuk vind */ | |
@top { content: string(chapter-title); font-size:.6em;font-variant:small-caps } | |
@bottom {content: counter(page); font-size:.6em} | |
} |
// gcc -o zmq_to_pipe zmq_to_pipe.c -lzmq | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <zmq.h> | |
int main(int argc, char *argv[]) { | |
if (argc != 2) { | |
fprintf(stderr, "Usage: %s <zmq_socket_path>\n", argv[0]); | |
return 1; | |
} |