|
Post by perpetualtraveler on Nov 3, 2016 8:55:45 GMT
Does anyone have an extension we can use to filter the loans on the available loans tab? And even better, to notify you about particular loans going up for sale? It's really manual as is.
|
|
SteveT
Member of DD Central
Posts: 6,875
Likes: 7,924
|
Post by SteveT on Nov 3, 2016 9:18:47 GMT
Does anyone have an extension we can use to filter the loans on the available loans tab? And even better, to notify you about particular loans going up for sale? It's really manual as is. Distill Web Monitor can be used to watch for loan availability on specific loan pages.
|
|
|
Post by perpetualtraveler on Nov 3, 2016 9:46:17 GMT
Awesome thanks! now if only I could stop SS from automatically logging me out...
|
|
cooling_dude
Bye Bye's for the PPI
Posts: 2,853
Likes: 4,298
|
Post by cooling_dude on Nov 3, 2016 9:48:51 GMT
Awesome thanks! now if only I could stop SS from automatically logging me out... If you run Distil, it will prevent SS logging you out (keep SS open in a TAB to be sure). You don't even need it set up to alert you of anything; just have it monitoring a page and turn off the alerts
|
|
|
Post by perpetualtraveler on Nov 3, 2016 10:01:41 GMT
that's awesome news, cheers
|
|
0risk
Member of DD Central
Posts: 217
Likes: 202
|
Post by 0risk on Nov 3, 2016 19:46:40 GMT
Does anyone have an extension we can use to filter the loans on the available loans tab? And even better, to notify you about particular loans going up for sale? It's really manual as is. I use Javascript to hide/highlight loans. I can share it: Instructions: 1. Go to Chrome Store and install TamperMonkey: chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo2. Click on its icon (on the upper right side) and add a new script Replace the script for this: EDIT: Click HERE to go to the thread of CURRENT version and comments
// ==UserScript== // @name FilterLoans // @namespace http://tampermonkey.net/ // @version 0.1 // @description Improve funcionality of Available Loans at Saving Stream // @author 0Risk // @match https://savingstream.co.uk/loans/available // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js // ==/UserScript==
( function() { 'use strict'; // // config variables // var theGood = ['PBL000','DFL000']; // highlight those loans, eg: ['PBL091','PBL092'] var theBad = ['PBL999']; // hide those loans var minValue = 9.00; // hide loans with availability below this number var goodTerm = 50; // hightlight loans longer than this number var badTerm = 0; // hide loans with remaining days below this number // end of config // // var assetColumn = 0; var termColumn = 6; var rows = document.getElementsByTagName("table")[0].rows; var tds; var availableColumn = rows[0].cells.length - 1; // available column is the last column // //check if any element of array a is in string b function isIn(a, b) { for (var x in a) { if (b.search(a[x]) != -1) { return true; } } return false; } // highlight the good for (var i=1; i < rows.length; i++) { if (isIn(theGood, rows[i].cells[assetColumn].textContent) || rows[i].cells[termColumn].textContent.replace('days','').replace(' ','') > goodTerm) { rows[i].style.color = 'blue'; rows[i].style.fontSize = "20px"; } } // hide the bad, the ugly and the poor for (var i=1; i < rows.length; i++) { if (isIn(theBad, rows[i].cells[assetColumn].textContent) || rows[i].cells[termColumn].textContent.replace('days','').replace(' ','') < badTerm || rows[i].cells[availableColumn].textContent.replace('£', '') < minValue) { rows[i].style.display = 'none'; } } })(); Notice that you can set some parameters on the script to hide or highlight loans based on their numbers or remaining term (see section Config Variables) 3. Save it (Ctrl S). 4. It should work now. If you use Firefox, you can use the GreaseMonkey add-on instead of TamperMonkey.
|
|
cooling_dude
Bye Bye's for the PPI
Posts: 2,853
Likes: 4,298
|
Post by cooling_dude on Nov 3, 2016 19:54:40 GMT
Does anyone have an extension we can use to filter the loans on the available loans tab? And even better, to notify you about particular loans going up for sale? It's really manual as is. I use Javascript to hide/highlight loans. I can share it: Instructions: 1. Go to Chrome Store and install TamperMonkey: chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo2. Click on its icon (on the upper right side) and add a new script Replace the script for this: <CODE> Marvelous! Thanks for sharing
|
|
dan83
Posts: 243
Likes: 84
|
Post by dan83 on Nov 3, 2016 22:04:17 GMT
Does anyone have an extension we can use to filter the loans on the available loans tab? And even better, to notify you about particular loans going up for sale? It's really manual as is. I use Javascript to hide/highlight loans. I can share it: Instructions: 1. Go to Chrome Store and install TamperMonkey: chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo2. Click on its icon (on the upper right side) and add a new script Replace the script for this: // ==UserScript== // @name FilterLoans // @namespace http://tampermonkey.net/ // @version 0.1 // @description Improve funcionality of Available Loans at Saving Stream // @author 0Risk // @match https://savingstream.co.uk/loans/available // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js // ==/UserScript==
( function() { 'use strict'; // // config variables // var theGood = ['PBL000','DFL000']; // highlight those loans, eg: ['PBL091','PBL092'] var theBad = ['PBL999']; // hide those loans var minValue = 9.00; // hide loans with availability below this number var goodTerm = 50; // hightlight loans longer than this number var badTerm = 0; // hide loans with remaining days below this number // end of config // // var assetColumn = 0; var termColumn = 6; var rows = document.getElementsByTagName("table")[0].rows; var tds; var availableColumn = rows[0].cells.length - 1; // available column is the last column // //check if any element of array a is in string b function isIn(a, b) { for (var x in a) { if (b.search(a[x]) != -1) { return true; } } return false; } // highlight the good for (var i=1; i < rows.length; i++) { if (isIn(theGood, rows[i].cells[assetColumn].textContent) || rows[i].cells[termColumn].textContent.replace('days','').replace(' ','') > goodTerm) { rows[i].style.color = 'blue'; rows[i].style.fontSize = "20px"; } } // hide the bad, the ugly and the poor for (var i=1; i < rows.length; i++) { if (isIn(theBad, rows[i].cells[assetColumn].textContent) || rows[i].cells[termColumn].textContent.replace('days','').replace(' ','') < badTerm || rows[i].cells[availableColumn].textContent.replace('£', '') < minValue) { rows[i].style.display = 'none'; } } })(); Notice that you can set some parameters on the script to hide or highlight loans based on their numbers or remaining term (see section Config Variables) 3. Save it (Ctrl S). 4. It should work now. If you use Firefox, you can use the GreaseMonkey add-on instead of TamperMonkey. I wouldn't even know what to do with that.
|
|
twoheads
Member of DD Central
Programming
Posts: 1,089
Likes: 1,192
|
Post by twoheads on Nov 3, 2016 22:07:54 GMT
Interesting stuff here.
At what point do these extensions etc. become classed as 'bots'?
What do you classify as a bot?
What is the opinion of SS users about the use of bots?
Would it be wrong for me to write a program that scrapes the site for available loans and flags up, for example, anything over 200 days with more than £100 available?
|
|
locutus
Member of DD Central
Posts: 1,059
Likes: 1,622
|
Post by locutus on Nov 3, 2016 22:28:23 GMT
Interesting stuff here.
At what point do these extensions etc. become classed as 'bots'?
What do you classify as a bot?
What is the opinion of SS users about the use of bots?
Would it be wrong for me to write a program that scrapes the site for available loans and flags up, for example, anything over 200 days with more than £100 available? addons.mozilla.org/en-GB/firefox/addon/alertbox/
|
|
|
Post by Whitbourne on Nov 3, 2016 23:04:37 GMT
Interesting stuff here.
At what point do these extensions etc. become classed as 'bots'?
What do you classify as a bot?
What is the opinion of SS users about the use of bots?
Would it be wrong for me to write a program that scrapes the site for available loans and flags up, for example, anything over 200 days with more than £100 available? At the point where the software makes the loan application for you. An auto-invest script is a bot. An alert that prompts you to make a manual investment application isn't, in my view. It all seems fine to me...
|
|
twoheads
Member of DD Central
Programming
Posts: 1,089
Likes: 1,192
|
Post by twoheads on Nov 4, 2016 9:21:39 GMT
At the point where the software makes the loan application for you. An auto-invest script is a bot. An alert that prompts you to make a manual investment application isn't, in my view. It all seems fine to me... As I understand it, the captchas stop the bots so that, unless you have some great AI machine, your software cannot actually make the loan application.
I believe I am now a leading expert in store fronts, palm trees, street signs, rivers and mountains. I can even recognise eggs and coffee in new ways but I am completely c**p at selecting around a bloody aeroplane!
|
|
elsee
Member of DD Central
Retired:D
Posts: 201
Likes: 117
|
Post by elsee on Nov 4, 2016 11:40:22 GMT
twoheadsI had that one once, it took me so long I knew I'd never get any of the loan but I carried on so that if I ever get it again I'll at least have a vague idea of what to do
|
|
twoheads
Member of DD Central
Programming
Posts: 1,089
Likes: 1,192
|
Post by twoheads on Nov 4, 2016 15:17:27 GMT
Interesting stuff here.
At what point do these extensions etc. become classed as 'bots'?
What do you classify as a bot?
What is the opinion of SS users about the use of bots?
Would it be wrong for me to write a program that scrapes the site for available loans and flags up, for example, anything over 200 days with more than £100 available? addons.mozilla.org/en-GB/firefox/addon/alertbox/I may be old fashioned but I still use Internet Explorer (leaving myself wide open to abuse from the non-IE-lovers...)
Any such software must poll the site at intervals, looking for changes (equivalent to repeatedly clicking the browser refresh button). If all SS investors were to run this sort of thing and their 'refresh intervals' were, on average, too short then the SS site would be brought to its knees - akin to a 'denial of service' attack. Imagine 2000 investors each refreshing, say, every five seconds. The math is simple. How would the SS site stand up? And of course, it would be tempting to refresh as fast as possible to up your chances of winning the FFF race.
|
|
dan83
Posts: 243
Likes: 84
|
Post by dan83 on Nov 4, 2016 23:12:32 GMT
I may be old fashioned but I still use Internet Explorer (leaving myself wide open to abuse from the non-IE-lovers...)
Any such software must poll the site at intervals, looking for changes (equivalent to repeatedly clicking the browser refresh button). If all SS investors were to run this sort of thing and their 'refresh intervals' were, on average, too short then the SS site would be brought to its knees - akin to a 'denial of service' attack. Imagine 2000 investors each refreshing, say, every five seconds. The math is simple. How would the SS site stand up? And of course, it would be tempting to refresh as fast as possible to up your chances of winning the FFF race.
Maybe 2000 of us should try as a protest against the lower rates of interest being offered.
|
|