Skip to content

Instantly share code, notes, and snippets.

View shadikur's full-sized avatar
🎯
Focusing

M S Rahman shadikur

🎯
Focusing
View GitHub Profile
(async function() {
const DB_NAME = 'boxlyx-recordings-db';
const STORE_NAME = 'pending-recordings';
const openDB = () => {
return new Promise((resolve, reject) => {
const request = indexedDB.open(DB_NAME, 1);
request.onsuccess = (e) => resolve(e.target.result);
request.onerror = (e) => reject(e.target.error);
});
(async function() {
const DB_NAME = 'boxlyx-recordings-db';
const STORE_NAME = 'pending-recordings';
const openDB = () => {
return new Promise((resolve, reject) => {
const request = indexedDB.open(DB_NAME, 1);
request.onsuccess = (e) => resolve(e.target.result);
request.onerror = (e) => reject(e.target.error);
});
@shadikur
shadikur / vici_install.md
Created August 1, 2018 11:51 — forked from identor/vici_install.md
Guide: Vici Dial Installation

Vici Dial Installation Guide

This guide shows a simple Vici Dial installtion on a debian6_x64 droplet in Digital Ocean.

Create the Droplet

General Guidelines:

  • Create the Droplet by selecting Create Droplet in the Droplet's UI.
  • Select the 64 bit image of debian 6.

Dependency installation

We need to install all dependencies before proceeding to install the astguiclient.