Cryptocurrency
A cryptocurrency is a digital currency that only has value dependent on those who back it. For security, cryptocurrencies rely on blockchaining: a database organized in such a way that records are kept secure through peer-to-peer networks. Each record is kept within a block, and each block holds a timestamp and link to the block before it. The first cryptocurrency was Bitcoin, implemented in 2009 by Satoshi Nakamoto.
Here are 6,665 public repositories matching this topic...
-
Updated
Dec 20, 2019 - C#
Currently stratumserver has no unit tests. This will improve the quality and allow future commits to be TDD safe. All units will be tested to ensure the module as a unit itself is tested.
Right now the docs correspond to what's on master. We need docs for each daemon release so developers can see what's available in the version they are using.
https://github.com/jimporter/mike may be helpful.
After shutdown, lnd logs "Shutdown complete" without a trailing newline. Upon restart, the line continues:
2019-12-05 22:39:18.593 [INF] LTND: Shutdown complete2019-12-05 22:39:39.821 [INF] LTND: Version: 0.8.2-beta commit=v0.8.0-beta-386-gf3398c0c0ecc469c31e1f7e18e0fa2d63b5729ed, build=production, logging=default
-
Updated
Aug 20, 2020 - C++
The blockchain v2 reactor utilizes concurrency to saturate the bottleneck of writing blocks to disk. This concurrency is internal to the reactor where the reactor itself will launch and manage internal state machines running as go-routines. This configuration makes testing difficult as we don't know when messages processed by internal state machines will be processed and when we can assert that th
-
Updated
Jul 30, 2020 - Haskell
Describe your environment
- Operating system: Ubuntu
- Python Version: 3.8
- CCXT version: 1.28.49
- Freqtrade Version: 2020.4
Describe the enhancement
I would like to suggest a new filter tha
-
Updated
May 25, 2020
-
Updated
Jul 19, 2020 - TypeScript
-
Updated
Aug 19, 2020 - C++
-
Updated
Aug 19, 2020 - C#
-
Updated
Aug 14, 2020
-
Updated
Nov 5, 2019 - JavaScript
-
Updated
Aug 2, 2020
Create a bot that watches and archives specified public channels in Status and makes it searchable
User Story
To be able to see the history of the channels (anonymized though), we need a bot that will listen in to a set of public channels and writes their content in a DB. We also need a full-text search in the archive in the same bot.
Imagine http://offsite.chat/html, but on steroids.
-
Updated
Nov 4, 2019 - Go
-
Updated
Aug 19, 2020 - C++
-
Updated
Jul 20, 2020 - Python
-
Updated
Aug 19, 2020 - JavaScript
-
Updated
May 29, 2020
-
Updated
Feb 2, 2020 - JavaScript
-
Updated
Aug 5, 2020 - Python
-
Updated
Aug 12, 2020
-
Updated
Aug 8, 2020 - Python
-
Updated
Mar 17, 2020 - Go
-
Updated
Jul 19, 2020 - C++


Enable unused member function diagnostic by default.
Clang has a nice compiler diagnostic
-Wunused-member-functionwhich is good at catching accidentally dead/unreachable code.While dead/unreachable code is most often harmless from a security/robustness perspective there are instances where dead/unreachable code may be an indication of more serious issues. Enabling this diagnostic allows