Martin Fischer
Martin Fischer
I want to use breakpoint styling in my mail templates, like this: ``` ``` ... but `mailwind` generates following snippet from this line: ``` ``` So I wonder if `tailwind`...
I want to use ForwardAuth to secure my traefik frontend, which I serve at `mydomain.org/traefik`: ``` services: traefik: image: traefik restart: always command: - "--providers.docker" - "--providers.docker.network=traefik" - "--entrypoints.web.address=:80" -...
I get following error: ``` Unhandled exception: connect: Cannot assign requested address (Errno) from /usr/share/crystal/src/socket/tcp_socket.cr:73:15 in 'initialize' from /usr/share/crystal/src/socket/tcp_socket.cr:27:3 in 'new' from /usr/share/crystal/src/http/client.cr:676:5 in 'socket' from /usr/share/crystal/src/http/client.cr:572:5 in 'send_request' from...
--- **Airflow IMAP Hook only decodes with UTF-8** I use the airflow imap hook, which internally only parses mail body with UTF-8 encoding. I have a mail with some German...
## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [X] Feature...
GH-335 ## Description Migrate Java EE to Jakarta EE. ## Motivation and Context As the `ask-sdk-servlet-support` is mostly used in combination with `spring-boot`, to support the latest `spring-boot` releases a...
```java @CollectionFormat(feign.CollectionFormat.CSV) [...] @RequestMapping(method = RequestMethod.GET, value = "/search/findByIdIn") Resources get(@RequestParam("ids") List ids); ``` creates a request like: `/search/findByIdIn?ids=1,2,3` ... however, `feign.CollectionFormat` does not support custom separation characters, I want...
Hello! How can I create a key combination to do: RuboCop: Autocorrect current file ?
I have a model definition: ```python from pydantic_extra_types.pendulum_dt import Date class TypeValuePair(BaseModel): """ type: value """ type: str = Field(...) value: str = Field(...) class Config: """ config """ populate_by_name...