Skip to content

Join GitHub (or sign in) to find projects, people, and topics catered to your interests.

Here's what's popular on GitHub today...

Material design logo
Popular topic
Material design is a unified system of theory and tools for creating digital experiences developed by Google.
Git Merge 2020
Upcoming event recommended by GitHub
Mar
4

Git Merge 2020

March 04, 2020 • Los Angeles

Git Merge is a one-day conference dedicated to the version control tool that started it all—and the people who use it every day.
App recommended by GitHub

Coveralls

Coveralls.io: Deliver Better Code

We help you deliver code confidently by showing which parts of your code aren’t covered by your test suite.

Eliminate Tech Debt

Maintaining a well-tested codebase is mission-critical, but figuring out where your tests are lacking can be painful. You're already running your tests on a continuous integration server, let it do the heavy lifting. Coveralls works with your CI to sift through coverage data to find gaps you didn't know you had.

Trending repository

That is the vision of the DevC Lagos: “The Internship v1”. The program is a DevC Lagos initiative where Project Managers, Developers, and DevOps specialists are taken through a 13 week period where they build 10 real-world software products distributed into 10 teams. These products could be Enterprise Apps, SaaS, Libraries or Utilities for “real-world use”. It is a remote-first internship where participants get the opportunity to demonstrate track expertise.

  • Updated Mar 1, 2020
Trending repository
xia0nan
xia0nan commented May 29, 2019

Error on Python_cheatsheet.pdf page 5

Looping through all the keys in order

# Show each person's favorite language,
# in order by the person's name.
for name in sorted(fav_languages.keys()):
    print(name + ": " + language)

Should be changed to

# Sort dict by key
for name in sorted(fav_languages.keys()):
    print(name + ": " + fav_languages[name])

Would be nice

Trending repository
Trending repository
ederuiter
ederuiter commented Jan 7, 2020

Description

When working with the API I came across a number of documentation inconsistencies:

  • all API calls for users refer to {username} .. however looking at the fields of a user there is no username field, only login. More co
Trending repository
Trending repository
App recommended by GitHub

LeanBoard

Lean Board is a collaborative whiteboard with sticky notes which seamlessly connects with your GitHub issue. Login with your GitHub account, create a board for an issue and a snapshot of your notes is embedded in the issue automatically.

You can’t perform that action at this time.