Search results

  1. 2tunnels

    [BETA TESTERS] Cloaking service

    Thank you! Accounts were created and credentials sent by PM.
  2. 2tunnels

    [BETA TESTERS] Cloaking service

    Hi everyone! I'm looking for beta testers for cloaking service. Right now it only supports Google Ads, Instagram (testing right now) and custom campaigns (no special filters will be applied). Anyone who is willing to share their opinions and feedback can participate in beta testing. If you...
  3. 2tunnels

    Suggestion required for learning course

    Learn things if you see any reasons for learning them or you have a real passion for them. Machine or deep learning are cool and interesting concepts, but where you will apply them? If having a good salary is your goal, may be this path is for you. If you're willing to be independent...
  4. 2tunnels

    Whats everyone think of GoLang?

    It's seems like Go is popular in microservice environments, not a big hit in monolith ones.
  5. 2tunnels

    What to Learn PHP or Python..?

    Learn both, it's not that hard. I use Python daily and PHP sometimes, when I need to support legacy project or create some kind of integration. I hate PHP and I'm really happy that I know how to use it. Sometimes it's a lifesaver. Learn as much as you can, this way you will draw your own...
  6. 2tunnels

    Do you listen music while working?

    It depends on activity. Silence when reading and trying to understand new concept, metal for coding on autopilot, some electronic stuff in between.
  7. 2tunnels

    PHP Help!

    May be you can put it in widget and display that widget on every page?
  8. 2tunnels

    whats the best instagram cloaker or redirecting page

    Nice advice. You may run campaign in inactive mode just to fill up logs with information about bots.
  9. 2tunnels

    Need a fast Proxy Scraper Script

    You can try this tool: https://github.com/constverum/ProxyBroker It can scrape proxies from multiple sources and also check them concurrently.
  10. 2tunnels

    How To Write An Email

    If you are willing to create some kind of program that will send emails for you, using third party SMTP server, Google "transactional email services". There are plenty of solutions.
  11. 2tunnels

    Cloaking script

    I wouldn't call this example cloaking, looks more like prelander. Basically it's a link that has onclick event handler that replaces window location (redirects without back button history). From page source: 1. Declare URL as url variable. <script>var url = 'https://t2m.io/TH2n4NiK';</script>...
  12. 2tunnels

    Multithreaded Ruby

    It really depends what you mean by multithreading. People tend to use multithreading term when they really want to do multiple stuff at the same time. For example doing calculations (using multiple cores at the same time) could be an issue, but doing I/O (downloading things simultaneously from...
  13. 2tunnels

    [SCRIPT] Python - HTTPS proxies scraping with Selenium

    If you interested in scraping stuff with Python, take a look at Scrapy. It's an amazing web scraping framework. Used for my own scraping projects, works perfectly.
  14. 2tunnels

    What system do sites work on? (openload, streamango, vidcloud, upvid, vidoza, etc.)

    I don't think so. For example first one uses WordPress theme called DooPlay, second PsyPlay and third one is not WordPress at all.
  15. 2tunnels

    I need help with "PPC cloacking script"

    It's seems like you are describing a popup or pop-under that is triggered when you click anywhere on the page. Such thing are done with JavaScript. Just Google something like: "javascript new window onclick" or "new window on body click". I believe that some solutions may be blocked by browsers...
  16. 2tunnels

    FACEBOOK CLOAKING QUESTIONS

    Do you warm up your Multilogin account before creating account on Facebook? Do you warm up your Facebook account before creating Ad Manager account? About hosting IP, it really depends. I'm not even sure that when you order new domain (with hosting) you are getting the same IP every time. A lot...
  17. 2tunnels

    Cloaking script

    <?php function redirectOrganicTraffic() { $referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : ''; // Do not redirect if referer is missing. if (!$referer) { return; } // Parse hostname from URL. $host = parse_url($referer, PHP_URL_HOST)...
  18. 2tunnels

    Python script to group hashtags

    from itertools import zip_longest def grouper(iterable, n, fillvalue=None): """Collect data into fixed-length chunks or blocks. Example: >>> grouper('ABCDEFG', 3, 'x') # => ['ABC', 'DEF', 'Gxx'] """ args = [iter(iterable)] * n return zip_longest(*args...
  19. 2tunnels

    usernames

    In case you are using Linux you can do this with split command. Let's say your usernames are stored in usernames.txt file. split --lines=50 --numeric-suffixes=1 --additional-suffix=.txt usernames.txt usernames_ This command will put each batch into separate file named usernames_01.txt...
  20. 2tunnels

    Review PPI Of Perinstallcash

    Support is not responding for 3 days.
Back
Top