-
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...
Windows
-
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
Text editors
The text editor is a sacred application for developers. Here's a showcase of some amazingly awesome open source editors.
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
-
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
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.


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" />