-
Updated
Jan 23, 2021 - C
Here's what's popular on GitHub today...
-
Updated
Jan 21, 2021 - C
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.
Node.js
-
Updated
Jan 23, 2021 - HTML
The error message when trying to generate a type that does not exist is less than ideal:
error: proc macro panicked
--> bindings\build.rs:2:5
|
2 | / winrt::build!(
3 | | windows::foo::{
4 | | NoExist,
5 | | Bar,
... |
41 | | }
42 | | );
| |______^
|
= help: message: Could not find type `Windows.Foo.NoExist"
``
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.
Imgbot
Imgbot is a friendly robot that optimizes your images and saves you time. Optimized images mean smaller file sizes without sacrificing quality.
Shortly after installing Imgbot, you will receive a pull request with all of your images optimized. Just merge the pull request and you’re done! As you work on your project, Imgbot works alongside you to keep your images optimized.
Imgbot uses lossless compression by default.
-
Updated
Jan 22, 2021 - JavaScript
-
Updated
Jan 23, 2021 - C#
-
Updated
Jan 23, 2021
-
Updated
Jan 23, 2021 - C++
-
Updated
Jan 22, 2021 - Vue
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
Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).
func (s *Store) Database(leader bool) ([]byte, error) {
if leader && s.raft.State() != raft.Leader {
return nil, ErrNotLeader
}
// Ensure only one snapshot can take place at once, and block all queries.
s.mu.Lock()
defer s.mu.Unlock()
f, err := ioutil.TempFile("", "rqlilte-snap-
-
Updated
Jan 23, 2021 - CSS
-
Updated
Jan 23, 2021 - JavaScript
-
Updated
Jan 23, 2021
## Python/Regex fix
This is a reminder for me or a task if anyone wants :P
Basically, The last two questions aren't really regex's questions.
To do:
- Move said questions to correct place.
- Add new regex questions (Python related!)?
- Maybe add a new ## Regex section, as it is a valuable skill
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-
Updated
Jan 23, 2021 - TypeScript
-
Updated
Jan 23, 2021 - JavaScript
Crowdin
Crowdin is designed to be the one tool you need to get automated and continuous localization.
Seamlessly integrates into your development process. Files for localization from the branches you chose are transferred into a branch in your Crowdin project. Ready translations get transferred back as a pull request to your repository automatically.
Crowdin is trusted by companies like Kickstarter, Avast, iFixit, Joomla and more. Localize any kind of software using the same tool.

Screenshot
Description
The rich tooltip text renders in a table that is inside a parent div that has the max-width set. If the text in the table is too wide, then the text will render outside of the div.
This is being caused by this line