jeromecc

Results 40 comments of jeromecc

You can see an implementation here. Very basic. 6 lines of code. https://github.com/bee-keeper/django-invitations/compare/master...DocTocToc:secure

> Ok, so you definitely got me where I needed to be after changing your code: > > **+page.server.ts** > > ```ts > export const load = (async ({ isDataRequest...

Ok, I understand! This project is so well maintained and looks so professional that I realized it was an in house project for dailybruin.com newspaper only after I sent the...

Hi! The code seems to be internationalized. ```d->_streetLabel->setText(tr("Street"));``` The string "Street" is inside a tr() function. It means it's translatable. It's probably not translated. Did you check the file freehealth/global_resources/translations/plugin_zipcodes_de.ts...

For the internationalization part of the issue, see https://github.com/FreeHealth/freehealth/issues/115 I will have a look about the A5 paper format issue! I guess no user ever printed on A5 paper.

Column cannot be dropped for now because it is impractical with SQLite. We shall remove it when we get rid of SQLite.

We can move to type 1 UUID immediately without rewrite anything else than 1 function and without breaking anything.

In fact Qt cannot easily create UUIDs of type 1. Let's keep type 4 until we get rid of SQLite, then we will use the RDBMS (My/Maria) to generate type...

fhio v0.11 will use uuids stored binary(16) in patients database (PATIENT_IDENTITY table). To simplify database update, other changes will be implemented once SQLite is discontinued.

Trial of a new versioning system has begun with patients database (patientbase plugin) New version table is called SCHEMA_CHANGES: INSERT INTO `SCHEMA_CHANGES` (`VERSION_NUMBER`, `SCRIPT_NAME`, `TIMESTAMP_UTC_APPLIED`) VALUES ('1', 'updatepatients1.sql', UTC_TIMESTAMP()); Schema...