See Also
ELI5: Blockchains explained in simple terms
A blockchain is a database formed by a sequence of entries called (you guessed it) blocks. Blockchains have a special characteristic by which any attempt to modify one of its entries would modify the entire chain. It is, therefore, an immutable data structure, which stores blocks in chronological order of insertion. This makes blockchain a […]
Who is Craig Wright?
As part of our Who’s Who section, today we take a look at Dr. Craig S. Wright (CSW), a controversial cryptocurrency personality who, for several years, claimed to be Satoshi Nakamoto. Craig Steven Wright was born in Australia in 1970 and holds a PhD in theology. He’s currently the CTO for nChain – the company […]
256 Bit Integer commented uint256.cpp from Bitcoin Core source code
If you’ve developed systems in C or C++ before then you’re probably familiar with the stdint.h (cstdint for C++) typedefs. Since there’a lot of variation between platforms, stdint.h standardizes integer type names in an intuitive way. A uint8_t is an 8-bit unsigned integer and a uint64_t is a 64 bit unsigned integer. What you won’t […]
shafs – SHA256 a filesystem and store it on SQLite. Find duplicate files, organize your data
shafs is a tool to help you SHA256 an entire filesystem, file by file, storing its hash and file size in a SQLite database. Dependencies shafs requires sqlite3 On Ubuntu do: Please check your distribution for the appropriate packages. Build Installation To install locally, uncomment last line in build.sh and re-run it or run : Manual Build […]