• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

Screen scraping

Started by Bayes, Jul 19, 11:06 AM 2010

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Bayes

I was thinking about how you could make use of the spins at Wiesbaden:

link:://:.spielbank-wiesbaden.de/DE/621/Permanenzen2.php

An the moment this is just an idea, I don't know how it would be implemented (maybe javascript + CGI). It would basically be an interface to the Wiesbaden spins, so you would place bets etc just like at an OC, but because the spins are available in real-time (and verifiable), it would ensure that anyone using the software could not possibly be cheating. Obviously there would need to be some time function implemented to make sure you didn't place a bet after the result is known. Possible uses: challenges, competitions, and demonstrations by anyone thinking of selling a system.

Anyway, the major hurdle is in capturing the spins. Does anyone know how to do this? there seems to be some kind of blocking software in effect, which means you can't download the gif image of the spins (try right-clicking over the marquees).

Alternatively, and this might be easier, it might be possible to embed that part of the site (the marquees) into a web page. All you would need to do then is add the code and controls for placing bets.
"The trouble isn't what we don't know, it's what we think we know that just ain't so!" - Mark Twain

albalaha

The idea is great I must say but if it can be worked out.

Anima-t3d

Quote from: Bayes on Jul 19, 11:06 AM 2010
Anyway, the major hurdle is in capturing the spins. Does anyone know how to do this? there seems to be some kind of blocking software in effect, which means you can't download the gif image of the spins (try right-clicking over the marquees).

Alternatively, and this might be easier, it might be possible to embed that part of the site (the marquees) into a web page. All you would need to do then is add the code and controls for placing bets.
Where is there a gif image? The numbers are plain text, animated with javascript. They are retrieved by using AJAX. All keyboard shortcuts and right mouse click are disabled, but you can bypass the code, since it's javascript based. I don't know but perhaps it's even possible to send their server an ajax request from your site, rather than trying to "read" their spins.

But good idea! :thumbsup:
I'm always willing to help, just ask me!
Skills: 2D/3D/Flash/(X)HTML/CSS/Js/PHP/MySQL/Multimedia/Interior Design & Design in general/...

Bayes

Ok, that's good to hear. Unfortunately my knowledge of AJAX is NIL, but you seem to have a lot of expertise in this area, would this be difficult to implement?

What do you think about the alternative suggestion - embedding the marquees into a page? I think this would be easier but I'm no web programming guru.
"The trouble isn't what we don't know, it's what we think we know that just ain't so!" - Mark Twain

Illuzionn

That's a great idea.   ;)
I'm a professional JEE Web engineer, maybe I can take a look at what's possible to do.
An AJAX web interface should retrieve easily the numbers in real-time, the problem would be to be sure the "spin" will be executed at the exact time the last number shows up in the permanence, if not it will be easy to cheat.
Currently at work I'm using GWT to build AJAX web applications in Java, I can try to make a little demo if you want.  If you're ok, I'll try when I'll have some free time :)
Software creator - Email: 

Bayes

Hi Mickael,

That would be great if you could make a demo, and you're right that the timing is very important. I haven't checked this but I assume each marquee isn't updated at perfectly regular intervals, because the wheels are operated by real dealers (except that there are a couple of auto roulette wheels). This could make it difficult to get the timing right, but as long as we can get a maximum time until 'no more bets' then it should be ok.
"The trouble isn't what we don't know, it's what we think we know that just ain't so!" - Mark Twain

Illuzionn

Ok, I'll take a look at the source code of the webpage, to check the AJAX scripting part.  I hope I'll be able to make something of it.  Unfortunately the web page is translated in german, and I don't know a word of it, so I hope it won't be too difficult to read and understand the data.  :D
Software creator - Email: 

Illuzionn

I just thought about something that will add some kind of difficulties using AJAX. 
Indeed, it's impossible for an AJAX script to call a server different from the one where the script were downloaded.   It's a policy defined inside the web browser and cannot be changed.   Of course this can be solved, by using for example a proxy servlet on the server layer that will redirect your HTTP call to the Wiesbaden spin website. 
This is not very difficult to code, but that implies we'll need a server part along with our HTTP/AJAX client.   I could easily use Google App Engine for this, as I already worked with that  ;)

PS to forum moderators : we cannot edit our posts ? I had to add a new post instead of editing my last one  :o
Software creator - Email: 

Bayes

This is going over my head, I'll leave it in your capable hands.  :)  :thumbsup:

If you need translation from German, I know someone who might help.
"The trouble isn't what we don't know, it's what we think we know that just ain't so!" - Mark Twain

