Jonas Süskind

Results 9 issues of Jonas Süskind

## Brief Description Many Python developers (including me) expect objects with an "open/start -> close" workflow to behave as context managers, i.e. support the `with ... as ...` construct. ###...

ENHANCEMENT :zap:
WORK IN PROGRESS :construction:
PROPOSAL :envelope_with_arrow:

Left-clicking and holding the mouse in "fit mode window" (Key: 1) does currently not have any functionality. A great feature of the [FastStone Image Viewer](https://www.faststone.org/FSViewerDetail.htm) (Windows only) is that clicking...

From using Windows I know the [FastStone Image Viewer](https://www.faststone.org/FSViewerDetail.htm) where a pane opens when the user moves the mouse to the right of the viewed image. The pane shows EXIF...

First, thank you for this great project! However, I fear, that there is some issue with the time measurement. Using [`time.get_clock_info()`](https://docs.python.org/3/library/time.html#time.get_clock_info) we can get this information: ```python >>> time.get_clock_info("time") namespace(implementation='clock_gettime(CLOCK_REALTIME)',...

Given the following example: ```python data = {"col1": ["first", "a_long_second_row", "third_row"], "col2": [1, 2, 3]} df = pd.DataFrame(data) print(tabulate(data, tablefmt="latex")) ``` Output: ```python \begin{tabular}{lr} \hline first & 1 \\ a\_long\_second\_row...

I want to parse the following example string: `"03:00 +3"` where `+3` is the timezone offset, i.e. the format `%#z` or `%:::z` but without leading zeros. I have already tried...

parsing

Pull request checklist ---- - [x] Please read our [contributor guide](https://github.com/Netflix/dgs-framework/blob/master/CONTRIBUTING.md) - [x] Consider creating a discussion on the [discussion forum](https://github.com/Netflix/dgs-framework/discussions) first - [x] Make sure the PR doesn't introduce...

## Expected behavior Since spring-boot 3.5.0 the property `spring.graphql.path` was moved to `spring.graphql.http.path`. As DGS sets the former one, it should be migrated as well. ([Release notes](https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.5-Release-Notes), [Configuration Changelog](https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.5.0-M3-Configuration-Changelog)) ##...

bug