-
Updated
Jan 22, 2021 - JavaScript
Here's what's popular on GitHub today...
-
Updated
Jan 21, 2021 - Swift

The theme for this year’s Game Off was ‘moonshot’ and the entries were out of this world! Fork and play some of the top-rated games.

Vim
Is your feature request related to a problem? Please describe.
Problem: I'd like to dynamically import scripts as <script>
tags.
Describe the solution you'd like
Proposal:
const useScript = ({ url, id, type = 'text/javascript', async = true }) => {
const [ready, setReady] = React.useState(false);
const [failed, setFailed] = React.useState(false);
R
邮箱收到了支付宝红包码欺骗邮件
感谢您对DeepLearn-500-questions的支持,让我能拿到google的offer,随机抽取数位给过我赞的人发送红包,请扫码进入群聊找我领(QQ邮箱请点击显示图片)
发件人:tzlgkw@163.com
虽然可能不是作者发的,但这样实在过分。提醒大家里面的二维码是红包码,这个作用都知道,但我挂出来就是为了防止更多人被欺骗。
Updated
OK,可以基本确定不是仓库 Owner 所为。而且有人用脚本监控了 Star 的用户的邮箱,并使用了随机的 163 邮箱。追查可能不太现实,大家不要相信即可。
Codetree
Codetree is a lightweight project management app with terrific support for multi-repo projects. There's nothing to install and it works in every browser.
Agile teams use Codetree to plan sprints and epics, and understand their in-flight work. Two-way sync with GitHub Issues means your team can work in either tool and everything stays up to date.
Teams from SeatGeek, Google, Telerik, MIT, Microsoft and CKSource trust Codetree to help deliver great software.
-
Updated
Jan 21, 2021 - CSS
-
Updated
Jan 23, 2021 - C++
-
Updated
Jan 23, 2021 - HTML
-
Updated
Jan 22, 2021 - C#
-
Updated
Jan 23, 2021 - JavaScript
Screenshot
attached
Description
- click one dashboard
- in the dashboard page, the table on the left part has the name and count attributes. next to the name attribute, the sorting label was placed too far away from its text.
<img width="1402" alt="Screen Shot 2021-01-15 at 2 35 11 AM" src="https://user-images.githubusercontent.com/4502866/104715562-930f1d80-56db-11eb-8cb1-b2
-
Updated
Jan 22, 2021 - JavaScript
Most functions in scipy.linalg
functions (e.g. svd
, qr
, eig
, eigh
, pinv
, pinv2
...) have a default kwarg check_finite=True
that we typically leave to the default value in scikit-learn.
As we already validate the input data for most estimators in scikit-learn, this check is redundant and can cause significant overhead, especially at predict / transform time. We should probably a
-
Updated
Jan 17, 2021
What problem does this feature solve?
Example use case:
A static generated app with thousands of routes, like an e-commerce having a route for each product.
Apart from scheduling nuxt generate
to run periodically and generate all static and dynamic routes, it would be nice to have the possibility to generate the static files for a single route, for example in a hook when the related ba
-
Updated
Jan 22, 2021 - JavaScript
I mean it would be handy for phones to access. Maybe a QR-code in the HTML page as well?
-
Updated
Jan 23, 2021 - TypeScript
-
Updated
Jan 4, 2021 - HCL
Summary
Currently we only allow foreground deletion of objects, but due to Kubernetes GC buggy behavior about deletion, foreground deletion can block indefinitely. The only workaround in Argo CD is a force deletion which is more abrasive approach than performing a background deletion. We should expose an option in UI, CLI, API to perform background deletion of resources and applications.
-
Updated
Jan 19, 2021 - PowerShell
Google Cloud Build
Google Cloud Build
Google Cloud Build lets you create fast, consistent, reliable builds across all languages. Automatically build containers or non-container artifacts on commits to your GitHub repository. Get complete control over defining custom workflows for building, testing, and deploying across multiple environments such as VMs, serverless, Kubernetes, or Firebase.
Is your feature request related to a problem? Please describe💯
In my component's props TS interface, I can use JSDoc comments to set the description, and can even use the
@default
tag to describe the default valueHowever, nothing happens when I use the
@deprecated
tag.Describe the solution you'd like
Some ideas: