TACIXAT

Results 18 comments of TACIXAT

@20k That is interesting. I remember one of the implementations did a pre generation of values to a buffer then went backward through it. For this we only needed to...

@Izmoqwy This should be working on Chrome now.

Anyone here for Pin `error: cannot convert ‘LEVEL_VM::PARG_T’ to ‘LEVEL_VM::CALL_APPLICATION_FUNCTION_PARAM_’ for argument ‘5’`, the quick fix is to add a NULL in after the function pointer. [Relevant documentation.](https://software.intel.com/sites/landingpage/pintool/docs/81205/Pin/html/group__PIN__CONTROL.html#g5280354edd95efc19a837617ff63ba51) The missing...

@ShadowLL It's been two years, but my understanding is the fifth argument to the call can be null. [Recent documentation link.](https://software.intel.com/sites/landingpage/pintool/docs/81205/Pin/html/group__PIN__CONTROL.html#ga5ae5853e6600a23f9c552cba784870cc) Seriously though, just use DynamoRIO, it is much better...

I'm still curious if you have any ideas but the Docker build worked flawlessly. So thank you for that :)

If it is further nested the `*` acts as a `+` matching the first declaration with a comment. I reordered the source code to test. ```rust use tree_sitter; use tree_sitter_cpp;...

Workaround - ```sql UPDATE cards SET due_date = date(due_date, '+' || diff.days || ' days') FROM ( SELECT CAST( julianday('now', '-1 day') - julianday(MIN(due_date)) AS INTEGER ) AS days FROM...

A workaround to this is to just batch the deck in a quantity in which randomization is acceptable. Rather than having a deck with 1k cards, we would instead have...