-
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
Amp
-
Updated
Feb 28, 2020 - Vue
-
Updated
Feb 28, 2020 - Vue
Git Merge 2020
March 04, 2020 • Los Angeles
-
Updated
Feb 28, 2020
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!
Code Inspector
Code Inspector is a code analysis platform that does automated code reviews, technical debt management and analysis of code quality trends over time. The platform aggregates multiple quality metrics (violations, duplicates, readability, complexity). The platform reports the $ figure of the technical debt and show trends of your code base. Code Inspector reports the most critical issues by distinguishing them according to their category, severity and location.
-
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!
AppVeyor
Windows developers use AppVeyor to continuously run their tests and deploy apps to cloud or on-premise environments. AppVeyor CI can update the build status on your GitHub pull requests, upload build artifacts to project release and deploy successful builds. AppVeyor is not just a build tool, but it's the place of Windows CI knowledge accumulation - thanks to AppVeyor's vibrant community!
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.