top of page
  1. Dog walking or pet sitting

  2. Online tutoring or teaching

  3. Freelance writing or editing

  4. Graphic design

  5. Event planning or coordinating

  6. Virtual assisting

  7. Social media management

  8. Blogging

  9. Personal training or coaching

  10. House cleaning or home organization

  11. Handyman services

  12. Lawn care or landscaping

  13. Meal prep or catering

  14. Sell handmade or unique products on Etsy or other online marketplaces

  15. Rent out a spare room on Airbnb

  16. Rent out your car on Turo

  17. Sell photography or videography services

  18. Transcription services

  19. Website design or development

  20. Sell your services on Fiverr

  21. Sell your crafts or art at local markets or events

  22. Rent out your equipment or tools to others

  23. Teach a skill or hobby, such as knitting or cooking, to others

  24. Sell personalized or customizable products, such as t-shirts or mugs

  25. Create and sell digital products, such as ebooks or printables

  26. Offer consulting services in your area of expertise

  27. Sell items on eBay or other online auction sites

  28. Sell your services as a social media influencer

  29. Translate documents or websites

3 views0 comments

Does your monthly grocery bill need a makeover? For most families, your food expenses are pretty significant part of your monthly budget. While grocery shopping is a necessity, that doesn't mean it has to break the bank.





Are you tired of clipping all of the coupons for Target. Create a simple script to help me get all of the rewards by clipping all coupons.


2. Open Console and type the following script:


function clickButton() {
  // Get the button element
  //var button = document.querySelector('button.BaseButton-sc-j0jbcc-0.gMuCnA');
 var button = document.querySelector('button[data-test="button-default"]');



  // Click on the button
  button.click();

  // Increment the counter
  counter++;

  // If the counter has reached 70, clear the interval to stop the button from being clicked any further
  if (counter === 5) {
    clearInterval(intervalId);
  }
}

var counter = 0;
var intervalId = setInterval(clickButton, 4000); // Run the clickButton function every 4 seconds (4000 milliseconds)



Sit back and relax, and get your discounts.

5 views0 comments

Are you tired of clipping all of the coupons for BJ's. Me too, so I created a simple script to help me get all of the rewards as possible.




function clickButton() {
  // Get the button element
  var button = document.querySelector('button.mt-2.btn.gray-btn.next-prev.widthHeight');

  // Click on the button
  button.click();

  // Increment the counter
  counter++;

  // If the counter has reached 70, clear the interval to stop the button from being clicked any further
  if (counter === 5) {
    clearInterval(intervalId);
  }
}

var counter = 0;
var intervalId = setInterval(clickButton, 4000); // Run the clickButton function every 4 seconds (4000 milliseconds)



3 views0 comments
bottom of page