Skip to content

Instantly share code, notes, and snippets.

@prakashn27
Last active October 19, 2016 20:35
Show Gist options
  • Save prakashn27/b6d1e8dc645eb528d1dfa30eb19e5643 to your computer and use it in GitHub Desktop.
Save prakashn27/b6d1e8dc645eb528d1dfa30eb19e5643 to your computer and use it in GitHub Desktop.
Ssript to get the bing reward points
// PREREQ:
// STEP 1:
// Node
// install 'open' node package
// npm install -g open
// change this daily to some random name
var txt = 'asfasdfsdf';
// STEP 2:
// get the cvid for your account This is a one time thing
// try to search through bing and you cansee it in the url it will be in the following format
var cvid = '&cvid=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
var open = require('open');
var url = 'https://www.bing.com/search?q=';
for(var i = 0; i < 15; i++) { // change the count according to your needs.
open(url + txt + i + cvid);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment