Recent content by mrwootyeet

  1. mrwootyeet

    free places to promote etsy products ? Help

    Here's a way to get easy sales from Etsy, it's pretty manual though: - Search similar products - Find users who have left rave reviews for those products (in the last 30 days) - Reach out to them offering a special discount for them to review your product) It's pretty high success rate (over...
  2. mrwootyeet

    How To Monetize 100K Students On Udemy?

    - Another UDemy course - Write eBooks - Paid email list
  3. mrwootyeet

    Python for Data Science

    Doesn't really matter, as long as it gets done what you need to get done.
  4. mrwootyeet

    Here's My website, Kill me with critisism

    About page goes to error pages / something else, doesn't seem like something a normal site made by a person would do. Only a few of the social links work, + they go to accounts that doesn't match the domain name. Doesn't seem like something a normal site made by a person would do.
  5. mrwootyeet

    Beyond HTTP Requests

    For browser automation, you may be able to use headless selenium + microservices (like GCP cloud functions or AWS lambda functions). It takes a bit of troubleshooting (at least with python), not sure about the JS side. I've seen members on here talking about using puppeteer (a headless node.JS...
  6. mrwootyeet

    What do I need to do Porn Reupload?

    What about nicheing down and doing something like just .gifs? There are several sites that just repackage reddit posts automatically.
  7. mrwootyeet

    Bot technology

    Recommending python + selenium. python + requests + BeautifulSoup are a good way to start, but many sites may have anti-scraping technology that will catch this.
  8. mrwootyeet

    Recommend any good cost-efficient e-commerce web scraping API provider

    I highly recommend Rainforest API for Amazon.
  9. mrwootyeet

    convert png to pdf then to html

    Are the PNG's transparent? Or would they all have white bg or black bg?
  10. mrwootyeet

    Looking for Finance, Crypto, Forex etc affiliate programs

    Depends on what country you are in, and what audience you're promoting to. Are you looking for just one, or multiple opportunities? There are good affiliate programs that give you % of commissions on signups from your link.
  11. mrwootyeet

    MY FIRST TIME EARNING ONLINE [$19 in 5 days]

    Congratulations. I too am curious about how AdSense approval went. How long did you have the site? How much content was on it? Did you already have organic traffic? Currently trying to get approved myself.
  12. mrwootyeet

    How should I learn programming?

    Search [what you want to do] + "python tutorial" on YouTube. I learned doing the free tier Codecademy python first, then coding along to walkthroughs on YouTube. Video in one window, code in the other. All the knowledge you'd ever need is out there for free.
  13. mrwootyeet

    How To Create A Python Async Progress Bar With TQDM

    This is dope. Thanks for the share.
  14. mrwootyeet

    Python function data to another function HELP

    How about this? def main(): websiteurls = sitemap() titles = title(websiteurls) # return titles, print, send to json or something def sitemap(): url = 'https://url.com/sitemap.xml' sitemaprequest = requests.get(url) sitemapcontent = sitemaprequest.content...
Back
Top