Skip to content

Instantly share code, notes, and snippets.

View antobinary's full-sized avatar

Anton Georgiev antobinary

  • Blindside Networks
  • Ottawa, Canada
View GitHub Profile
@antobinary
antobinary / bbb-install-arm.sh
Last active April 23, 2024 21:09
bbb-install-arm.sh
#!/bin/bash -ex
# Copyright (c) 2024 BigBlueButton Inc.
#
# This program is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free Software
# Foundation; either version 3.0 of the License, or (at your option) any later
# version.
#
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
#!/bin/bash
# Ensure the script is run with superuser privileges
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
# Update packages and the system
apt update && apt upgrade -y
diff --git a/bigbluebutton-html5/package.json b/bigbluebutton-html5/package.json
index 5592a0eecb..6127108204 100644
--- a/bigbluebutton-html5/package.json
+++ b/bigbluebutton-html5/package.json
@@ -4,8 +4,8 @@
"license": "LGPL-3.0",
"scripts": {
"start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
- "start:prod": "if test -z \"$ROOT_URL\" ; then export ROOT_URL=http://127.0.0.1/html5client; fi; meteor reset && meteor run --production --port=4100",
- "start:dev": "if test -z \"$ROOT_URL\" ; then export ROOT_URL=http://127.0.0.1/html5client; fi;meteor run --port=4100",

(last update: July 17, 2019) (authors:

  • antobinary

)

Note: A tool like https://meyerweb.com/eric/tools/dencoder/ is useful in the encoding-decoding process for the fields expecting encoded value passed (see below)

  • joinViaHtml5=true
@antobinary
antobinary / Embed_BBB_in_iframe.md
Last active December 19, 2024 17:12
Embed BBB HTML5 client in iframe (instructions)

(last update: July 17, 2019) (authors:

  • antobinary

)

BigBlueButton can be embedded in a web page using an iframe. This set of inscructions is meant to guide a developer in the embedding process.

@antobinary
antobinary / package-lock.json
Created April 10, 2018 20:54 — forked from fcecagno/package-lock.json
kurento_pipelines
{
"name": "kurento-hello-world",
"version": "6.6.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"bower": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz",
"integrity": "sha1-rfU1KcjUrwLvJPuNU0HBQZ0z4vc=",
@antobinary
antobinary / styles.less
Created June 2, 2017 15:58 — forked from frank184/styles.less
Atom Git-Diff styles for github-atom-light-syntax package
.editor .gutter .line-number {
&[class*="git"] {
padding-left: 0 !important;
border-left: none !important;
color: #ffffff;
opacity: 1;
width: 40px;
}
&.git-line-added {