Skip to content

Instantly share code, notes, and snippets.

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

Yudi Edri Alviska edritech93

🏠
Working from home
View GitHub Profile
@maps90
maps90 / etc-jitsi-meet-config.js
Created April 6, 2020 04:41
config in jitsi
var config = {
hosts: {
domain: 'meet.example.loc',
focus: 'focus.meet.example.loc',
muc: 'conference.meet.example.loc'
},
// BOSH URL. FIXME: use XEP-0156 to discover it.
bosh: '//meet.example.loc/http-bind',
// Websocket URL
@spiermar
spiermar / nginx.conf
Created September 12, 2018 06:42
Nginx RMTP to HLS and DASH
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid /var/run/nginx.pid;
events {
@brennanMKE
brennanMKE / EventEmitter.swift
Last active July 15, 2025 09:06
React Native Event Emitter for RCTEventEmitter in Objective-C and Swift
class EventEmitter
/// Shared Instance.
public static var sharedInstance = EventEmitter()
// ReactNativeEventEmitter is instantiated by React Native with the bridge.
private static var eventEmitter: ReactNativeEventEmitter!
private init() {}