Twisteruk

Quote from: Illuzionn on Sep 07, 03:24 PM 2010
I just thought about something that will add some kind of difficulties using AJAX.  
Indeed, it's impossible for an AJAX script to call a server different from the one where the script were downloaded.   It's a policy defined inside the web browser and cannot be changed.   Of course this can be solved, by using for example a proxy servlet on the server layer that will redirect your HTTP call to the Wiesbaden spin website.  
This is not very difficult to code, but that implies we'll need a server part along with our HTTP/AJAX client.   I could easily use Google App Engine for this, as I already worked with that  ;)

PS to forum moderators : we cannot edit our posts ? I had to add a new post instead of editing my last one  :o


Yes, that's correct. However you do have a 1hr period after you post in which you can modify your post for errors etc

Hope that helps  :thumbsup:
Its Set In Stone =)

Anima-t3d

I tried getting the data by using YQL (Yahoo Query Language) and Yahoo Pipes. But it's my first look at it and there are a few issues:
-the given webpage uses javascript to replace the empty cells, but keeps the last added data on the same spot.
-the page given when you click on a table shows all spins but it's hard to get the last added number, since it "adds" rather than replacing.

I had issues with getting my xpath expression to work...

Perhaps someone else can get this to work and share what I was missing? ???
Good luck! :thumbsup:

As attachment there is the modified sourcepage.

Sources:
link:://paul.donnelly.org/2009/07/08/yql-and-jsonp-x/
link:://:.daybarr.com/blog/yahoo-pipes-tutorial-an-example-using-the-fetch-page-module-to-make-a-web-scraper
link:://:.wait-till-i.com/2009/08/25/tutorial-scraping-and-turning-a-web-site-into-a-widget-with-yql/
link:://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-cross-domain-ajax-request-with-yql-and-jquery/
link:://projects.ischool.washington.edu/tabrooks/343INFOAutumn09/JSONP/jsonpJqueryYQL.htm
link:://xpath.alephzarro.com/content/cheatsheet.html
link:://:.w3.org/TR/xpath/
I'm always willing to help, just ask me!
Skills: 2D/3D/Flash/(X)HTML/CSS/Js/PHP/MySQL/Multimedia/Interior Design & Design in general/...

A3on

@Anima-t3d
Nice to see a so helpful member, who gives his bets to help  :)
Just wanted to congrat you for that  :thumbsup:

Anima-t3d

Quote from: A3on on Sep 08, 09:48 PM 2010
@Anima-t3d
Nice to see a so helpful member, who gives his bets to help  :)
Just wanted to congrat you for that  :thumbsup:
Thanks. I just hope together we can pull it off. :thumbsup:
I'm always willing to help, just ask me!
Skills: 2D/3D/Flash/(X)HTML/CSS/Js/PHP/MySQL/Multimedia/Interior Design & Design in general/...

superman

Ajax will only run in it's own server environment as far as I know, unless you have user privilages I doubt you will have much joy, if they publish the data to the browser why don't you ask them to publish it as xml, with php and others you can easily grab that data.

Another method would be any tool that can handle browser windows, get x,y then read a specific area on the screen OR convert the area into an image then run a pixel checksum against a database of numbers. In the past I have grabbed link: page source code and read certain elements, these days most web developers use css and such to define areas, the area you are after may be easy to spot, just a thought.

Whatever you choose will take some time to develope and in my opinion, random numbers are random numbers, I know they are live results but still wouldn't spend that much time to grab them, just my opinion.
There's only one way forward, follow random, don't fight with it!

Ignore a thread/topic that mentions 'stop loss', 'virtual loss' and also when a list is provided of a progression, mechanical does NOT work!

Anima-t3d

Quote from: superman on Sep 09, 11:53 AM 2010
Ajax will only run in it's own server environment as far as I know, unless you have user privilages I doubt you will have much joy, if they publish the data to the browser why don't you ask them to publish it as xml, with php and others you can easily grab that data.

-There are work arounds for ajax cross domain.
-We could do here with just reading the "output" to the end user... it's not really needed to have the ajax work on a separate page.. it's the data we are after.
-We can't ask for an xml feed, because the data on the page we are after, is protected by javascript to disable view source. So it's unlikely they want to go to the extend of providing a feed...

Thanks for your input though. :thumbsup:
I'm always willing to help, just ask me!
Skills: 2D/3D/Flash/(X)HTML/CSS/Js/PHP/MySQL/Multimedia/Interior Design & Design in general/...

-