Francesco Cinà

Results 51 comments of Francesco Cinà

I suppose the issue is in these lines in the `EET/lib/bgee_dir.tph` file: ``` END ELSE ACTION_IF FILE_EXISTS ~%bgee_dir%/lang/%LANGUAGE%/dialog.tlk~ BEGIN OUTER_SPRINT LANGUAGE_BG1 ~%LANGUAGE%~ END ELSE ACTION_IF FILE_EXISTS ~%bgee_dir%/lang/%LANGUAGE_BG2%/dialog.tlk~ BEGIN OUTER_SPRINT LANGUAGE_BG1...

I created a simple PR to deal with this annoying issue; it permits to execute `cargo publish` from a workspace. > One thing I just thought about: When doing a...

The bug was introduced by https://github.com/citahub/cita_trie/pull/43 The test succeeds the commit before it

We experienced this problem today. This issue makes it impossible to have a struct that derives both `CandidType` and serde `Serialize`. For example: ```rust #[derive(CandidType, Serialize, Deserialize)] #[serde(rename_all = "camelCase")]...

@chenyan-dfinity Yes, that's a valid workaround even if some of my structs have more than 30 fields :disappointed_relieved: Anyway, while this is not supported, you should break the compilation or...

@dsarlis Is there any progress on this? Is there anything we could do to help with this issue?

@dsarlis Do you have any advice on how to mitigate this issue while waiting for a fix? We are experiencing this issue in mainnet: ``` Canister exceeded memory access limits:...

@gbj I'm not certain if this aligns with Leptos' principles. By the way, other frameworks address this issue with custom attributes for data binding (e.g., Angular's `ngModel`). Could we envision...

Maybe, since there is already a generated `AddTodo` struct, there could be additional helper fields on it? E.g.: ``

What about some function style syntax instead? ``` recipe_1: before_1 && on_success(after_on_success_1) on_failure(after_on_failure_1 after_on_failure_2) always(cleanup_resources) ```