Skip to content

Instantly share code, notes, and snippets.

View carstenschwede's full-sized avatar

Carsten Schwede carstenschwede

View GitHub Profile
@carstenschwede
carstenschwede / Zoom-HowToRecordMultipleBreakoutRoomsAtOnce.md
Last active May 24, 2022 09:52
How to record multiple breakout rooms at once in Zoom.

How to record multiple breakout rooms in Zoom at the same time:

  • Requirements

    • OS: Windows or Mac (Linux not tested, might work as well)
    • a Zoom account and Desktop installation (duh)
  • General idea

    • Host meeting under main account (main instance)
    • Open as many additional Zoom instances as there are breakout rooms (breakout instances)
    • For each breakout instance, join the meeting via meeting id + password and give each an easily identifiable name (e.g. "Breakout[1]", "Breakout[2]", ... )
var cluster = require('cluster');
if (cluster.isMaster) {
return require('os').cpus().forEach(cluster.fork);
}
require('http').createServer(function(req, res) {
res.end("hello world\n");
}).listen(8000);
@carstenschwede
carstenschwede / gist:5310277
Last active December 15, 2015 19:19
SIGABRT with hyperdex on OS X
#=====================
#WITHOUT LEVELDB PATCH
#=====================
$brew tap carstenschwede/homebrew-hyperdex
$brew tap homebrew/versions
$brew install hyperdex
$hyperdex coordinator -f -l 127.0.0.1 -p 1982
I0404 15:14:47.424314 2062502240 daemon.cc:168] initializing persistent storage
replicant daemon(15600) malloc: *** error for object 0x10bd47de0: pointer being freed was not allocated
@carstenschwede
carstenschwede / testApp.cpp
Created January 3, 2012 12:22
Simple testApp.cpp for a moving ball in openFrameworks.
//BALL "TUTORIAL" FOR SUSANA RIBEIRO
#include "testApp.h"
//FIRST WE NEED TO DECLARE SOME THINGS ABOUT A "BALL"
struct BallStructure {
ofPoint position; //A BALL HAS A POSITION
int radius; //AND A RADIUS OF COURSE
ofColor color; //AND WE LIKE TO LET IT HAVE A COLOR