-
Updated
Mar 1, 2020 - Jupyter Notebook
Join GitHub (or sign in) to find projects, people, and topics catered to your interests.
Here's what's popular on GitHub today...
-
Updated
Mar 1, 2020 - Java
-
Updated
Mar 1, 2020 - C#
Git Merge 2020
March 04, 2020 • Los Angeles
As in picture, height and weight do not state if it is cm, ft, lb, kg, ...
This is common to all reports providing patient information
-
Updated
Mar 1, 2020 - JavaScript
Pixel Art Tools
Creating pixel art for fun or animated sprites for a game? The digital artist in you will love these apps and tools!
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.
-
Updated
Mar 1, 2020
-
Updated
Mar 1, 2020 - Python
-
Updated
Mar 1, 2020
-
Updated
Mar 1, 2020 - Go
-
Updated
Mar 1, 2020 - Jupyter Notebook
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
small typo
Minor typo
At the bottom of your project page (https://pattle.github.io/simpsons-in-css/) there is a minor typo:
"What's really cool is I can now do stuff like that this..."
You could change it to: "What's really cool is now I can do stuff like this..." or some variant thereof without using the word "that."
-
Updated
Mar 1, 2020 - CSS
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.
From https://github.com/kennethreitz/autoenv :
Note: you should probably use direnv instead. Simply put, it is higher quality software. But, autoenv is still great, too. Maybe try both? :)
If a user mistypes an option, flag, or command, the error message should include a suggestion for the near-miss.
Example:
% example --indx 5
Error: Unexpected argument '--indx'
Did you mean '--index'?
Usage: example [--index <index>] [<values> ...]
tf.function makes invalid assumptions about arguments that are Mapping instances. In general, there are no requirements for Mapping instances to have constructors that accept [(key, value)] initializers, as assumed here.
This leads to cryptic exceptions when used with perfectly valid Mapping s
-
Updated
Mar 1, 2020
- Gitea version (or commit ref): 1.10
- Git version: n/a
- Operating system: n/a
- Database: n/a
- Test url: https://try.gitea.io/api/swagger
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 nousernamefield, onlylogin. More co
-
Updated
Mar 1, 2020 - Python
I can't find any agents that make use of the Notification API, or do Discord/Slack like favicon notifications. Do they exist? If not, how would I get started on developing one?
-
Updated
Mar 1, 2020 - Python
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.


Checking with CSS HTML Validator I found that this meta tag appears twice in index.html (there's no need for it to appear twice):
<meta name="description" content="Pure CSS Oil Painting - by Diana Smith aka cyanHarlow" />