-
Updated
Feb 28, 2020 - TypeScript
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 - Java
-
Updated
Feb 28, 2020 - Vue
-
Updated
Feb 28, 2020 - Vue
Git Merge 2020
March 04, 2020 • Los Angeles
-
Updated
Feb 28, 2020
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
-
Updated
Feb 28, 2020 - Python
-
Updated
Feb 28, 2020 - Rust
-
Updated
Feb 28, 2020 - JavaScript
Since Trax is a successor of tensor2tensor (according to the release notes of tensor2tensor v1.15.0), it would be helpful if you could provide examples for more advanced machine learning tasks. An outstanding feature of tensor2tensor are the numerous (and useful) examples which Trax is currently lacking. Such examples would especi
-
Updated
Feb 28, 2020 - Python
-
Updated
Feb 28, 2020 - Shell
-
Updated
Feb 28, 2020
-
Updated
Feb 28, 2020
Selection Sort, for example, makes the algorithm look extremely (impossibly) good at first glance - O(n) - because it's not showing the majority of the steps.
Instead of
for (var j = i + 1; j < D.length; j++) {
if (D[j] < D[minJ]) {
tracer._select(j);
minJ = j;
tracer._deselect(j);
}
}
it has to be more like
for (var j
-
Updated
Feb 28, 2020 - Go
The documentation for the HTTP exceptions in packages/common/exceptions/ is incorrect:
- The default return format for specific HTTP exceptions is
{ statusCode, error }, not{ statusCode, message }(this leads to #4044, but it may be a breaking change and it can wait); - The
statusCodein the result cannot be overwritten as described; - A proper explanation for the
messageargument
We need to add tests for the /explain API.
Note: will add docs link here once this is done: hasura/graphql-engine#870.
What problem does this feature solve?
To make sure the user doesn't accidentally generates an SPA while he wants a pre-rendered page, it might be worth to write a short sentence about the mode of the project while generating
What does the proposed changes look like?
Current status: "Generating pages" is logged, which is quite general.
{};
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
在哪里?怎么获取?通过在设置断点,看看浏览器是
It says that python gets left to point to the system python (2.7 on OSX), but then goes on to say that python points to homebrew Python3.
https://github.com/realpython/python-guide/blame/master/docs/starting/install/osx.rst#L84-L89
Not sure which bit needs to be changed.
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.
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!
GuardRails
GuardRails scans new code changes as they occur in your repositories. For pull requests, we will post comments whenever security issues are detected. For branches, you will be able to see reports in your dashboard.
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.