David Sferruzza
David Sferruzza
Depending on how we can manipulate the EEPROM, it may or may not be useful to: - use a versioned "schema" of the data we store - use a migration...
Hi! I'm not sure to understand the use cases behind this way of doing… True, this would avoid you to manipulate the public key in itself, but isn't it a...
Thanks for documenting it, I did not know. I went for manually pre sharing the public key mainly because of 3 things: 1. This is simpler: no need to compile/includes...
Hi! Your approach seems fine 🤔 Just in case, could you try with this? ```rust let formatted = format!( "-----BEGIN PUBLIC KEY-----{}-----END PUBLIC KEY-----", &realm.public_key ); ```
Could you try to get more info/context by: 1. Adding [env_logger](https://crates.io/crates/env_logger) to your project 2. Calling its `init` function at the beginning of `main` 3. Running you app with the...
Hi! 1/ What kind of comments should the parse ignore? I'm not sure if it would be easy or not to implement, but the first step is to define the...
Hi! You are right, these 3 features are not supported yet. As I wrote in the readme file: > simpleSqlParser is not a full SQL parser! It only support few...
Hi! I'm not against the idea but it's very unlikely that I have enough time to design and implement this feature correctly before a while :/ And defining what would...
Hi! I was about to open an issue when I saw this PR. I'm having a similar problem, but my LESS files are stored in database. So I'm thinking: maybe...
I think I'll try. I believe the only `file_get_contents()` call (outside `compileFile()`) is done in `tryImports()`. That would be the right place to start: https://github.com/leafo/lessphp/blob/master/lessc.inc.php#L120 So I just need to...