Louie Lu

Results 46 issues of Louie Lu

Maybe somehow we can generate bytecode, and run from bytecode? without `assemble_from_file`.

I think this can be a goal for this VM, to make it a Turing complete VM (programmign language / instruction set ?) Some reference: * https://en.wikipedia.org/wiki/%CE%9C-recursive_function * https://math.stackexchange.com/questions/112011/how-to-prove-a-programming-language-is-turing-complete

Current design about opcode implement hook is to hook the corresponding implement to each instruction in `env->insts`, which the insts is read from file. Should it be hook on an...

I'm trying to run `Runner.bench_func` inside a package like this: ``` └── format ├── benchmarks │   ├── bm_format.py │   ├── bm_fstring.py │   ├── bm_percentage.py │   └── __init__.py ├── __init__.py └──...

Maybe we can add metadata field in `iota.Transaction` Example of transaction metadata field name: ```python return { 'address': address, 'bundle_hash': bundle, 'trunk_transaction_hash': trunk, 'branch_transaction_hash': branch, 'legacy_tag': legacy_tag, 'value': value, 'current_index':...

enhancement

In my test, pypy3 will improve the hash function performance about 2x. The main problem is `pysha3` currently can't built on `pypy3`, but changing to use `pycryptodome` can support on...

enhancement

* [什麼是還原股價](https://www.cmoney.tw/notes/note-detail.aspx?nid=22337) Pending, not sure if this can be done or not.

enhancement

Can we support async for fetcher and realtime?

enhancement