Giter Club home page Giter Club logo

.github's People

Contributors

willnorris avatar annabellegoth2boss avatar sirdarckcat avatar gauntface avatar

Stargazers

Kevin Elliott avatar Caimo avatar Israel G. avatar Piotr Kowalski avatar Zigao Wang avatar  avatar Phe Cheng avatar Chouikhi Abdallah avatar  avatar @montyc666 avatar  avatar nask0 avatar  avatar flumpus avatar  avatar  avatar Rizmy Abdulla avatar  avatar Najimul Hoque avatar Doruk Sarp Aydın avatar Denisov Nikita avatar Zachary Thomas Stolz avatar James Rutherford avatar Jiho Lee avatar WITTAWT RONGSAK avatar  avatar  avatar An Hy avatar  avatar @MONEYBAGG272 avatar Brian Donnellan  avatar  avatar Abdulmomen Bsruki avatar Brad Svercl avatar Yiding Wang avatar Ali Mazloum avatar Reza Eskandari avatar  avatar  avatar Sasha Melentyev avatar Angel Campos avatar  avatar Robert Rafael avatar  avatar CHAA1699 avatar  avatar Michelle  avatar  avatar  avatar Elias Louw avatar  avatar Ancestor Richie avatar дмитрий зайцев avatar  avatar elif şahingöz avatar Joseph Kibira avatar  avatar  avatar  avatar 0958436455sarayut/master 1 avatar Keany Vy KHUN avatar  avatar  avatar moameh  avatar Ali Berk avatar Pierre grant  avatar Kai Devrim avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar Cicci avatar Trisha Raghuvanshi avatar Jamie Boyce avatar Balqis Mughny Sasando avatar  avatar Sayyaf69sy avatar  avatar Shaunak G avatar  avatar Jaewoo Kim avatar Gábor Mihálcz avatar  avatar Sumi Aktar avatar fogo avatar  avatar Ashley Heath avatar Jon Repp avatar Eric avatar

Watchers

James Cloos avatar Jaewoo Kim avatar Ashley Heath avatar  avatar  avatar  avatar  avatar  avatar alan avatar  avatar  avatar  avatar  avatar Jaonai avatar An Hy avatar CCD  avatar  avatar  avatar  avatar  avatar Ali Mazloum avatar  avatar Najimul Hoque avatar  avatar @MONEYBAGG272 avatar Pitsana sirilam  avatar Rocket_JMco avatar Alireza avatar  avatar  avatar Adrian García Moreno avatar  avatar

.github's Issues

Need help!

I'm trying to find help with finding what's going on with my phone it says some type of text stuff I'm not trying to be rude or mean or anything I need help and I was wondering if you could help me figure out a way to get this update on my phone I'm not very phone smart or computer smart so you know how's it takes is a little bit of explaining and I'm quick learner

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

          Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

Originally posted by @google-cla[bot] in #82 (comment)

La cultura y el respeto ajeno es la paz ✌👨‍👩‍👧‍👦👩‍👩‍👦‍👦👭👨‍👧‍👦👩🏻‍🤝‍🧑🏾📝

**Todos los proyectos y comunidades de código abierto de Google son entornos inclusivos, basados ​​en el tratamiento respetuoso de todas las personas, independientemente de su identidad y expresión de género, orientación sexual, discapacidad, neurodiversidad, apariencia física, tamaño corporal, etnia, nacionalidad, raza, edad, religión, o característica personal similar

@googlebot .:eye_speech_bubble:

#29

https://github.com/google/.github/blob/master/CODE_OF_CONDUCT.md
#2 https://github.com/google/.github/blob/master/CONTRIBUTING.md
👩‍👩‍👦‍👦 https://github.com/hulkgil

/#goog_rewarded

<!doctype html>

<title>Rewarded Ad Example</title> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> googletag = window.googletag || {cmd: []};
  var rewardedSlot;
  googletag.cmd.push(function() {
    rewardedSlot = googletag.defineOutOfPageSlot(
        '/22639388115/rewarded_web_example',
        googletag.enums.OutOfPageFormat.REWARDED);

    // Slot returns null if the page or device does not support rewarded ads.
    if (rewardedSlot) {
      rewardedSlot.addService(googletag.pubads());

      googletag.pubads().addEventListener('rewardedSlotReady', function(event) {
        document.getElementById('watchAdButton').onclick = function() {
          event.makeRewardedVisible();
          displayModal();
        }

        displayModal('reward', 'Watch an ad to receive a special reward?');
      });

      googletag.pubads().addEventListener('rewardedSlotClosed', dismissRewardedAd);

      googletag.pubads().addEventListener('rewardedSlotGranted', function(event) {
        // Automatically close the ad by destroying the slot.
        // Remove this to force the user to close the ad themselves.
        dismissRewardedAd();

        var reward = event.payload;
        displayModal('grant', 'You have been rewarded ' + reward.amount + ' '
                                                        + reward.type + '!');
      });

      googletag.enableServices();
      googletag.display(rewardedSlot);
    }
  });

  function dismissRewardedAd() {
    displayModal();
    googletag.destroySlots([rewardedSlot]);
  }

  function displayModal(type, message) {
    var modal = document.getElementById('modal');
    modal.removeAttribute('data-type');

    if (type) {
      document.getElementById('modalMessage').textContent = message;
      modal.setAttribute('data-type', type);
    }
  }
</script>
<style>
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 300px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
  }

  .modal[data-type] {
    display: block;
  }

  .modalDialog {
    margin: auto;
    padding: 25px;
    background-color: white;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .grantButtons,
  .rewardButtons {
    display: none;
  }

  .modal[data-type='grant'] .grantButtons,
  .modal[data-type='reward'] .rewardButtons {
    display: block;
  }

  .modal input[type="button"] {
    padding: .5rem;
    background: blue;
    border: none;
    border-radius: 4px;
    margin: 4px;
    color: white;
  }
</style>

    <span class="grantButtons">
      <input type="button" onclick="dismissRewardedAd();" value="Close" />
    </span>

    <span class="rewardButtons">
      <input type="button" id="watchAdButton" value="Yes" />
      <input type="button" onclick="dismissRewardedAd();" value="No" />
    </span>
  </div>
</div>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.