Skip to content

Instantly share code, notes, and snippets.

@Frenzie
Frenzie / otter-with-neck.svg
Created January 4, 2014 16:38
Otter with neck (icon sketch/fan art for Otter Browser)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!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." />
@Frenzie
Frenzie / README.md
Last active August 29, 2015 14:12
Automated Otter package creation

Auto-packaging Otter

Dependencies

  • virtualbox4.2+
  • vagrant

Usage

  • Install dependencies, for example sudo apt install virtualbox vagrant
@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}
}
@Frenzie
Frenzie / zmq_to_pipe.c
Created July 29, 2024 15:19
Grabs data from a zmq socket and sends it to STDOUT
// 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;
}