Skip to content

Join GitHub (or sign in) to find projects, people, and topics catered to your interests.

Here's what's popular on GitHub today...

Phaser logo
Popular topic
Phaser is a fun, free, and fast 2D game framework for making HTML5 games for desktop and mobile web browsers.
Git Merge 2020
Upcoming event recommended by GitHub
Mar
4

Git Merge 2020

March 04, 2020 • Los Angeles

Git Merge is a one-day conference dedicated to the version control tool that started it all—and the people who use it every day.
Trending repository
Trending repository
RitikPatni
RitikPatni commented Oct 19, 2019

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
snipe-it
Trending repository
prayagdhaduk123
prayagdhaduk123 commented Jan 27, 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

Trending repository
javascript-algorithms
Trending repository
Trending repository
Trending repository
funlee
funlee commented Mar 6, 2019

在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

在哪里?怎么获取?通过在设置断点,看看浏览器是

Trending repository
eshellman
eshellman commented May 22, 2019

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
Trending repository
YanDevDe
YanDevDe commented Feb 18, 2020

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

App recommended by GitHub

Hound

Hound reviews your code then comments directly in Pull Requests, helping your team maintain consistent coding style and high code quality.

You can’t perform that action at this time.