Massimiliano Tomassoli

Results 7 issues of Massimiliano Tomassoli

Consider this minimal tex file: ``` \documentclass[english]{article} \begin{document} \begin{align} x &= 3\\ y &= 2 \end{align} \end{document} ``` `pandoc test.tex -o test.md` produces test.md file with the following content: ```...

status:more-discussion-needed
format:LaTeX
reader

Great level! I just want to point out that `library` is not completely foolproof as the final explanation seems to suggest: ```solidity library LibraryContract { function setTime(uint256 _time) public {...

Removing this bug makes the solution more interesting.

`optimizer_runs` is *not* the "The amount of optimizer runs to perform". Please see [the Solidity docs](https://docs.soliditylang.org/en/v0.8.17/internals/optimizer.html#optimizer-parameter-runs).

The POC for the RareNFT assumes that the nonce doesn't change between the off-chain reading and the on-chain attack but that's unrealistic when there are other users. Luckily, the nonce...

Challenge 6 (KYC) is not about signature malleability, which would consist in changing the signature without invalidating it. (Something is malleable if you can change its shape without breaking it.)...

Please consider the following code: ```python from typing import TypeVar, cast L1 = TypeVar('L1') L2 = TypeVar('L2') def f(lock1: L1, lock2: L2, x: list[L1], y: list[L2]) -> None: f(lock2, lock1,...

bug