Kamran Saleem

Results 17 issues of Kamran Saleem

https://github.com/finos/waltz/tree/master/docs/features/change_initiative

documentation

- Pay attention to window functions that are used for latest attestations and the survey response report grid

Perhaps split the endpoints from web to ensure a single jar copy vs many endpoint classes. Will hopefully improve deployment speed.

task
performance

``` Query[] queries = records.stream().map( record -> DSL.using(dsl.configuration()) .insertInto(LOGICAL_FLOW_DECORATOR) .set(record) .onDuplicateKeyUpdate() .set(record)) .toArray(Query[]::new); return dsl.batch(queries).execute(); ``` can be rewritten ``` return dsl.batchInsert(records).onDuplicateKeyIgnore().execute(); ``` from jOOQ 3.10.0 onwards. ref: https://github.com/jOOQ/jOOQ/issues/6092

I need support for certificate authentication, is this something that can be supported. Or can I use the normal .net httpclient?

Existing sensor definitions can be found [here](https://github.com/kellerza/sunsynk/blob/main/src/sunsynk/definitions.py) ### Sunsynk Details about your Inverter: 8 kw ### Describe the issue/bug and what you expect I'd like to set the based on...

public class Image { [PrimaryKey] public int ItemId { get; set; } ``` [PrimaryKey] public int ImageId { get; set; } public string Src { get; set; } public int...

Feature
Up for Grabs

### Description Severity for vulnerability is hard coded as High, Medium, Low and Unknown in the UI. The above enum is outdated and missing critical, should probably be modified to...

QoL