-
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.
GraphQL
-
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!
Cloud 66 for Rails
Cloud 66 for Rails allows you to build, manage and maintain your Rails applications that can be deployed to any cloud provider or to your own server. Cloud 66 for Rails helps you scale your database with master-slave replication, without having to make any configuration changes. You can add back-ups, load balancers and de-commission servers with a single click. Popular Rails and Rack frameworks available.
-
Updated
Jan 22, 2021 - JavaScript
-
Updated
Jan 23, 2021 - C#
-
Updated
Jan 23, 2021
-
Updated
Jan 22, 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
gitpod.io
Gitpod enables you to be always ready-to-code.
It launches a complete dev environment for any GitHub project, by simply prefixing the GitHub URL with gitpod.io/#.
With Gitpod your team can instantly start coding with fresh, ephemeral and fully-compiled dev environments for each new task - no matter if you are building a new feature, want to fix a bug or do a code review.
Sounds like GitHub Codespaces? https://www.gitpod.io/gitpod-vs-codespaces/

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