Recent content by sweepypanda

  1. S

    Best resource to learn PHP

    This will get you started: http://www.w3schools.com/php/php_intro.asp
  2. S

    proxy checker code in vb.net needed

    I don't know why people are recommending you use the WebBrowser object for this. Use HttpWebRequest. When you get your response check that httpWebRequest.StatusCode == StatusCode.OK. If it doesn't your proxy is dead or timed out. Easy as pie. ;)
  3. S

    change proxy with webbrowser control

    You set it the same way, but be prepared to enter the username and password in a prompt after your first page load. Set it to "" or better, string.Empty.
  4. S

    GEO IP Redirect Script

    Here's how I've done it in the past. $ip = $_SERVER['REMOTE_ADDR']; $country = file_get_contents("api.hostip.info/country.php?ip=$ip"); Pretty simple. I would also make sure that the user isn't using a proxy. Check that like this: if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //IP is likely...
  5. S

    Completing email registration via POP3

    If you don't want to spend the time to develop your own POP3 class, you should try OpenPOP.
  6. S

    Building bots in VB.NET..httpwebrequest or webbrowser?

    You will be setting yourself up for failure by using the WebBrowser object, as others have stated. In my opinion, however, depending on your needs you might start off with the WebBrowser object as it is significantly easier to debug when you're just starting off. Some of the knowledge you...
  7. S

    Build Bots with Proxy and Multi-threading?

    No need for a class. Just use the HttpWebRequest.Proxy property. Set it like this: httpRequest.Proxy = new WebProxy("255.255.255.255", 3123); //WebProxy(string Host, int Port)
  8. S

    [Tutorial] How to get ReCaptcha image using httpwebrequest

    Pretty common knowledge, regardless here is a method to help you to retrieve the values you need. (k=, c=, etc.) private static string FindStringBetween(string startToken, string endToken, string stringToSearch) { var startIndex = stringToSearch.IndexOf(startToken)...
  9. S

    Need help in Creating RSS feed

    Try "IceRocket RSS Builder". I can't post links so you'll have to Google it. When you create a feed you should enter them with the following HTML. <a href="YOUR URL HERE">YOUR ANCHOR TEXT HERE</a><br>
  10. S

    What programming language would I need to learn to make something like SEO Link Robot?

    As other have stated. C# is really your best bet in terms of rapid development and ease of learning. It has a "proper" syntax in comparison to VB and which will help if you ever decide to take up C++. The differences between VB and C# are small. The biggest is obviously syntax; Other...
  11. S

    Market Samurai gone...now what?

    You might try Traffic Travis. It's a little pricey, however.
  12. S

    Best Captcha Solver?

    DeathByCaptcha is the cheapest solver that I've found. You get the occasional bad captcha but that can be said about any other service as well. Other (worthwhile) options would be Decaptcher and BypassCaptcha.
  13. S

    What software to grab YT videos?

    I personally use YouTube Downloader. Easy and lightweight.
Back
Top