This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Jakub Liška", | |
"label": "Software developer", | |
"picture": "https://avatars.githubusercontent.com/u/518855?v=4", | |
"summary": "I perceive life as form of art, trying to be passionate about all important aspects of it gives me joy. Now I like Rust and its ecosystem the most while working in areas like fintech, blockchains, decentralization, distributed data processing, etc.", | |
"website": "https://pragmaxim.com", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BETTER THAN LIFE Grant Naylor is a gestalt entity occupying two bodies, one of which lives in north London, the other in south London. The product of a horribly botched genetic-engineering experiment, which took place in Manchester in the late fifties, they try to eke out two existences with only one mind. They attended the same school and the same university, but, for tax reasons, have completely different wives. The first body is called Rob Grant, the second Doug Naylor. Among other things, they spent three years in the mid-eighties as head writers of Spitting Image; wrote Radio 4's award-winning series Son of Cliche, penned the lyrics to a number one single; and created and wrote Red Dwarf for BBC Television. They have made a living variously by being ice-cream salesmen, shoe-shop assistants and by attempting to sell dodgy life-assurance policies to close friends. They also spent almost two years on the night shift loading paper into computer printers at a mail-order factory in Ardwick. They can still tast |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Storage<'db> { | |
db: Arc<OptimisticTransactionDB<MultiThreaded>>, | |
families: Arc<Families<'db, EutxoFamilies<'db>>>, | |
} | |
impl<'db> Storage<'db> { | |
fn new( | |
db: Arc<OptimisticTransactionDB<MultiThreaded>>, | |
db_index_manager: &DbIndexManager, | |
) -> Self { |