Felix Bünemann

Results 317 comments of Felix Bünemann

@bprasetyo Thanks, can you describe your use case for this feature?

So what exactly do you expect to happen? The OpenXML Spreadsheet format has no Type for money, only numbers. The only thing ine could do is apply one of the...

I'd like to avoid coupling xlsxtream to third-party Gems and there are many different ways to format monetary values (leading / trailing symbols, different rounding, thousands separators etc.), so having...

Currently not, but there is ongoing discussion to add this in #44.

Why are you assigning a text when you want a numeric value?

Btw. if you have no control over the data types in the column values, you could pass the `auto_format: true` option to `write_worksheet` to enable data type guessing from text.

I noticed the same. This could probably be handled by storing the session key into a secret then this secret could be updated and nginx would reload the configuration. Rotating...

I am also seeing this with around 1879 nginx zombies for the router pod. I also grepped the logs for "Router configuration has changed in k8s" and it was logged...

For those not familiar with PROXY protocol, the header includes the clients IP address, the clients source port and the clients destination port, which would be the port on the...

I think the following would work (untested): ``` {{ if $routerConfig.UseProxyProtocol -}} map $proxy_protocol_port $proxy_protocol_scheme { default $scheme; "80" "http"; "443" "https"; } {{- end }} map $http_x_forwarded_proto $tmp_access_scheme {...