Navigation

    H7

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. k
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    k

    @k

    8
    Reputation
    192
    Posts
    1645
    Profile views
    9
    Followers
    3
    Following
    Joined Last Online
    Location US

    k Follow
    Global Moderator administrators

    Posts made by k

    • COVID19 Script: States

      Coronavirus Tracker per State and County

      This feature is currently unavailable

      Step 1. Open Covid-19 Script on GitHub and fork the repository. You may need to create a GitHub account if you don't already have one.

      Step 2. After creating the fork, please submit the State and County Request to let us know about your fork and we'll send you the instructions for the latest version with State and County included.

      posted in Documentation
      k
    • COVID19 Script: Dark Mode

      Enable Dark Mode:

      Dark Mode is a premium feature, please follow instructions on how to enable it

      Step 1. Open Covid-19 Script on GitHub and fork the repository. You may need to create a GitHub account if you don't already have one.

      Step 2. After creating the fork, please submit the Dark Mode Request to let us know about your fork and we'll send you the instructions for the latest version with Dark Mode included.

      See Dark Mode in action at Covid-19 Script Demo:

      Covid-19 Script - Dark Mode

      posted in Documentation
      k
    • Coronavirus Tracker Script (Download)

      Live Coronavirus Dashboard with statistics, map, chart, table, cards and search for covering and tracking the global COVID-19 pandemic.

      Pure Bootstrap 4, fully responsive, speed optimized with easy-translate.

      Data Source: displaying latest information with coronavirus updates from around the world, using live data from the Coronavirus API.

      Coronavirus Update. Live coronavirus updates and statistics with historical data, map, chart, graph. Coronavirus (COVID-19) live updates and historical data including Day, Week, Month, Year, Change per Day, Difference, Summary. Total Cases, Active, Deaths, Recovered, Tested and Critical. World Regions by Country. Corona virus live updates via COVID-19 API.

      Download | Demo

      posted in Coronavirus Dashboard
      k
    • Coronavirus Tracker Script (Example)

      Coronavirus Tracker HTML/JS example:

      • coronavirus-dashboard.html
      <!DOCTYPE html>
      <html lang=en>
      
      <head>
          <title>Coronavirus App Example</title>
          <link href="https://quarantine.country/public/assets/css/bootstrap.min.css" rel="stylesheet">
          <link href="https://quarantine.country/public/assets/css/covid-19-demo.css" rel="stylesheet">
      </head>
      
      <body>
          <div class="container mt-4 pt-4">
      
              <div class="row">
                  <div class="col-10 offset-1">
      
                      <div class="card">
                          <div class="card-header">
                              COVID-19 App Demo
                          </div>
                          <div class="card-body">
                              <h2 class="display-6">Coronavirus Cases in <span data-var-placeholder="country"></span></h2>
                              <p class="small text-muted">LIVE UPDATE</p>
                              <div class="data">
      
                                  <!--total cases-->
                                  <div class="d-inline qc_data-cases qc_data-cases-all">
                                      <button class="btn btn-danger fixwidth">
                                          <strong data-country-placeholder="total_cases">0</strong>
                                      </button>
                                  </div>
                                  <div class="d-inline qc_data-cases qc_data-cases-text pl-1 pl-sm-2">
                                      <span class="text-muted small">Confirmed cases in the
      									<span data-var-placeholder="country"></span>
                                      </span>
                                  </div>
                                  <hr />
      
                                  <!--active-->
                                  <div class="d-inline qc_data-cases qc_data-cases-all">
                                      <button class="btn btn-warning fixwidth">
                                          <strong data-country-placeholder="active_cases">0</strong>
                                      </button>
                                  </div>
                                  <div class="d-inline qc_data-cases qc_data-cases-text pl-1 pl-sm-2">
                                      <span class="text-muted small">Active cases in the 
      									<span data-var-placeholder="country"></span>
                                      </span>
                                  </div>
                                  <hr />
      
                                  <!--recovered-->
                                  <div class="d-inline qc_data-cases qc_data-cases-all">
                                      <button class="btn btn-success fixwidth">
                                          <strong data-country-placeholder="recovered">0</strong>
                                      </button>
                                  </div>
                                  <div class="d-inline qc_data-cases qc_data-cases-text pl-1 pl-sm-2">
                                      <span class="text-muted small">Recoveding cases in the 
      									<span data-var-placeholder="country"></span>
                                      </span>
                                  </div>
                                  <hr />
      
                                  <!--deaths-->
                                  <div class="d-inline qc_data-cases qc_data-cases-all">
                                      <button class="btn btn-secondary fixwidth">
                                          <strong data-country-placeholder="deaths">0</strong>
                                      </button>
                                  </div>
                                  <div class="d-inline qc_data-cases qc_data-cases-text pl-1 pl-sm-2">
                                      <span class="text-muted small">Death cases in the 
      									<span data-var-placeholder="country"></span>
                                      </span>
                                  </div>
                                  <hr />
      
                              </div>
                          </div>
                          <div class="card-footer text-muted small">
                              &#10095; More demos at <a class="text-muted" href="https://quarantine.country">Coronavirus Dashboard</a> &#9881; Build even more with <a class="text-muted" href="https://github.com/Yatko/Coronavirus-API">Coronavirus API</a>
                          </div>
                      </div>
                      <!--/card-->
      
                  </div>
              </div>
      
          </div>
          <script src="tracker.js" type="text/javascript"></script>
      </body>
      
      </html>
      
      
      • tracker.js
      /* 
      Available Spots and Summary:
      Total Cases, Active Cases, Deaths, Recovered, Tested, Critical, Change Ratio %, Summary
      Historical data:
      Day, Week, Month, Year, Change per Day, Difference, Summary
      Regions:
      World, Regions and Countries
      
      Read documentation for more functionality - https://rapidapi.com/Yatko/api/coronavirus-live
      See all available countries - https://api.quarantine.country/api/v1/summary/latest
      */
      
      var countryFeedKey = 'usa';	//try china, spain, italy, etc.
      var countryName = 'USA';		//try 中国, España, Italia, etc.
      
      function ready(cb) {
        if( document.readyState !== 'loading' ) {
          cb();
        } else {
          document.addEventListener('DOMContentLoaded', function () {
              cb();
          });
        }
      }
      
      function fetchData(url) {
        return fetch(url)
          .then(function(response) {
            if(response.ok) {
              return response.json();
            }
          })
          .then(function(payload) {
            return payload['data'] || {};
          });
      }
      
      function formatNumber(number, precision, separate, separator, comma) {
        if(!number) {
          return '';
        }
      
          var re = '\\d(?=(\\d{' + (separate || 3) + '})+' + (precision > 0 ? '\\D' : '$') + ')',
              num = number.toFixed(Math.max(0, ~~precision));
      
          return (coma ? num.replace('.', comma) : num).replace(new RegExp(re, 'g'), '$&' + (separator || ','));
      };
      
      function fillPlaceholders(data) {
        var i;
        var varEl = document.querySelectorAll('[data-var-placeholder]');
      
        for(i = 0; i < varEl.length; i++) {
          var placeholder = varEl[i].getAttribute('data-var-placeholder');
      
          if(placeholder && placeholder != '') {
            switch(placeholder) {
              case 'country':
                varEl[i].innerText = countryName;    
                break;
            }
          }
        }
      
        var countryPlaceholderEl = document.querySelectorAll('[data-country-placeholder]');
      
        for(i = 0; i < countryPlaceholderEl.length; i++) {
          var placeholder = countryPlaceholderEl[i].getAttribute('data-country-placeholder');
      
          if(placeholder && placeholder != '' && data['summary'][placeholder]) {
            countryPlaceholderEl[i].innerText = parseInt(data['summary'][placeholder]).toLocaleString();
          }
        }
      }
      
      ready(
        function() {
          var url = 'https://api.quarantine.country/api/v1/summary/region?region=' + countryFeedKey;
      
          fetchData(url)
              .then(fillPlaceholders);
      
          setInterval(
            function() {
              fetchData(url)
                .then(fillPlaceholders);
            },
            10000
          );
        }
      );
      
      
      • coronavirus dashboard
      • coronavirus API
      posted in Coronavirus Dashboard
      k
    • RE: Apple Card Limit

      @chriskrol apply trough your iPhone via the Wallet app:

      1. Update your iPhone to iOS 12.4. or later (Settings > General > Software Update)
      2. Apply for Apple Card in the Wallet app

      0_1565539688078_5742EBDB-CB98-4DEA-9E1E-62D5E29C2C97.png

      Apple Card is currently available to users invited to Apple Card Preview and the early access invitation is nontransferable. If you received the invitation via email “You're invited to get Apple Card starting today”, tap the “Apply Now” button under “Apply for Apple Card in the Wallet app.”

      posted in General Discussion
      k
    • Apple Card Limit

      Apple Card Limits - What's the approval rate and what's the Credit Limit, APR?

      Apple started sending early access e-mail invitations for their new Apple Card (Apple, Goldman Sachs Credit Card):

      Starting today, we’re giving you early access so you can help us get ready for the public launch. Which means you’ll experience Apple Card before everybody else.
      Apply now and start using your Apple Card in minutes:

      Followed the instructions trough Apple Wallet and in few minutes I had my new Apple Card:

      0_1565356523576_Screen Shot 2019-08-08 at 4.08.19 PM.png

      The details:

      Credit limit $6500 with 17.08% APR.

      Guess many iOS developers and iPhone owners will apply for the new card, and curious, what the standard credit limit would be.

      posted in General Discussion
      k
    • How to use App Store promo codes
      • open App Store app
      • tap on User Icon (top right corner)
      • tap "Redeem Gift Card or Code"
      • tap "You can also enter your code manually." (enter received code)
      • tap Redeem (top right corner)
      • the free app will show and will start downloading to your device
      posted in Tech Support
      k
    • RE: I can’t live streaming through my Facebook Pages

      @syria this feature is currently restricted by Facebook, until apps are reviewed. Expected to be available again, by August 1.

      posted in Tech Support
      k
    • RE: Mute live Pro stream

      @kiên-tồ this is done, available in Live Pro and will be available in other apps too

      posted in Live Stream for iOS
      k
    • RE: Mobile screen streaming on facebook

      @usama-hashmi Facebook only allows 720p for its live streaming platform about screencasting, we’ll allow it very soon, still trying to figure out how to avoid policy violations like streaming movies, music, copyrighted material.

      posted in Contact
      k