-
Updated
Jan 24, 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.
.NET
-
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.
Code Climate
Collaboratively improve code quality with Code Climate and GitHub
Code Climate combines line-by-line test coverage reports, technical debt assessments, and style checks in every pull request so that your team only merges clear, maintainable, and well-tested code.
-
Updated
Jan 22, 2021 - JavaScript
-
Updated
Jan 24, 2021 - C#
-
Updated
Jan 23, 2021
-
Updated
Jan 24, 2021 - HTML
-
Updated
Jan 24, 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
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.

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