Recent content by botcode

  1. B

    Mass PR and domain age checker for expired domains

    For bulk checking age of domains for free you can use domainagetool.com.
  2. B

    Permanently Closed Marketplace Sales Thread

    Can you pm me sample domains. Looking to place a test order for my ORM client!
  3. B

    Permanently Closed Marketplace Sales Thread

    Just placed a test order of 15 links. Looking forward to results. :)
  4. B

    Permanently Closed Marketplace Sales Thread

    BHW40 coupon is not working. Please check
  5. B

    IDE for Android?

    I am kind of a fan of Jetbrains products for IDEs. So the latest android studio which bundles Intellij looks great to me. Eclipse seems to be too bloated.
  6. B

    Need some help on this please

    Iframe is all client side trick. That means, if you load an url in an iframe, the data has to come from that url. So the bandwidth of the server which hosts the url will be used
  7. B

    Anyone can suggest me a book?

    I think the official training pages are nice. Also, check out commonsware (search on google). :)
  8. B

    Let's get a few things clear about multithreading in software posted here

    Creating a multi threaded application can get complicated. Multi threaded applications suffer from bugs that are hard to track/reproduce or fix.
  9. B

    no Encapsulation with java - issue?

    Without using encapsulation, you will run into maintenance problems when the size of code base become large. Although you may not be able to appreciate the benefits in small projects, I think it's still better to have it so that you get experience in doing it.
  10. B

    Any Excel Expert ???

    I cannot completely understand the question. Maybe you can give an example with more details. What do you mean by Day1 ?
  11. B

    A bot that will log-in on Facebook

    Selenium framework can be a very good fit for this requirement.
  12. B

    Domain Name Trademark Violation

    It should be better to get it deleted. Read more about Cybersquatting.
  13. B

    What's the fastest way to scrape a lot of pages?

    There is one more tool, aria2c. Sometimes aria2c/wget + grep proves to be more useful. :)
  14. B

    TOR question ... trying to run multiple instances

    If you are on linux, you can have a look at this. Search for multi-tor on google. Also check the github page for all the scripts.
  15. B

    What's the fastest way to scrape a lot of pages?

    To crawl a lot of pages, you need an efficient multithreaded crawler. Java and python seem to be the best languages for building multithreaded crawler for the following reasons, 1. Multi threading support. 2. Have a good set of libraries. Pythong has Scrapy, Java has crawler4j. 3. There are a...
Back
Top