-
I'd like there to be a feature about coefficients when the maximum value is different from the one chosen. For example, the marking system is based on 60, so I set 30/60 weight : 1 and 6/30 weight : 1…
-
elif より else if の方がより馴染みがある
-
manual_->position(B.x, B.y, B.z);
if (upper_triangle) {
manual_->textureCoord(0, 1);
} else {
manual_->textureCoord(0, 1); //
-
For consistency and readability, prefer this:
```f90
if (.not. allocated(x)) then
allocate (x(n))
end if
```
over this:
```f90
if (.not. allocated(x)) allocate (x(n))
```
-
1. f operation
-
This is trickier than it might appear; the complexities are discussed in https://github.com/astral-sh/ruff/issues/13694#issuecomment-2438438759
It will likely require adding a new method `Type::exc…
-
Very useful app. Would be nice to have an indicator `_[Compiling]_` in the modeline (as with latexmk), if the document is compiling, or if in continuous-mode.
-
If a line is selected the stations are sorted by their order in the line. It would be interesting to see if users are able to report faster if all of the stations are sorted alphabetically.
-
### Description
Currently, the useful `run_if` and `skip_if` decorators can only be added to tasks that are decorated by the `@task` decorator, aka TaskFlow compatible operators. However, many common…
-
Sometimes it would be nice to write:
```
production whatever
...
{
case someComplicatedExpr(...) of
| p(x, y, z) -> {
local foo :: Integer = ...;
top.bar = x + y;
top.…