-
Original issue: https://github.com/vsoch/usrse.github.io/issues/63 posted by @cosden with discussion from @mtbc
![image](https://user-images.githubusercontent.com/814322/136670041-e824d830-0581-4e…
vsoch updated
2 years ago
-
Just want to add another hack to toc2 (https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tree/master/src/jupyter_contrib_nbextensions/nbextensions/toc2), that is, install it standalone b…
-
Create a one liner to render the current canvas to an image.
Requested on the forum here: https://groups.google.com/forum/#!searchin/cesium-dev/webgl%7Csort:date/cesium-dev/FdQk03zgOMI/KAZp4QiPBwAJ
ggetz updated
3 months ago
-
We do not want to change the people but to understand them. Why are they doing something like this or that? When there is a UX change or change request there is a motivation behind. First, we need to …
-
```rego
package test
import rego.v1
foo if {
false
}
test_foo if {
not foo
}
```
As far as I can tell, this test excercises all possible code paths (as there is only one, reall…
-
We should emit debug logs more consistently, especially in more places that are likely to help triage an issue. Ideally these logs are just one liners in places to let us know where JC is at.
-
### Describe the bug
![image](https://github.com/user-attachments/assets/007642af-3ca5-476b-9539-e05061e84174)
Its floating over the page.
### Expected behavior
It should hide.
### Screen…
-
The Current package does not export an API ref so we cannot use it to make custom cards
## Feature Suggestion
Export apiRef in jira plugin
## Possible Implementation
The change would…
-
Please make a simple one-liner Linux installer so that everyone can use this package.
-
Instead of
```
if (param == null)
{
throw new ArgumentNullException(nameof(param));
}
```
I like this better:
```
if (param == null) throw new ArgumentNullException(nameof(param));
```