Monday, January 22, 2024

code to showcase the direct links in web page by whiz Fayisal

 

After watching Whiz Fayisal's video, you followed his instructions for the tasks without making any changes on your own. If you have questions, feel free to ask in the YouTube comments. It's important to stick to Mr. Fayisal's instructions and make sure to do the tasks exactly as he explained.

Free Sign-up Monetage Click Here


<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Popup Iframe Example</title>
  <style>
    #popupIframe {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: none;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      background-color: #fff;
      transition: transform 0.3s ease-in-out;
    }
    #popupIframe.active {
      transform: translate(-50%, -50%) scale(1.05);
    }
    #iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
  </style>
</head>
<body>
  <div id="popupIframe">
    <iframe id="iframe" frameborder="0"></iframe>
  </div>
  <script>
    var urls = [

      ' your link 1 ',
      ' your link 2 ',

    ];
    var currentIndex = 0;
    var displayTimer;
    function startDisplay() {
      var popupIframe = document.getElementById('popupIframe');
      popupIframe.style.display = 'block';
      popupIframe.classList.add('active');
      loadNextUrl();
      displayTimer = setInterval(function() {
        loadNextUrl();
      }, 30000);
    }
    function loadNextUrl() {
      if (currentIndex < urls.length) {
        var iframe = document.getElementById('iframe');
        iframe.src = urls[currentIndex];
        currentIndex++;
      } else {
        var popupIframe = document.getElementById('popupIframe');
        popupIframe.classList.remove('active');
        setTimeout(function() {
          popupIframe.style.display = 'none';
          clearInterval(displayTimer);
        }, 300);
      }
    }
    startDisplay();
  </script>
</body>
</html>

unlimited loop code by whiz fayisal

 

Follow the instructions provided by Whiz Fayisal in the video. Do not modify the code on your own; adhere to the guidance given in the tutorial





<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Auto Refresh and Link Loop</title>
  <script>
    // Function to shuffle an array randomly
    function shuffleArray(array) {
      for (let i = array.length - 1; i > 0; i--) {
        const j = Math.floor(Math.random() * (i + 1));
        [array[i], array[j]] = [array[j], array[i]];
      }
    }
    // Function to refresh the page at a fixed interval
    function refreshPage() {
      var refreshInterval = 250000;
      setInterval(function () {
        location.reload();
      }, refreshInterval);
    }
    // Function to perform the link loop
    function executeLoop() {
      var links = [
        'Your Link 1',
        'Your Link 2',
        'Your Link 3',
        'Your Link 4',
        'Your Link 5',
        'Your Link 6',
      ];
      // Shuffle the array randomly
      shuffleArray(links);
      var currentIndex = 0;
      function openLink() {
        var link = links[currentIndex];
        // Display the link in the modal
        openModalWithLink(link);
        
        var interval = Math.floor(Math.random() * (30000 - 20000 + 1) + 20000);
        // Close the modal after the specified interval
        setTimeout(function () {
          closeModal();
          // Move to the next link
          currentIndex = (currentIndex + 1) % links.length;
          // Call openLink again with the updated index
          openLink();
        }, interval);
      }
      // Initial execution
      openLink();
    }
    // Function to open the modal with a given link
    function openModalWithLink(link) {
      document.getElementById('modalIframe').src = link;
      // Explicitly load the iframe after setting the source
      document.getElementById('modalIframe').onload = function () {
        document.getElementById('myModal').style.display = 'block';
      };
    }
    // Function to close the modal
    function closeModal() {
      document.getElementById('myModal').style.display = 'none';
    }
    // Initial execution
    window.onload = function () {
      refreshPage(); // Start the page refresh
      executeLoop(); // Start the link loop
    };
  </script>
</head>
<!-- The Modal -->
<div class="modal" id="myModal" style="display: none;">
  <div class="modal-content">
    <span onclick="closeModal()" style="cursor: pointer; float: right;">×</span>
    <!-- Content of the modal -->
    <iframe id="modalIframe" src="" style="border: none; height: 400px; width: 100%;"></iframe>
  </div>
</div>
</html>

2nd Code: (Note: Use different gmail/blog for this code)

<html lang="en">
<head>
  <meta charset="UTF-8"></meta>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>
  <title>Embedded Page</title>
</head>
<body>
  <!-- Adjust the URL to the webpage you want to embed -->
  <iframe frameborder="0" height="600px" scrolling="auto" src="https://whizfayisal786.blogspot.com/2024/01/monetag-direct-link-loop-that-never.html" width="100%"></iframe>
</body>
</html>

