Skip to content

Instantly share code, notes, and snippets.

@oloynet
oloynet / credit-agricole.js
Last active June 5, 2018 11:38
This casperjs script return balance and statement from bank "Credit Agricole of Languedoc (France)" for a given account. May work with other agencies. Data are return in json Usage: casperjs credit-agricole.js --auth=12345678912:123456 --json
/**
* This casperjs script return balance and statement from bank "Credit Agricole of Languedoc (France)" for a given account.
* May work with other agencies
*
* Usage:
*
* $ casperjs credit-agricole.js --auth=12345678912:123456
* $ casperjs credit-agricole.js --auth=12345678912:123456 --account=12345678912
* $ casperjs credit-agricole.js --auth=12345678912:123456 --account=12345678912 --json
* $ casperjs credit-agricole.js http://www.ca-languedoc.fr/ --auth=12345678912:123456 --account=12345678912 --json
@n1k0
n1k0 / 404checker.js
Created January 11, 2013 10:55
A CasperJS script to check for 404 & 500 internal links on a given website
/**
* This casper scipt checks for 404 internal links for a given root url.
*
* Usage:
*
* $ casperjs 404checker.js http://mysite.tld/
* $ casperjs 404checker.js http://mysite.tld/ --max-depth=42
*/
/*global URI*/