-
Updated
Feb 28, 2020
Join GitHub (or sign in) to find projects, people, and topics catered to your interests.
Here's what's popular on GitHub today...
-
Updated
Feb 28, 2020
Phaser
-
Updated
Feb 28, 2020 - Rust
-
Updated
Feb 28, 2020
Git Merge 2020
March 04, 2020 • Los Angeles
-
Updated
Feb 28, 2020 - Python
Moesif API Insights
Build a winning API platform with instant, meaningful visibility into API usage and customer adoption, including:
Native support for REST, GraphQL, Web3, & others
It says there is good resources and the first title on the landing page says that those practices are bad and should not be used any more. Maybe find something else to link to make that point?
Add a .gitignore
Things like .DS_Store and __pycache__ don't belong in a repo. A .gitignore file is needed. I'd recommend this one from http://gitignore.io.
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.
The list looks outdated in today's context so if anyone looking for repositories to contribute for hacktoberfest. Then this might be a good place.
Our main tasks would be
- Add new content which you find useful for yourself while making sure that it isn't already there
- If you think any of the content is already there but is now deprecated then you can help in refactoring that as well. **Pl
-
Updated
Feb 28, 2020 - HTML
explanation behind that says it's just coercion of one type plus another.
What is happening there is actually a code block and a unary + which coerces the array into 0.
({} + []) would get the same as ([] + {}) understandably.
-
Updated
Feb 28, 2020
Server (please complete the following information):
- Snipe-IT Version : v4.8.0 build 4186 (g893454dca)
- OS: [e.g. Ubuntu, CentOS] : Ubuntu 16.04
- Web Server: [e.g. Apache, IIS] : Apache
- PHP Version : 7.4
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe t
The problem was resolved a few weeks ago and came back in the latest versions. The two links below are reggarding the same issue that was closed before but has now returned in the most recent updates.
Thank you!
-
Updated
Feb 28, 2020
I think it makes more sense to return an empty array
// invalid input return null or throw an error
if (!setA || !setB) {
return null;
}
if (!setA.length || !setB.length) {
return [];
}
// or do nothing since the for loop will not trigger anyway
-
Updated
Feb 28, 2020
Problem:
OSSU:CS requires far more math than our curricular guidelines suggest.
Duration:
Feb 29, 2020
Proposer:
Waciuma Wanjohi
Background:
OSSU refers to two curricular guidelines. These guidelines are created by professional and non-governmental organizations: ABET, ACM and IEEE. More information about these can be found here: https://github.com/ossu/computer-scienc
在ES5中,顶层对象的属性和全局变量是等价的,var 命令和 function 命令声明的全局变量,自然也是顶层对象。
var a = 12;
function f(){};
console.log(window.a); // 12
console.log(window.f); // f(){}
但ES6规定,var 命令和 function 命令声明的全局变量,依旧是顶层对象的属性,但 let命令、const命令、class命令声明的全局变量,不属于顶层对象的属性。
let aa = 1;
const bb = 2;
console.log(window.aa); // undefined
console.log(window.bb); // undefined
在哪里?怎么获取?通过在设置断点,看看浏览器是
-
Updated
Feb 28, 2020 - Jupyter Notebook
Below is a list of failing links in our French lists
You can help improve this repo by resolving the problems.
A failing link may be a website or resource that has disappeared. You can submit a PR
- removing the link (maybe the resource is obsolete.)
- correcting the link (sometimes things move)
- replacing the link (make sure the link is authorized, or the resource is open-licensed). Oft
For the update check lockout, openpilot should go to dashcam mode so that you can still at least use stock ADAS. Current behavior keeps in openpilot mode but does not allow engage.
What problem does this feature solve?
It would allow us to use numbers which is larger than MAX_SAFE_INTEGER.
What does the proposed API look like?
In HTML, {{BigInt("100")}}, {{100n}}, {{2n * 50n}} or {{50n + 50n}} should show "100" (it can be just simply string by using .toString()) at frontend.
At the moment using BigInt in "Mustache" syntax just throw error.
Sure, backu
Hound
Hound reviews your code then comments directly in Pull Requests, helping your team maintain consistent coding style and high code quality.
sindresorhus/awesome#1394 went stale. Would be nice to finish it at some point. However, awesome-lint could probably be made better first.