Skip to content

Instantly share code, notes, and snippets.

View Iqlaas's full-sized avatar

Kamal Iqlaas Iqlaas

View GitHub Profile
@Iqlaas
Iqlaas / Arduino Song
Created August 5, 2017 03:54 — forked from eznj/star_wars.ino
Arduino Star Wars Song for Piezo
**/
const int c = 261;
const int d = 294;
const int e = 329;
const int f = 349;
const int g = 391;
const int gS = 415;
const int a = 440;
const int aS = 455;
@Iqlaas
Iqlaas / influencer.js
Created August 1, 2017 00:59 — forked from Rup1/influencer.js
Exracting instagram info from screenshot images, scraping each profile, and put them into spreadsheets
var webdriver = require('selenium-webdriver'),
chrome = require('selenium-webdriver/chrome'),
By = webdriver.By,
until = webdriver.until,
Key = webdriver.Key;
var o = new chrome.Options();
// o.addArguments('start-fullscreen');
o.addArguments('disable-infobars');
o.addArguments("disable-notifications");
o.setUserPreferences( { credentials_enable_service: false } );