Skip to content

Instantly share code, notes, and snippets.

View iamwavefly's full-sized avatar
🎯
Focusing

Samson F. Monday iamwavefly

🎯
Focusing
View GitHub Profile
@iamwavefly
iamwavefly / .js
Created May 2, 2021 00:01 — forked from digitallysavvy/.js
Full implementation of Agora interface
// simple JS interface for Agora.io web SDK
// app / channel settings
var agoraAppId = " "; // Set your Agora App ID
var channelName = 'agora-web-docs-demo';
// video profile settings
var cameraVideoProfile = '480_4'; // 640 × 480 @ 30fps & 750kbs
var screenVideoProfile = '480_2'; // 640 × 480 @ 30fps
@iamwavefly
iamwavefly / netlify.toml
Created April 27, 2021 12:25 — forked from rickyhaswifi/netlify.toml
React Router Netlify - Fix for not found page
#https://stackoverflow.com/questions/58065603/netlify-renders-404-on-page-refresh-using-react-and-react-router
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
@iamwavefly
iamwavefly / hyper.js
Created September 3, 2020 08:46 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',