Mario Vilas

Results 111 comments of Mario Vilas

One of the things we aim at is making GoLismero work without installation, if possible, even if some features are missing - that's why I'm still not convinced of dropping...

There's already a DAO :) https://github.com/cr0hn/golismero/blob/master/golismero/database/auditdb.py I didn't like Codernity, the design seems weird and it's still a beta. Plus I found no benefit over the current implementation (does the...

Yes, but the point isn't just to persist the data, but to have the database do the integrity checks as well. Graph traversal isn't very efficient with SQL, but we're...

Another thing to consider: eventual consistency. Right now we're serializing everything on the Orchestrator, so all RPC calls and database accesses are sequential. We could think about how to work...

Probably related to #43.

Depends on #3

/cc @jekkay

Line 34 contains this: ```ChatID: update.Message.Chat.ID,``` This is the entire function: ``` func handler(ctx context.Context, b *bot.Bot, update *models.Update) { b.SendMessage(ctx, &bot.SendMessageParams{ ChatID: update.Message.Chat.ID, Text: update.Message.Text, }) } ```

I also ended up downgrading the version of the API and Frida. Which is good enough for a workaround, but it'd be best to be able to use the latest...