hæx.com logo

Regarding AI safety

I think AI-technology should be open-sourced and shared.

The alternative seems to be human greed-related outcomes, which is something I think we should avoid as a species.

Relevant videos/podcasts from DOAC;  Steven Bartlett, Mo Gawdat, Mustafa Suleyman

 

 

Fix for Heap exhaustion while migrate mysql to postgres

Ran into multiple issues while migrating a mysql DB to postgres. Errors like

Heap exhausted during garbage collection: 352 bytes available, 416 requested.

I tried allocating more memory everywhere, but in in the end the prefetch rows finally worked for me

Example migrating mysql to postgres with prefetch:

pgloader --with "prefetch rows = 10000" mysql://user:password@127.0.0.1/dbname postgresql://user:password@127.0.0.1/dbname

Measuring decentralization of cryptocurrencies

The Edinburgh Decentralization Index (EDI) is an index developed by the University of Edinburgh to measure the level of decentralization of cryptocurrencies. A very interesting project I've been following for a while. Great to finally see some metrics in the dashboard.

More info about the index: https://www.bbcode.org/edinburgh-decentralization-index.php

Dashboard showing data: http://blockchainlab.inf.ed.ac.uk/edi-dashboard/

Docs and more info: https://blockchain-technology-lab.github.io/consensus-decentralization/metrics/

Github code: https://github.com/Blockchain-Technology-Lab/consensus-decentralization