Giter Club home page Giter Club logo

whatever's Issues

Needs to be responsive.

The system is not responsive on mobile devices.

  • Add much responsive
  • Make kernel responsive
  • Make system iOS responsive
  • Drop support for windows.

Code coverage

Who wants to help get this beautiful project to 100% code coverage?

We definitely need to make sure poop.md is tested properly.

we need java

can anyone add java to this? this needs java because garbage collection

Let's pull together, folks!

If 121,000 people can play one game of Pokemon at the same time and actually win, we can create something here that actually does something. Or not.

"We have to get organized!" - Every meeting of Anarchists ever

Add to npm

Can someone add a package.json file so I can install this from npm?

github page

A proper project should have a properlanding page. Shouldn't we enable gh-page for this repo?

Automerge

Will you set up an automerge script? I think this one would work well.

#!/usr/bin/env python
import json
import requests
import datetime

OAUTH_KEY = "xxxxxxxxxxxx"
repos = ['whatever'] # Add all repo's you want to automerged here
ignore_branches = ['gh-pages'] # Add 'master' here if you don't want to automerge into master

# Print merge/no-merge message to logfile
def print_message(merging):
  if merging == True:
    message = "Merging: "
  else:
    message = "Not merging: "
  print message + str(pr_id) + " - " + user + " wants to merge " + head_ref + " into " + base_ref

# Merge the actual pull request
def merge_pr():
  r = requests.put("https://api.github.com/repos/:owner/%s/pulls/%d/merge"%(repo,pr_id,),
    data=json.dumps({"commit_message": "Auto_Merge"}),
    auth=('token', OAUTH_KEY))
  if "merged" in r.json() and r.json()["merged"]==True:
    print "Merged: " + r.json()['sha']
  else:
    print "Failed: " + r.json()['message']


# Main

print datetime.datetime.now()

for repo in repos:
  r = requests.get('https://api.github.com/repos/:owner/%s/pulls'%repo, auth=('token', OAUTH_KEY))
  data = r.json()

  for i in data:
    head_ref=i["head"]["ref"]
    base_ref=i["base"]["ref"]
    user=i["user"]["login"]
    pr_id = i["number"]
    if base_ref in ignore_branches:
      print_message(False)
    else:
      print_message(True)
      merge_pr()

N00b to Git/github, how to rebase?

I just started this fascinating world yesterday. Man where i have been?

I pulled a change request that got a 'rebase please', but i have no idea how to do that here on Github web enviroment. (I googled and got just $ commands for installed git)

Since im on office, can't install Git per se can't rebase that way.

I know it´s such a basic question, but i want more lols on 'whatever'

Some help please?

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.