Edon Gashi

Results 9 issues of Edon Gashi

- Remove dependency on Material Design in XAML and Mahapps.Metro. Create respective packages `Forge.Forms.Material` and `Forge.Forms.Metro`. This means that `Show.Dialog` and `Show.Window` and other utilities won't be part of the...

To do

This feature had been started in a branch and has been forgotten. We need better support for conversion to/from strings for converted fields (numeric, date).

enhancement
To do

* - [x] Datepicker support (e608c829c32cf81afc549b0d3d6542628ec24323) * - [x] Create a wiki page (7ac3e09688fba5115e65c5fc4fef8dd59301272f) * - [x] Password fields (1a811a8974e5ec118860e04934caf6077a30764e) * - [ ] Utilities for managing dialogs: displaying, closing,...

Why do we have a list of pointers here: https://github.com/diffix/pg_diffix/blob/f605204371533719063552aed5e4d7b1739f720d/src/aggregation/low_count.c#L44 Why not store `AidTrackerState`s by value, avoiding the extra pallocs?

We are doing allocation of structs with flexible array members wrong. It should be: ```c palloc( offsetof(MyStruct, last_member) + num_items * sizeof(ArrayMember) ); ``` See https://github.com/postgres/postgres/blob/master/src/include/c.h#L342-L350. The reason is that...

Also `compute_bucket_seed` is out of place in `anonymization.c`. It should be moved to `common.c`.

We hash in a few places (aid, count distinct, bucket seed, ...?). Variable length data can potentially be compressed, and instead of hashing the actual value we hash the compressed...

**Describe the bug** There is a bug in the date builder here: https://github.com/SkepticMystic/breadcrumbs/blob/af50de11c8dd70af4167a98044e05292bec85339/src/graph/builders/explicit/date_note.ts#L88-L92 This code assumes the next date lives in the same directory as the current date. In my...

bug