-
Updated
Jan 23, 2021 - C
Here's what's popular on GitHub today...
-
Updated
Jan 23, 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.
-
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.
Text editors
The text editor is a sacred tool for developers. Here's a showcase of some amazingly awesome open source editors.
Review Notebook App
Have trouble collaborating on Jupyter Notebooks? Join 500+ organizations like Amazon, Microsoft, Tensorflow, fast.ai in using ReviewNB for notebook code reviews & collaboration.
Complete review workflow for Notebooks,
- Visual diffs for easy version control (say NO to annoying JSON diffs)
- Commenting on the notebook diff to discuss changes
- Conversation threads to track all open discussions
-
Updated
Jan 22, 2021 - JavaScript
-
Updated
Jan 23, 2021 - C#
-
Updated
Jan 23, 2021
-
Updated
Jan 22, 2021 - HTML
-
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
POEditor
POEditor is a highly scalable localization management service designed for translating software products, such as apps, sites and games.
Integrated with GitHub, it syncs with your repos automatically. You don't ever need to touch a language file.
Slack and HipChat integrations make it easy to get realtime updates about the localization process and the translation progress.

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