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...

Windows logo
Popular topic
Windows is Microsoft's GUI-based operating system.
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

Better Code Hub

Spend less time fixing bugs. And more time shipping new features.

A clean codebase keeps development velocity high & makes contributing easy.
Better Code Hub indicates just the right amount of refactoring needed to keep it compliant.
Better Code Hub checks your code for compliance against 10 benchmarked software engineering guidelines. It gives immediate feedback on where to focus for quality improvements. 17 modern programming languages are supported. Up to 700,000 lines of code

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
jpiter
jpiter commented Feb 12, 2020

What does โ€œconfirmedโ€ mean? Recently there were discussions on defining confirmed as โ€œtested positive/exhibit symptomsโ€ as opposed to โ€œtested positive/asymptomaticโ€. Are we looking at daily or cumulative readings? The latter maybe obvious but it would be nice to add a full data description to the repo.

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
yuyong725
yuyong725 commented Jan 10, 2020

ๅฆ‚ไธ‹๏ผš

databaseChangeLog:
  - changeSet: # ๅฏนๅบ”ไธ€ไธช ChangeSet ๅฏน่ฑก
      id: 0 # ChangeSet ็ผ–ๅท
      author: calm # ไฝœ่€…
      comment: ็ฉบ # ๅค‡ๆณจ

่ฏ„่ฎบ็š„ๅฑžๆ€งๆ˜ฏ comment๏ผŒ่€Œไธๆ˜ฏcomments๏ผŒ่™ฝ็„ถ่กจDATABASECHANGELOG ไธญ็›ธๅบ”็š„ๅญ—ๆฎตๅซCOMMENTS๏ผŒๆญฃๅธธ็š„่ฎฐๅฝ•ๆ•ˆๆžœๅฆ‚ไธ‹๏ผš
image

bug
App recommended by GitHub

Percy

Percy gives your team confidence in every visual UI change before it's shipped.

Percy adds visual reviews to your GitHub pull requests, helping your team spot UI bugs quickly and review visual changes easily.

You canโ€™t perform that action at this time.