Skip to content

Instantly share code, notes, and snippets.

View cprakashagr's full-sized avatar
🧨
)))))) @#$%^&*^%$# ((((((

Chandra Prakash cprakashagr

🧨
)))))) @#$%^&*^%$# ((((((
View GitHub Profile
@cprakashagr
cprakashagr / rig.js
Created December 28, 2019 10:59
Rig Management Tool
/**
* Rig Power Management System
* Author: CP
*/
const puppeteer = require('puppeteer')
const select = require ('puppeteer-select');
(async () => {
function printUsage() {
@cprakashagr
cprakashagr / Install_gcc7_ubuntu_16.04.md
Created May 2, 2020 20:06 — forked from jlblancoc/Install_gcc7_ubuntu_16.04.md
Installing gcc-7 & g++-7 in Ubuntu 16.04LTS Xenial

Run the following in the terminal:

Install the gcc-7 packages:

sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install g++-7 -y

Set it up so the symbolic links gcc, g++ point to the newer version: