Gregor Zeitlinger

Results 115 issues of Gregor Zeitlinger

use new IDEA directories see https://www.jetbrains.com/help/idea/tuning-the-ide.html?_ga=2.193645928.458500944.1594127970-1328968252.1578383566#plugins-directory

The Opentelemetry APIs are rather difficult to use - therefore I've developed the following utility method, which is part of a company internal library - so it has already been...

Feature Request

**Is your feature request related to a problem? Please describe.** Baggage propagation is not intuitive. **Describe the solution you'd like** I would like to be able to access the baggage,...

Feature Request

modifying the existing test: ```go func Test_CommentToMapOption(t *testing.T) { t.Run("head comment", func(t *testing.T) { yml := ` data: #comment foo: bar ` var ( v interface{} cm = yaml.CommentMap{} )...

### Description given the following OpenAPI (only a snippet) ```yaml paths: /: x-zally-ignore: [143] get: .. id: x-zally-ignore: [174] type: integer format: int32 readOnly: true ``` which is meant to...

good first issue

add a "Go To" context menu in the colony that shows Europe and all own colonies ![Screenshot 2022-06-11 09:50:07](https://user-images.githubusercontent.com/2832627/173178893-acb3e4a8-2dcc-49ac-aa83-ef50cc05641c.png)

I think the number of go to turns is wrong. It could be fixed by removing [this line](https://github.com/FreeCol/freecol/blob/master/src/net/sf/freecol/common/model/PathNode.java#L253). All tests are still working after the change except [one](https://github.com/FreeCol/freecol/blob/master/test/src/net/sf/freecol/common/model/TradeRouteTest.java#L60), but it's...

- show good production in blue (i.e. good) if all required buildings are built (including factories, even if factories are not available yet) - show bells and hammers, too -...

mask users in tracing tags

wip

Is there a way to trim trailing 0s like the following? ```go s := d.String() if strings.Contains(s, ".") { s = strings.TrimRight(strings.TrimRight(s, "0"), ".") } ``` Is there a way...