what is the use of github can we generate web traffic from it

 GitHub is a web-based platform that uses the Git version control system for tracking changes in source code during software development. It serves as a repository hosting service where developers can collaborate on projects, manage and track changes to code, and work on software development projects in a distributed manner. While GitHub itself is not designed for generating web traffic in the traditional sense, it can indirectly contribute to the visibility of your projects and potentially attract attention to your work. Here's how:

  1. Code Hosting and Collaboration: GitHub allows you to host your code repositories in a centralized location. This makes it easy for developers to collaborate on projects, contribute to open-source initiatives, and share code.

  2. Portfolio Showcase: GitHub can be used as a portfolio to showcase your coding skills and projects. If you're a developer or a team, having a well-maintained GitHub profile with active projects can serve as a testament to your expertise.

  3. Open Source Contributions: Many open-source projects are hosted on GitHub. Contributing to such projects not only helps the community but also increases your visibility as a developer. Others can discover your work through your contributions.

  4. Documentation and Wikis: GitHub provides tools for creating documentation and wikis for your projects. Proper documentation can enhance the user experience and help others understand and use your software, potentially attracting more users.

  5. Project Pages and GitHub Pages: GitHub allows you to create project pages and GitHub Pages, which are public web pages hosted directly from your GitHub repository. While these pages may not directly generate web traffic, they provide a way to showcase project details, documentation, and related information.

  6. Social Coding and Networking: GitHub has a social aspect, allowing developers to follow each other, star repositories, and discover interesting projects. If your projects gain attention, it can lead to increased visibility and potentially more users.

To directly generate web traffic, you might want to consider other channels such as social media, blogs, or dedicated websites. GitHub, however, plays a crucial role in the developer ecosystem and can indirectly contribute to the overall visibility and impact of your projects.

list of Cross-Browser Testing sites offering free trail

 As of my last knowledge update in January 2022, several cross-browser testing tools offered free trials to allow users to explore their services before committing to a subscription. Keep in mind that the availability of free trials may change, and it's recommended to check the respective websites for the latest information. Here are some cross-browser testing tools that were known for offering free trials:

  1. BrowserStack: BrowserStack provides a cloud-based platform for testing web applications on various browsers and operating systems. They often offer a free trial.

    Website: BrowserStack

  2. CrossBrowserTesting: CrossBrowserTesting is a cloud-based testing platform that allows you to test your website on a variety of browsers. They usually offer a free trial period.

    Website: CrossBrowserTesting

  3. Sauce Labs: Sauce Labs is a cloud-based platform that provides automated testing for web and mobile applications. They typically offer a free trial.

    Website: Sauce Labs

  4. LambdaTest: LambdaTest is a cloud-based cross-browser testing platform that allows you to test your website on different browsers and operating systems. They often provide a free trial.

    Website: LambdaTest

  5. Browserling: Browserling offers interactive cross-browser testing with a variety of browsers. They may have a free trial option.

    Website: Browserling

  6. TestingBot: TestingBot is a cloud-based testing platform that provides cross-browser testing services. They might offer a free trial.

    Website: TestingBot

Always check the respective websites for the most up-to-date information on free trials, features, and pricing. Additionally, new tools may have emerged since my last update.

Explore YouTube's Money-Making Magic Without Showing Your Face

 Discover an awesome way to make good money on YouTube without putting your face on screen or using a camera. Take inspiration from a 20-year-old making €30,000 every month through automated YouTube channels – and you can do it too!

Automated channels mean you don't have to be on camera. Build a team of freelancers to make videos quickly and easily without spending ages in front of your computer.

You don't need a ton of money to start YouTube automation. Almost anyone can do it! Start creating various types of content and see the cash roll in – one video on a random topic has already made €500!

Creating Videos that Keep on Giving

The trick to making money on YouTube is creating evergreen content. Make videos about things that stay interesting for a long time. Want to make videos about dogs but don't want to show your face? No problem! Use stock videos and a voiceover.

Make your videos more visible and profitable by promoting longer videos with shorts. Remember, it's not about how many videos you make – it's about making quality content. Channels with just one good video a month can earn €5,000!

Getting that First Boost

To start making money, you need YouTube to notice you. A viral video can give you the push you need to get views and make money.

Making Money on YouTube

Once you've got the views, it's time to make money. If you have over 100,000 subscribers, you can make way more money from product placements than from ads. Evergreen content keeps bringing in views and money over time, giving you a steady income.

Build a good team, and you can make YouTube videos without spending too much money. With just 8 minutes of content, you could earn over €25,000! YouTube is the best place to make money without showing your face or using a camera. You could get millions of views and subscribers – all without being in the spotlight!

code to showcase the direct links in web page by whiz Fayisal

  After watching Whiz Fayisal's video, you followed his instructions for the tasks without making any changes on your own. If you have q...