-
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.
Terminal
-
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.
Pixel Art Tools
Creating pixel art for fun or animated sprites for a game? The digital artist in you will love these apps and tools!
Flaptastic
Manage flaky unit tests with the unit testing framework you already use.
Features
- Checkbox to instantly disable any unhealthy unit test across all branches
- GitHub flaky test warnings on pull requests
- Slack alerting to team channel who's test are flapping
- Metrics and charting to aid you in fixing the biggest disruptions first
Requirements
- CI/CD (CircleCI, TravisCI, Jenkins, etc.)
Flaptastic is designed for organizations with many codebases and teams.
-
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 24, 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 24, 2021 - TypeScript
-
Updated
Jan 23, 2021 - JavaScript
Travis CI
Travis CI enables your team to test and ship your apps with confidence. It’s built for everyone and for projects and teams of all sizes, supporting over 20 different languages out of the box, including Javascript and Node.js, Ruby, PHP, Python, Mac/iOS, as well as Docker, while giving you full control over the build environment to customize it to your own needs.
Travis CI is trusted by hundreds of thousands of open source projects, teams, and developers.

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