Philippe Dumonet
Philippe Dumonet
Oh I see, yeah that'd be helpful. Not to mention `__codesize(MAIN) __codesize(CONSTRUCTOR) add` costs 9 gas and is 7-bytes vs if it was a single push instruction (3-bytes and 3...
I also frequently get the following error: ``` E5108: Error executing lua: ...site/pack/packer/start/LuaSnip/lua/luasnip/util/mark.lua:136: Invalid 'col': out of range stack traceback: [C]: in function 'nvim_buf_set_extmark' ...site/pack/packer/start/LuaSnip/lua/luasnip/util/mark.lua:136: in function 'set_opts' ...site/pack/packer/start/LuaSnip/lua/luasnip/util/mark.lua:181: in...
Hey, would love to keep providing info on the issue, any tips on easiest ways to disable all plugins besides commenting out everything in my packer config file?
Also not sure what's wrong with the diff ci check, showing error: > ` fatal: a branch named 'main' already exists`
I was benchmarking and trying to optimize address checksum computation for a project of mine. I was looking at a table of hex nibble to binary to ascii-binary table and...
> but unfortunately I don't think we can do much about it Why couldn't Yul be expanded/improved? If the goal of Yul is to be simple to compile then forcing...
> 😱 I’m allergic to the inconsistency. 😱 What inconsistency? Is this not done for the other libs, I can open larger PR to move it all. Although CI is...
@bd-rulch that makes sense, thanks! Any docs on this? The basic contexts `Editor`, `Workspace` make sense to me but I had trouble finding more information about `menu`, `vim_mode` & `VimControl`...
My current approach to formally verifying Huff code bases such as [METH](https://github.com/philogy/meth-weth) is by leveraging `hevm` to verify a spec written in Solidity: https://github.com/Philogy/meth-weth/blob/main/test/fv/METH.fv.sol As of this writing `hevm` is...
To construct a more efficient function dispatcher you want to directly convert a function selector into a jump destination while _avoiding_ having to do a lookup in some table. This...